红联Linux门户
Linux帮助

为什么内核编译老出错呢?

发布时间:2010-11-04 11:08:08来源:红联作者:happyccy
先说明一下,我是Linux菜鸟一个,现在由于工作需要自学Linux。我在网上下载了一个内核(Linux-2.6.36),原版编译通过!然后按照书本所述,修改了一行代码,原为ARCH ?=$(SUBARCH) 改为ARCH :=arm 。再编译的时候就出现了错误!现将代码列出来,请高手指点迷津......
[root@localhost ~]# cd /usr/src/kernels/linux-2.6.36.tar.bz2_FILES/linux-2.6.36
[root@localhost linux-2.6.36]# menuconfig
bash: menuconfig: command not found
[root@localhost linux-2.6.36]# make menuconfig
scripts/kconfig/mconf arch/arm/Kconfig
#
# configuration written to .config
#


*** End of Linux kernel configuration.
*** Execute 'make' to build the kernel or try 'make help'.

[root@localhost linux-2.6.36]# make zImage
scripts/kconfig/conf --silentoldconfig arch/arm/Kconfig
CHK include/linux/version.h
CHK include/generated/utsrelease.h
make[1]: “include/generated/mach-types.h”是最新的。
CC kernel/bounds.s
cc1: 错误:无效选项 ‘little-endian’
cc1: 错误:无效选项 ‘apcs’
cc1: 错误:无效选项 ‘no-sched-prolog’
cc1: 错误:无效选项 ‘abi=apcs-gnu’
kernel/bounds.c:1: 错误:-march= 所带参数(armv4t)不正确
kernel/bounds.c:1: 错误:-mtune= 所带参数(arm9tdmi)不正确
make[1]: *** [kernel/bounds.s] 错误 1
make: *** [prepare0] 错误 2
[root@localhost linux-2.6.36]#
文章评论

共有 3 条评论

  1. happyccy 于 2010-11-05 10:57:54发表:

    不知道要改成什么才正确呢?

  2. 2400小兵 于 2010-11-04 15:05:52发表:

    修改ARCH为
    ARCH := arm
    后修改下一行
    CROSS_COMPILE :=
    了吗?
    这个是配置编译器的.

  3. shenhao0129 于 2010-11-04 13:37:53发表:

    编译器设置不正确