2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

いつの間にかbison3でPHPをビルドできるようになっていました

Last updated at Posted at 2015-05-30

「PHPをビルドするにはbison 2.4〜2.7でないといけない」という超不便な縛りがあったのですが、最近のPHP(おそらくPHP5.6あたりから?) ではこれが解決されたようです。

これで、OSXでもらくにPHPをビルドできるようになりましたね!

OSXでbison3をインストールしてそれでPHPをビルドする方法

brew install bison

これでbison3がインストールされます。
このとき、bison3は自動でパスが通らないようになっています。

なのでPHPをconfigureするときに、YACC変数にbisonバイナリの場所を指定してあげるとよいでしょう。

YACC=/usr/local/Cellar/bison/3.0.4/bin/bison

参考

hnwさんの記事がとても参考になりました。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?