无论你是在安装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命令了。
网友评论