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


0

我正在尝试使用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

我能做什么?


你为什么使用GCC 2.95.3?这是一个非常旧版本的编译器,不再受支持。是否有一些技术原因GCC 4.x不起作用?
bwDraco

@DragonLord是的。当我尝试使用gcc 4编译内核2.6时,我遇到了很多错误,SO上的很多帖子都说你需要gcc 2.95.3才能编译它。我会尽快给你答案
Harlandraka

Answers:


1
/bin/sh: autoconf: not found

你错过了 autoconf,这是编译GCC所必需的。要继续,请尝试使用包管理器进行安装:

# apt-get install autoconf
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.