小弟的开发板是CDK,有安装交叉编译工具arm-linux-gcc
在配置完要重新编译时
#make uImage
出现以下错误
make: arm-none-linux-gnueabi-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
CC lernel/bounds.s
/bin/sh: arm-none-linux-gnueabi-gcc: not found
make[1]: *** [kernel/bounds.s] Error 127
make: *** [prepare0] Error 2
网络上找到的解决方法连结arm-none-linux-gnueabi-gcc与arm-linux-gcc
#ln -s arm-linux-gcc arm-none-linux-gnueabi-gcc
#arm-none-linux-gnueabi-gcc
结果是no input files,表示有连结成功
但我编译结果还是一样找不到
想请问有什么方法可解决吗?
感谢