编译 GCC 7:错误:C++ 预处理器“/lib/cpp”未通过健全性检查

Joh*_*don 6 windows gcc mingw-w64

尝试从源代码构建 GCC 7.1.0。这不是我第一次使用,它曾经在过去的 GCC 版本中工作过。

../configure --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 \
 --prefix=/c/mingw64 --with-sysroot=/c/mingw64 \
 --with-gmp=/c/mingw64/gmp --with-mpfr=/c/mingw64/mpfr --with-mpc=/c/mingw64/mpc \
 --with-isl=/c/mingw64/isl \
 --disable-nls --disable-multilib --disable-libstdcxx-pch --disable-shared \
 --disable-win32-registry --disable-libstdcxx-debug --disable-libstdcxx-verbose \
 --with-tune=haswell --enable-lto --enable-checking=release --enable-languages=c,c++ \
 --enable-libstdcxx-time --enable-threads=win32 --enable-libatomic --enable-fully-dynamic-string
Run Code Online (Sandbox Code Playgroud)

错误

checking how to run the C++ preprocessor... /lib/cpp
configure: error: in `/c/mingw64/src/build/gcc':
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.
make[2]: *** [Makefile:4309: configure-stage2-gcc] Error 1
make[2]: Leaving directory '/c/mingw64/src/build'
make[1]: *** [Makefile:20550: stage2-bubble] Error 2
make[1]: Leaving directory '/c/mingw64/src/build'
make: *** [Makefile:936: all] Error 2
Run Code Online (Sandbox Code Playgroud)

完整的config.log: https: //pastebin.com/raw/mEeJHCuK

请注意,我/lib/cpp从未存在过。

我做了一些谷歌搜索并尝试了所有建议,包括:

  • CXX=/c/mingw/bin/g++(同样适用于CCCPP
  • 将所有出现的/lib/cppin替换gcc-7.1.0/gcc/configure/c/mingw/bin/g++。这给了我:
    conftest.c:14:8:错误:“语法”未命名类型
            语法错误
            ^

(^ 类似于在 Mac 上编译:如果我的编译器未通过健全性检查,这意味着什么?

有一个旧的(严重的)错误似乎与https://gcc.gnu.org/ml/gcc-bugs/2015-10/msg00604.html相关,但没有更新。

Lig*_*ica 3

CPP不应该指向g++CPP是C预处理器,所以让它指向C预处理器:

CPP=/c/mingw/bin/cpp
Run Code Online (Sandbox Code Playgroud)

您链接到的问题提到了这一点。