Ndk Error....on Doing Ndk-build
I get the following error when trying to perform an NDK-build... Can any one help me? lmImf/ImfHuf.cpp:133: undefined reference to `__cxa_throw' ./obj/local/armeabi-v7a/libfree
Solution 1:
Add this to your Application.mk
:
APP_STL := gnustl_static
APP_CPPFLAGS += -frtti
APP_CPPFLAGS += -fexceptions
It seems your FreeImage is build with the different run-time than your application.
Post a Comment for "Ndk Error....on Doing Ndk-build"