在android studio里面添加 arm_neon.h之后
#include <arm_neon.h>
看起来android studio虽然能够在ndk中找到arm_neon.h,但并不能正确引用,因为代码完全没有提示,而且工程提示
this file does not belong to any project target code insight features might not work properly
感觉比较像是as的bug,因为同样的头文件,c++标准库的头文件都可以正确提示,如果想要在写代码的时候有点代码提示,就手动去ndk的目录面把这个文件找到,拷贝到工程下,然后通过如下的方式来引用
#include "arm_neon.h"
就好了
同样的引用<android/log.h>也会有类似的问题,也可以通过这种方式来解决。
标签:code,target,insight,neon,studio,android,features From: https://www.cnblogs.com/changweijinghu/p/16985822.html