2

有人可以建议我在 CentOS 6 上尝试的 g++ 4.8.1 安装有什么问题吗?

安装的编译器是 g++ 4.4.7。

make 步骤在此之后不久结束:

checking for suffix of object files... configure: error: in `/mxhome/charrison/gcc-4.8.1/gcc-4.8.1/build-gcc/x86_64-unknown-linux-gnu/libgcc':
configure: error: cannot compute suffix of object files: cannot compile
See `config.log' for more details.

config.log 包含这个关于目标文件后缀的看似无害的评论:

configure:4390: checking for suffix of object files
configure:4412: gcc -c   conftest.c >&5
configure:4416: $? = 0
configure:4437: result: o

“错误”一词出现在此处的 config.log 文件中(我的 g++4.4 肯定会通过测试):

configure:4936: checking whether g++ accepts -static-libstdc++ -static-libgcc
configure:4953: g++ -o conftest -g -O2   -static-libstdc++ -static-libgcc conftest.cpp  >&5
g++: unrecognized option '-static-libstdc++'
conftest.cpp:11:2: error: #error -static-libstdc++ not implemented
configure:4953: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| 
| #if (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)
| #error -static-libstdc++ not implemented
| #endif

但我不知道这是否致命。

建议?

4

1 回答 1

0

这可能已经过时了,但我遇到了同样的问题,可以通过安装libstdc.

于 2017-02-03T17:25:07.203 回答