天天看点

make: *** [ext/mysqli/mysqli.lo] Error 1

编译安装php 的时候, 执行make报错误

错误:make: *** [ext/mysqli/mysqli.lo] error 1

[root@localhost php-5.4.9]# mkdir /usr/local/webserver/mysql/include/mysql

 [root@localhost php-5.4.9]# ln -s /usr/local/webserver/mysql/include/* /usr/local/webserver/mysql/include/mysql

 [root@localhost php-5.4.9]# make zend_extra_libs='-liconv'

抛错:

generating phar.phar

/usr/local/src/php-5.4.9/sapi/cli/php: error while loading shared libraries: libiconv.so.2: cannot open shared object file: no such file or directory

make: *** [ext/phar/phar.php] error 127

解决的方法如下:

#vi /etc/ld.so.conf

在里面加上一行

/usr/local/lib

2.然后运行/sbin/ldconfig

#/sbin/ldconfig

编译make

#make zend_extra_libs='-liconv'

chmod: cannot access `ext/phar/phar.phar': no such file or directory

make: [ext/phar/phar.phar] error 1 (ignored)

build complete.

don't forget to run 'make test'.

此处可以忽略 不过解决办法如下

#cd  ext/phar/

#cp ./phar.php  ./phar.phar

然后到php5.4文件夹

#make test

#make install