brew link openssl --force ができなくて phpenv & php-build で PHP がビルドできない
問題
phpenv install
でビルドが OpenSSL が無いエラーでこける
Mac OS X El CapitanにNginx + phpenv + php-build + php-fpmの環境を構築する手順
と同様の状況。
brew で OpenSSL はインストール済みだけど OSX のものを使うようになっていて、OSX (El Capitan) の OpenSSL には ヘッダファイルがない
参考: Mac OS X El CapitanからOpenSSLのヘッダファイルが消えた話
brew で入れた OpenSSL を使うようにしたく、
brew link openssl --force
と実行したが下記のメッセージが出力される
$ brew link openssl --force
Warning: Refusing to link: openssl
Linking keg-only openssl means you may end up linking against the insecure,
deprecated system OpenSSL while using the headers from Homebrew's openssl.
Instead, pass the full include/library paths to your compiler e.g.:
-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib
brew で openssl をリンクできなくしたようで、コンパイラにパスを渡してねって言ってる
(Homebrew/brew link: don't link openssl. #597)
なんか .NET Core の話してる…なんとなく察した
解決
参考: Mac OS X El Capitan上でphp-buildするメモ
PHP_BUILD_CONFIGURE_OPTS="--with-openssl=$(brew --prefix openssl) --with-libxml-dir=$(brew --prefix libxml2)"
と、環境変数を渡すことでビルドできた
$ phpenv install 7.0.2
[Info]: Loaded extension plugin
[Info]: Loaded apc Plugin.
[Info]: Loaded composer Plugin.
[Info]: Loaded github Plugin.
[Info]: Loaded uprofiler Plugin.
[Info]: Loaded xdebug Plugin.
[Info]: Loaded xhprof Plugin.
[Info]: php.ini-production gets used as php.ini
[Info]: Building 7.0.2 into /Users/chatii/.phpenv/versions/7.0.2
[Skipping]: Already downloaded and extracted https://secure.php.net/distributions/php-7.0.2.tar.bz2
[Preparing]: /var/tmp/php-build/source/7.0.2
[Compiling]: /var/tmp/php-build/source/7.0.2
[xdebug]: Installing version 2.4.0
[xdebug]: Compiling xdebug in /var/tmp/php-build/source/xdebug-2.4.0
[xdebug]: Installing xdebug configuration in /Users/chatii/.phpenv/versions/7.0.2/etc/conf.d/xdebug.ini
[xdebug]: Cleaning up.
[Info]: Enabling Opcache...
[Info]: Done
[Info]: The Log File is not empty, but the Build did not fail. Maybe just warnings got logged. You can review the log in /tmp/php-build.7.0.2.20160804145836.log
[Success]: Built 7.0.2 successfully.
めでたしめでたし
Author And Source
この問題について(brew link openssl --force ができなくて phpenv & php-build で PHP がビルドできない), 我々は、より多くの情報をここで見つけました https://qiita.com/chatii0079/items/b30cf35c4ec9bdf8dd70著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .