Setting up C++11 (std::thread) for NDK with ADT/Eclipse

前端 未结 3 1234
心在旅途
心在旅途 2020-12-19 03:33

I have been trying to use C++11. I am developing an android project and i want to use std::mutex. Along with OpenCV But no matter what I do, I just cant seem to fix the

3条回答
  •  清歌不尽
    2020-12-19 04:17

    If you upgrade the NDK or install a fresh version of Android Studio (2.1 at time of writing) and have Android Studio download the NDK for you you will get revision 12 - which has a lot of the std:: defines not defined in \ndk-bundle\sources\cxx-stl\gnu-libstdc++\4.9\libs\armeabi-v7a\include\bits\c++config.h - ones relevant for threading being such as _GLIBCXX_HAS_GTHREADS which hides the thread class in "thread" for example.

    It says that after revision 10e that gcc is deprecated. And with this all the defines as mentioned - which thoroughly buggered our thread dependant JNI code.

    Clang as suggested in other posts is not a solution for us as it amongst other things seems not to support thead_local for example. The solution is to revert back to revision 10e - which you can find at:

    dl.google.com/android/ndk

    Extract the package and copy into the sdk/ndk-bundle directory - make sure you delete the original revision 12 first.

提交回复
热议问题