我在系统上安装了两个版本的PHP,一个在/opt/local
(API = 20090626),另一个在/opt/php54
(API = 20100525)。我正在尝试编译/opt/php54
版本的扩展,因此我在扩展目录中运行/opt/php54/bin/phpize
,然后./configure --enable-<ext> && make && sudo make install
。但问题是编译的扩展名不是API = 20100525,而是API = 20090626(/opt/local
中的那个)。即使在运行make install
时,它也会尝试将其安装在/opt/local
而不是/opt/php54
。
我做错了什么?
答案 0 :(得分:2)
将--with-php-config=/opt/php54/bin/php-config
添加到配置字符串。