新手入门
- 积分
- 6
- 金钱
- 6
- 注册时间
- 2021-11-29
- 在线时间
- 0 小时
|
1金钱
按命令行编译和.sh脚本编译都能成功,但是在Makefile里面修改 252 ARCH ?= $(SUBARCH)
253 CROSS_COMPILE ?= $(CONFIG_CROSS_COMPILE:"%"=%)
254 ARCH ?= arm
255 CROSS_COMPILE ?= arm-linux-gnueabihf-
保存后在终端输入:
~/project/kernel$ make imx_v7_defconfig
就出现下面的错误
****** Can't find default configuration "arch/x86/configs/imx_v7_defconfig"!
***
scripts/kconfig/Makefile:105: recipe for target 'imx_v7_defconfig' failed
make[1]: *** [imx_v7_defconfig] Error 1
Makefile:542: recipe for target 'imx_v7_defconfig' failed
make: *** [imx_v7_defconfig] Error 2
按命令行编译和.sh脚本编译都能是成功编译的
|
|