我正在尝试在我的笔记本电脑上安装玉米片,我在笔记本电脑上安装了 Ubuntu 11.04。
代码是 C 语言的,所以要构建它,我假设我需要交叉编译器。这就是我的问题所在。我用这个命令下载了 MIPS 交叉编译器的源代码
wget http://mll.csie.ntu.edu.tw/course/os_f08/assignment/mips-decstation.linux-xgcc.gz
我用
tar zxvf mips-decstation.linux-xgcc.gz
这是可以的,但是当我尝试使用 make 构建玉米片的源代码时,我得到了这个错误-
/usr/include/gnu/stubs.h:7:27: fatal error: gnu/stubs-32.h: No such file or directory compilation terminated. make: *** [bitmap.o] Error 1
我试图遵循在这里给出的指示 -http://mll.csie.ntu.edu.tw/course/os_f08/217.htm和一切工作正常,除了当我尝试使用 make。