###環境
####ハード
MacBook Air (13-inch, Early 2015)
####OS
OS X El Capitan 10.11.6(15G1004)
####CPU
2.2 GHz Intel Core i7
###前提・実現したいこと
anyenvを使用して導入したphpenvでPHPのインストールしたいと考えています。
が、「BUILD ERROR」と表示されてしまい、インストールできません。
情報を探しましたが有効な解決方法を見つけられず、現在も解決できていません。
このエラーを無くし、PHPのインストールを成功させたいです。
###anyenv導入のために実行したコマンド
bash
1$ brew install re2c # re2cをインストール 2==> Auto-updated Homebrew! 3Updated 1 tap (homebrew/core). 4==> Updated Formulae 5afl-fuzz cppcheck gauge jbake pdf2htmlex poppler 6armor diff-pdf imagemagick ✔ khal pdftoedn yank 7==> Deleted Formulae 8automoc4 cuty_capt frescobaldi rcssserver sqliteman valkyrie 9 10==> Downloading https://homebrew.bintray.com/bottles/re2c-0.15.3.el_capitan.bottle.tar.gz 11######################################################################## 100.0% 12==> Pouring re2c-0.15.3.el_capitan.bottle.tar.gz 13???? /usr/local/Cellar/re2c/0.15.3: 5 files, 397.3K
bash
1$ brew install bison # bisonをインストール 2==> Downloading https://homebrew.bintray.com/bottles/bison-3.0.4.el_capitan.bottle.tar.gz 3######################################################################## 100.0% 4==> Pouring bison-3.0.4.el_capitan.bottle.tar.gz 5==> Caveats 6This formula is keg-only, which means it was not symlinked into /usr/local. 7 8Some formulae require a newer version of bison. 9 10Generally there are no consequences of this for you. If you build your 11own software and it requires this formula, you'll need to add to your 12build variables: 13 14 LDFLAGS: -L/usr/local/opt/bison/lib 15 16==> Summary 17???? /usr/local/Cellar/bison/3.0.4: 51 files, 2.1M
bash
1$ git clone https://github.com/riywo/anyenv ~/.anyenv # anyenvをインストール 2Cloning into '/Users/sounisi5011/.anyenv'... 3remote: Counting objects: 250, done. 4remote: Total 250 (delta 0), reused 0 (delta 0), pack-reused 250 5Receiving objects: 100% (250/250), 38.92 KiB | 49.00 KiB/s, done. 6Resolving deltas: 100% (96/96), done.
bash
1$ exec bash -l # bashを再起動
bash
1$ mkdir -p $(anyenv root)/plugins # anyenvのプラグイン用ディレクトリを作成
bash
1$ git clone https://github.com/znz/anyenv-update.git $(anyenv root)/plugins/anyenv-update # anyenv-updateを導入 2Cloning into '/Users/sounisi5011/.anyenv/plugins/anyenv-update'... 3remote: Counting objects: 65, done. 4remote: Total 65 (delta 0), reused 0 (delta 0), pack-reused 65 5Unpacking objects: 100% (65/65), done.
bash
1$ git clone https://github.com/znz/anyenv-git.git $(anyenv root)/plugins/anyenv-git # anyenv-gitを導入 2Cloning into '/Users/sounisi5011/.anyenv/plugins/anyenv-git'... 3remote: Counting objects: 40, done. 4Unpacking objects: 100% (40/40), done. 5remote: Total 40 (delta 0), reused 0 (delta 0), pack-reused 40
bash
1$ git clone git://github.com/aereal/anyenv-exec.git $(anyenv root)/plugins/anyenv-exec # anyenv-execを導入 2Cloning into '/Users/sounisi5011/.anyenv/plugins/anyenv-exec'... 3remote: Counting objects: 10, done. 4remote: Total 10 (delta 0), reused 0 (delta 0), pack-reused 10 5Receiving objects: 100% (10/10), done.
bash
1$ anyenv install phpenv # anyenvでphpenvをインストール 2/var/folders/gp/1q851dbd1mz6rh98z7p2_4p40000gn/T/phpenv.20161011225405.894 ~ 3Cloning https://github.com/madumlao/phpenv.git... 4Cloning into 'phpenv'... 5remote: Counting objects: 1116, done. 6remote: Total 1116 (delta 0), reused 0 (delta 0), pack-reused 1116 7Receiving objects: 100% (1116/1116), 213.27 KiB | 53.00 KiB/s, done. 8Resolving deltas: 100% (692/692), done. 9~ 10~/.anyenv/envs/phpenv/plugins ~ 11Cloning https://github.com/php-build/php-build.git... 12Cloning into 'php-build'... 13remote: Counting objects: 4569, done. 14remote: Compressing objects: 100% (3/3), done. 15remote: Total 4569 (delta 4), reused 3 (delta 3), pack-reused 4563 16Receiving objects: 100% (4569/4569), 666.12 KiB | 83.00 KiB/s, done. 17Resolving deltas: 100% (2797/2797), done. 18~ 19~/.anyenv/envs/phpenv/plugins ~ 20Cloning https://github.com/ngyuki/phpenv-composer... 21Cloning into 'phpenv-composer'... 22remote: Counting objects: 60, done. 23remote: Total 60 (delta 0), reused 0 (delta 0), pack-reused 60 24Unpacking objects: 100% (60/60), done. 25~ 26 27Install phpenv succeeded! 28Please reload your profile (exec $SHELL -l) or open a new session.
bash
1$ exec bash -l # bashを再起動
bash
1$ cat ~/.anyenv/envs/phpenv/plugins/php-build/share/php-build/default_configure_options # default_configure_optionsの内容を表示 2--without-pear 3--with-gd 4--enable-sockets 5--with-jpeg-dir=/usr 6--with-png-dir=/usr 7--enable-exif 8--enable-zip 9--with-zlib 10--with-zlib-dir=/usr 11--with-kerberos 12--with-openssl 13--with-mcrypt=/usr 14--enable-soap 15--enable-xmlreader 16--with-xsl 17--enable-ftp 18--enable-cgi 19--with-curl=/usr 20--with-tidy 21--with-xmlrpc 22--enable-sysvsem 23--enable-sysvshm 24--enable-shmop 25--with-mysql=mysqlnd 26--with-mysqli=mysqlnd 27--with-pdo-mysql=mysqlnd 28--with-pdo-sqlite 29--enable-pcntl 30--with-readline 31--enable-mbstring 32--disable-debug 33--enable-fpm 34--enable-bcmath
bash
1$ sed -i '' '/^--with-mysql=/d' ~/.anyenv/envs/phpenv/plugins/php-build/share/php-build/default_configure_options # default_configure_optionsから`--with-mysql`の行を削除する
bash
1$ echo 'YACC=/usr/local/opt/bison/bin/bison' >> ~/.anyenv/envs/phpenv/plugins/php-build/share/php-build/default_configure_options # default_configure_optionsにbisonのパスを追加
bash
1$ cat ~/.anyenv/envs/phpenv/plugins/php-build/share/php-build/default_configure_options # default_configure_optionsの内容を表示 2--without-pear 3--with-gd 4--enable-sockets 5--with-jpeg-dir=/usr 6--with-png-dir=/usr 7--enable-exif 8--enable-zip 9--with-zlib 10--with-zlib-dir=/usr 11--with-kerberos 12--with-openssl 13--with-mcrypt=/usr 14--enable-soap 15--enable-xmlreader 16--with-xsl 17--enable-ftp 18--enable-cgi 19--with-curl=/usr 20--with-tidy 21--with-xmlrpc 22--enable-sysvsem 23--enable-sysvshm 24--enable-shmop 25--with-mysqli=mysqlnd 26--with-pdo-mysql=mysqlnd 27--with-pdo-sqlite 28--enable-pcntl 29--with-readline 30--enable-mbstring 31--disable-debug 32--enable-fpm 33--enable-bcmath 34YACC=/usr/local/opt/bison/bin/bison
###発生している問題・エラーメッセージ
bash
1$ phpenv install 7.0.7 2[Info]: Loaded extension plugin 3[Info]: Loaded apc Plugin. 4[Info]: Loaded composer Plugin. 5[Info]: Loaded github Plugin. 6[Info]: Loaded uprofiler Plugin. 7[Info]: Loaded xdebug Plugin. 8[Info]: Loaded xhprof Plugin. 9[Info]: php.ini-production gets used as php.ini 10[Info]: Building 7.0.7 into /Users/sounisi5011/.anyenv/envs/phpenv/versions/7.0.7 11[Skipping]: Already downloaded and extracted https://secure.php.net/distributions/php-7.0.7.tar.bz2 12[Preparing]: /var/tmp/php-build/source/7.0.7 13 14----------------- 15| BUILD ERROR | 16----------------- 17 18Here are the last 10 lines from the log: 19 20----------------------------------------- 21configure: error: build test failed. Please check the config.log for details. 22----------------------------------------- 23 24The full Log is available at '/tmp/php-build.7.0.7.20161011231143.log'. 25[Warn]: Aborting build.
php-build.7.0.7.20161011231143.log
の内容:
configure: error: build test failed. Please check the config.log for details.
config.log
の内容:
※10461行のテキストデータです。重いページなので、開く前に十分注意してください。

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。