内核编译unrecognized command line option “-milittle-endian”解决方案

编译31内核时,常会出现


是没有找到编译器的执行文件,常用方法souce /root/.bash_profile,

但是执行make ARCH=arm CROSS_COMPILE=arm-linux-后,仍然会出现上述问题。

解决方法:

export PATH=$PATH:$HOME/bin:/usr/local/arm/4.3.1-eabi-armv6/usr/bin

export CROSS_COMPILE=”arm-linux-”

然后再运行make ARCH=arm CROSS_COMPILE=arm-linux- menuconfig

保存

再次运行

make ARCH=arm CROSS_COMPILE=arm-linux-

搞定。



原文是我百度得来的,地址如下:http://www.emsym.com/blog/?p=2174

你可能感兴趣的:(command,百度,Path,编译器)