I have not tested the x86 code yet so thanks for the info.
Our project is more compatible with libc++. Setting APP_STL to gnustl_static would require significant changes to our project code to make it compatible with libstdc++.
Only the module that depends on casablanca uses libstdc++. If testing reveals issues, we may just have to use libstdc++ for our project and make the necessary changes or we will have to compile casablanca with libc++ instead.
Per the NDK documentation the math library is automatically linked to the native modules at build time, so there is no need to list "-lm" through LOCAL_LDLIBS.
Thanks.
Our project is more compatible with libc++. Setting APP_STL to gnustl_static would require significant changes to our project code to make it compatible with libstdc++.
Only the module that depends on casablanca uses libstdc++. If testing reveals issues, we may just have to use libstdc++ for our project and make the necessary changes or we will have to compile casablanca with libc++ instead.
Per the NDK documentation the math library is automatically linked to the native modules at build time, so there is no need to list "-lm" through LOCAL_LDLIBS.
Thanks.