编译错误error:asm/bitsperlong.h: No such file or directory

今天在编译system_server的小应用时,时遇到问题:error:asm/bitsperlong.h: No such file or directory

解决方案:

/usr/src/linux/include/asm-generic/int-ll64.h:11:29: 
error: asm/bitsperlong.h:No such file ordirectory在  linux内核目录/include/asm-generic/int-ll64.h 

将11行: #include <asm/bitsperlong.h>

改为:#include<asm-generic/bitsperlong.h>


如果遇到类似问题,可以根据提示,修改此处。

你可能感兴趣的:(linux,error,编译错误,linux内核)