configure: error: C++ preprocessor "/lib/cpp" fails sanity check

来源:互联网 发布:洗浴软件多少钱 编辑:程序博客网 时间:2024/04/28 13:22

我用的是RHEL5.0,所以,安装以下两个包就行:

[root@localhost Server]# rpm -ivh libstdc++-devel-4.1.1-52.el5.i386.rpm
warning: libstdc++-devel-4.1.1-52.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
   1:libstdc++-devel        ########################################### [100%]
[root@localhost Server]# rpm -ivh gcc-c++-4.1.1-52.el5.i386.rpm
warning: gcc-c++-4.1.1-52.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
   1:gcc-c++                ########################################### [100%]
[root@localhost Server]#


下面是百度搜到文章:
configure: error: C++ preprocessor "/lib/cpp" fails sanity check

configure: error: C++ preprocessor "/lib/cpp" fails sanity check

according to some articles on web:

1.http://forum.ubuntu.org.cn/viewtopic.php?f=85&t=102970

出现该情况是由于c++编译器的相关package没有安装,以超级用户登陆,在终端上执行:

#yum install glibc-headers

#yum install gcc-c++

2.http://wiki.ubuntu.org.cn/index.php?title=EclipseSubversion&variant=zh-cn

To solve the errorde>C++ preprocessor "/lib/cpp" fails sanity checkde> while compiling Subversion, you need to download GCC, CPP and G++ by installing the following packages

gcc cpp g++

but that is for other Linux distribution system, my isUbuntu, so we should install the needed libs

sudo aptitude install build-essential

this will download and install the essential lib that is build related, such as gcc g++ ....

参考文章:http://www.cnblogs.com/jjyoung/archive/2011/05/19/2050619.html

0 0
原创粉丝点击