make 명령에서 GCC 4.7.0 설치가 실패함

make 명령에서 GCC 4.7.0 설치가 실패함

Linux Mint(Ubuntu 18.04 기반)에 GCC 4.7.0을 설치하려고 합니다. 구성의 첫 번째 단계를 통과했습니다. 그러나 실행하면 make -j5다음과 같은 오류가 발생합니다.

make[2]: Leaving directory '/home/james/src/build-gcc'
Makefile:26035: recipe for target 'stage1-bubble' failed
make[1]: *** [stage1-bubble] Error 2
make[1]: Leaving directory '/home/james/src/build-gcc'
Makefile:941: recipe for target 'all' failed
make: *** [all] Error 2
make[1]: Entering directory '/home/james/src/build-gcc'
/bin/bash ../gcc-7.4.0/mkinstalldirs /home/james/opt/gcc-7.4.0 
/home/james/opt/gcc-7.4.0
make[2]: Entering directory '/home/james/src/build-gcc/fixincludes'
make[2]: *** No rule to make target 'install'.  Stop.
make[2]: Leaving directory '/home/james/src/build-gcc/fixincludes'
Makefile:3736: recipe for target 'install-fixincludes' failed
make[1]: *** [install-fixincludes] Error 2
make[1]: Leaving directory '/home/james/src/build-gcc'
Makefile:2337: recipe for target 'install' failed
make: *** [install] Error 2

여기 OSDev Wiki에서 제공하는 단계를 따르고 있습니다.https://wiki.osdev.org/Building_GCC. 크로스 컴파일러를 만들 수 있도록 작동하려면 이 컴파일러가 필요합니다. 왜 이런 일이 발생하며 어떻게 해결합니까?

편집: 전체 config.log 파일은 다음과 같습니다.http://www.mediafire.com/file/oco5szzfrr7hpmq/config.log/file

관련 정보