在 Raspberry Pi(Raspbian)上编译 gcc 时出错:make:*** [bootstrap] 错误

在 Raspberry Pi(Raspbian)上编译 gcc 时出错:make:*** [bootstrap] 错误

我正在尝试在 raspbian 上编译 gcc 版本 2.95.3,我需要它来编译 2.6 内核。

我正在跟进本教程,但是当我进入引导步骤时,我得到了

make[1]: Entering directory '/home/pi/Desktop/gcc2/gcc-2-build/gcc'
cd ../../gcc-2.95.3/gcc; autoconf
/bin/sh: autoconf: not found
make[1]: *** [../../gcc-2.95.3/gcc/configure]
make[1]: Leaving directory '/home/pi/Desktop/gcc2/gcc-2-build/gcc'
make: *** [bootstrap] Error 2

我能做些什么?

答案1

/bin/sh: autoconf: not found

您缺少autoconf编译 GCC 所需的 。要继续,请尝试使用包管理器安装它:

# apt-get install autoconf

相关内容