我在系统上安装了两个版本的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
中。
我做错了什么?
将--with-php-config=/opt/php54/bin/php-config
添加到配置字符串中。