Android NDK R5 and support of C++ exception
- by plaisthos
Hi,
I am trying to use the NDK 5 full C++ gnustl:
sources/cxx-stl/gnu-libstdc++/README states:
This implementation fully supports C++ exceptions and RTTI.
But all attempts using exceptions fail. An alternative NDK exists on http://www.crystax.net/android/ndk-r4.php. Even the hello-jni example from that site does not work. Compliation works after creating an Application.xml with
APP_STL := gnustl_static
But it dies the same horrific death as my own experiments.
Am I am missing something or is the statement in the README just plain wrong?