コンパイラを使用してVortexDX86カスタムLinuxをアップグレードするために、gcc 3.2.3
最新のC ++ 11標準をサポートするGCC 5.2.0コンパイラを構築しようとしました。
私はソースコードを次からダウンロードしました。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
何が欠けているのかわかりません。expect
dejagnu
perl
m4
gmp
mpfr
mpc
前述のように、元のVortex Linuxにはgcc 3.2.3
すでにコンパイラバージョンがインストールされています。
この問題を解決する必要がありますが、どこから始めるべきかわかりません。独自のライブラリと混同しているようですgcc
...
この問題の解決にご協力いただきありがとうございます。