標籤:php 編譯報錯
編譯安裝php 的時候, 執行make報錯誤
make: *** [ext/phar/phar.php] 錯誤 127
[[email protected] php-5.4.9]# mkdir /usr/local/webserver/mysql/include/mysql
[[email protected] php-5.4.9]# ln -s /usr/local/webserver/mysql/include/* /usr/local/webserver/mysql/include/mysql
[[email protected] 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‘
拋錯:
Generating phar.phar
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 ZEND_EXTRA_LIBS=‘-liconv‘
#make test
#make install
本文出自 “辛舒展” 部落格,請務必保留此出處http://xinsz08.blog.51cto.com/10565212/1795767
PHP編譯,執行make報錯