在编译linux内核的时候,出现了类似如下的错误
./arch/x86/include/asm/arch_hweight.h: In function ‘__arch_hweight64’:
./arch/x86/include/asm/arch_hweight.h:53:42: error: expected ‘:’ or ‘)’ before ‘POPCNT64’
这个错误应该是编译器的问题
但是我makefile里面前两行已指定了编译器
ARCH = arm
CROSS_COMPILE = arm-linux-gnueabi-
解决办法:
执行make命令前
把
ARCH = arm
CROSS_COMPILE = arm-linux-gnueabi-
命令行里执行一下,make就没问题啦,我也不知道什么原因,难道是makefile不支持??