From 包子s Blog
The error message is /usr/bin/ld: skipping incompatible /usr/lib/mysql/libmysqlclient.so when searching for -lmysqlclient
Reason
The 32-bit library /usr/lib/mysql used for PHP compilation is not compatible
Solution
mv /usr/lib/mysql /usr/lib/mysql.org
ln -s /usr/lib64/mysql /usr/lib/mysql
http://www.bkjia.com/PHPjc/508452.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/508452.htmlTechArticleFrom Baozis Blog The error message is /usr/bin/ld: skipping incompatible /usr/lib/mysql/libmysqlclient .so when searching for -lmysqlclient The reason is that the 32-bit /usr/lib/mysql used for PHP compilation...
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn