在 Vortex86DX 上从头开始构建和编译 GCC 5.2.0 时出错

在 Vortex86DX 上从头开始构建和编译 GCC 5.2.0 时出错

为了使用gcc 3.2.3编译器升级 ​​VortexDX86 定制 Linux,我尝试构建 GCC 5.2.0 编译器以支持最新的 C++ 11 标准。

我已经从以下位置下载了它的源代码gcc.gnu.org并基于以下标准做了标准的linux包构建器这个 GNU 链接:

$ mkdir ../gcc-build
$ cd    ../gcc-build
$ ../gcc-5.2.0/configure --prefix=/usr --disable-multilib --with-system-zlib --enable-languages=c,c++

配置运行良好。我做的:

$ make

我收到以下错误:

    make[3]: Entering directory `/home/ftp/pub/gcc-5.2.0/host-i586-pc-linux-gnu/gcc'
g++ -c   -g -DIN_GCC    -fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wwrite-strings -Wcast-qual -Wno-format -Wmissing-format-attribute -Woverloaded-virtual -fno-common  -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../.././gcc -I../.././gcc/build -I../.././gcc/../include  -I../.././gcc/../libcpp/include  \
    -o build/genmddeps.o ../.././gcc/genmddeps.c
cc1plus: warning: -Wmissing-format-attribute ignored without -Wformat
In file included from ../../gcc/genmddeps.c:19:
../../gcc/system.h:201:19: string: No such file or directory
../../gcc/system.h:218:22: algorithm: No such file or directory
../../gcc/system.h:219:20: cstring: No such file or directory
../../gcc/system.h:220:20: utility: No such file or directory
../../gcc/system.h:249:19: cstdlib: No such file or directory
make[3]: *** [build/genmddeps.o] Error 1
make[3]: Leaving directory `/home/ftp/pub/gcc-5.2.0/host-i586-pc-linux-gnu/gcc'
make[2]: *** [all-stage1-gcc] Error 2
make[2]: Leaving directory `/home/ftp/pub/gcc-5.2.0'
make[1]: *** [stage1-bubble] Error 2
make[1]: Leaving directory `/home/ftp/pub/gcc-5.2.0'
make: *** [all] Error 2

之后make程序中止。我已经安装了所有依赖项(、、、、、、tcl和),但我不知道缺少什么。expectdejagnuperlm4gmpmpfrmpc

如前所述,原始 Vortex linuxgcc 3.2.3已经安装了编译器版本。

我需要解决这个问题,但我不知道从哪里开始。它似乎与自己的图书馆混淆了gcc......

感谢帮助解决这个问题。

相关内容