标签:
1、环境:CentOS6.5 编译安装MySQL5.0
2、在配置时,出现错误:检查合理性,C++ 预处理程序,/lib/cpp 未通过
checking how to run the C++ preprocessor... /lib/cpp configure: error: C++ preprocessor "/lib/cpp" fails sanity check See `config.log‘ for more details.
3、解决办法:
# yum install glibc-headers
# yum install gcc-c++
然后./configure。
注意:若为Ubuntu环境,可以试试:
#sudo apt-get install build-essential
因为build-essential包含许多基本库(尚未测试)
4、参考网址:
http://www.cnblogs.com/niocai/archive/2011/11/04/2236458.html
标签:
原文地址:http://www.cnblogs.com/chinas/p/4418547.html