安装php支持zlib时报错

 安装php支持zlib时报错

  最近在安装pnp软件,安装过程中出了一点小问题,最后大费周折终于在网友的帮助下找到了解决方法,网友真给力啊

安装pnp软件需要php支持zlib

php安装

tar -zcvf php-5.3.8.tar.gz

cd php-5.3.8

./configure --prefix=/usr/local/php

--with-aprs2=/usr/local/apache2/bin/apxs

--with-zlib-dir=/usr/local/zlib

然后make进行编译,到最后报错了:

/usr/bin/ld: /usr/local/zlib//lib/libz.a(compress.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with –fPIC

/usr/local/zlib//lib/libz.a: could not read symbols: Bad value

 

解决方法:

cd zlib-1.2.3 //进入zlib目录

CFLAGS="-O3 -fPIC" ./configure --prefix=/usr/local/zlib //使用64位元的方法

问题解决!

你可能感兴趣的:(安装php支持zlib)