美文网首页
"make: *** No targets specified

"make: *** No targets specified

作者: 一位先生_ | 来源:发表于2020-03-03 14:43 被阅读0次

无论你是在安装redis扩展还是在安装swoole 甚至是其它扩展
make 或者make install的时候 出现这个报错
错误不在make,在于上一步./configure --with-php-config=/usr/local/php/bin/php-config 并未完全配置好对应的make所需要的文件,使用find / -name php-config 查找到php-config的路径位置,我的服务器上是在/usr/local/php/bin/php-config 。
1,第一步
先找到configure在哪里 然后

#./configure --with-php-config=/usr/local/php/bin/php-config

或者你缺少一些依赖
可以执行安装这些:

yum -y install gcc gcc-c++ autoconf automake

yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel

2,问题解决,接着可以继续执行make 和 make install命令了。

相关文章

网友评论

      本文标题:"make: *** No targets specified

      本文链接:https://www.haomeiwen.com/subject/bcthlhtx.html