您的位置:首页 > 编程语言 > PHP开发

PHP编译报错​Sorry, I cannot run apxs. Possible reasons follow

2017-02-27 16:03 507 查看
在编译PHP时候,用到--with-apxs2参数,但是遇到如下报错:

Sorry, I cannot run apxs. Possible reasons follow:
1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)


解决方法:
# yum install -y httpd-devel
在将编译参数--with-apxs2的路径改成--with-apxs2=/usr/bin/apxs
注意,这里的--with-apxs2是指apxs程序所在的路径,并不是生成*.so文件的存放路径。有的文章使用这个路径--with-apxs2=/usr/local/apache2/bin/apxs ,代表apache在编译时就让apache自带apxs程序。
# ./configure  --with-apxs2=/usr/bin/apxs


我在这里被绕了一大圈。

参考文章:
https://zhidao.baidu.com/question/332795586.html (感谢me_8的最佳答案)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  php 参数 apxs