make: ygcc:命令未找到
我这里没这个错误。不过搜索了下,有些兄台有这个错误:
http://stackoverflow.com/questions/6517318/ygcc-command-not-found
Double check that you made sure to make menuconfig (or xconfig) it
seems that some variables aren't set correctly.
If you do make menuconfig and then just go and hit save .config file
then it should generate the default kernel compilation file with the
correct variables. – Jesus Ramos Jun 29 '11 at 7:54
========================================
这句有点意思:跨平台编译器变量设置错误:
Open the .config file to see if the CONFIG_CROSS_COMPILE variable is
set properly. From the error message, the most probable setting is
CONFIG_CROSS_COMPILE="y"
meaning that "y" is the prefix of your cross compiler. Thus, the build
system would use ygcc instead of gcc. Also, it will try to find
yobjdump instead of objdump.
就是用y加在了gcc前头,所以会使用ygcc,同样的会试图用yobjdump来替代objdump。
这个变量是用于跨平台编译的,如设置为CONFIG_CROSS_COMPILE="arm-linux-",那么她会执行arm-linux-gcc,这个。。。唔。。。
============================
反正重新配置就对了。