Android NEON type could not be resolved at Eclipse

프로그래밍/NEON(ARM) 2014. 9. 23. 15:57
  • Make a new C++ project
  • Default options for everything
  • Once created, right-click the project and go to "Properties"
  • C/C++ Build -> Settings -> Tool Settings -> GCC C++ Compiler -> Miscellaneous -> Other Flags. Put-std=c++0x at the end . ... instead of GCC C++ Compiler I have also Cygwin compiler
  • C/C++ General -> Paths and Symbols -> Symbols -> GNU C++. Click "Add..." and paste__GXX_EXPERIMENTAL_CXX0X__ (ensure to append and prepend two underscores) into "Name" and leave "Value" blank.
  • Hit Apply, do whatever it asks you to do, then hit OK.
  • I had the same problem. It could be resolved by flushing the Eclipse indexer.
    I used the projects context menu and selected Index->Rebuild and Index->Freshen All Files. The last removed the error messages.


'프로그래밍 > NEON(ARM)' 카테고리의 다른 글

NEON 수학, 이항, 스칼라 연산  (0) 2014.09.03
NEON 변환 연산  (0) 2014.09.03
NEON 비교 연산과 절대값  (0) 2014.09.03
NEON 비트와 시프트 연산  (0) 2014.09.03
NEON 레인 설정과 조회  (0) 2014.08.31