您的位置:首页 > 运维架构 > Linux

linux64位编译php遇到configure: error: GD build test failed. Please check the config.log for details

2014-03-30 10:34 946 查看
This error occures becuase the linker (ld) cannot find the jpeg library. You can fix this problem by editing the config.nice file inside the php directory and adding
LDFLAGS='-L/path/to/lib' \   (注释:linux64位机器 此处应写为LDFLAGS='-L/usr/lib64' \)
above the ./configure \

For example is your libjpeg.so resides inside /usr/local/lib, you'd add -L/usr/local/lib.

Once you've edited the file, remove config.cache and run ./config.nice, after that make; make install; should work.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  linux 64位 php
相关文章推荐