制作zImage时出错

时间:2013-01-10 04:22:00

标签: c linux linux-kernel

以下是我在制作zImage时遇到的错误.. 任何人都可以帮助我吗?感谢

make: arm-linux-gcc: Command not found
  CHK     include/linux/version.h
make[1]: `include/asm-arm/mach-types.h' is up to date.
  CHK     include/linux/utsrelease.h
  SYMLINK include/asm -> include/asm-arm
  CC      kernel/bounds.s
/bin/sh: arm-linux-gcc: not found
make[1]: *** [kernel/bounds.s] Error 127
make: *** [prepare0] Error 2

1 个答案:

答案 0 :(得分:3)

看起来你没有GNU arm工具链,即arm-linux-gcc

如果您没有安装它,请安装Sourcery Codebench Lite。如果您有二进制文件,请在PATH变量中设置bin目录路径。您可以通过export PATH=$PATH:/path/to/arm/binaries/

进行操作