0

我正在尝试为 Cyanogenmod 13 编译内核。我收到错误消息

ERROR: modpost: Found 2 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
 To build the kernel despite the mismatches, build with:
'make CONFIG_NO_ERROR_ON_MISMATCH=y'
 (NOTE: This is not recommended)

我在这里读到了。我需要使用 4.7 编译我的内核。在 cyanogenmod 构建期间如何选择工具链的版本?

4

2 回答 2

1

我相信您需要设置 gcc 4.7 版并使用 CC 变量将其设置为编译器。例如make target CC=/bin/gcc4.7

更多信息在这里这里

于 2016-11-05T03:11:25.157 回答
0

感谢@nopasara 和他的宝贵意见。

所以我没有做进一步的研究,发现内核与arm-eabi tool chainarm-linux-androideabi工具链兼容。所以这是我使用的命令

export PATH=$PATH:~/android/system/prebuilts/gcc/linux-x86/arm/arm-linux-eabi-4.7/bin/ && export ARCH=arm && export SUBARCH=arm && export CROSS_COMPILE=arm-linux-eabi- && make msm8226_defconfig O=~/android/system/out/target/product/E6790/obj/KERNEL_OBJ

 make   O=~/android/system/out/target/product/E6790/obj/KERNEL_OBJ zImage -j4

要使用此 Cyanogenmod,请将以下行添加到您的 BoardConfig.mk

  TARGET_KERNEL_CROSS_COMPILE_PREFIX := arm-eabi-

并且要么使用

 export TARGET_LEGACY_GCC_VERSION=4.7 

或编辑 ~/android/system/build/core/combo/TARGET_linux-arm.mk 并设置版本

  $(combo_2nd_arch_prefix)TARGET_LEGACY_GCC_VERSION := 4.7
于 2016-11-06T17:11:32.447 回答