概述
C++工程有时候会进行异常处理,
所以在编译的过程中,可能会遇到这种提示:
exception handling disabled, use
-fexceptions to enable
这是编译选项没有支持错误处理导致的。
这种情况下要做两处修改:
1) Android.mk里面增加:
LOCAL_CPPFLAGS += -fexceptions -lstdc++
2) Application.mk里面:
APP_STL :=gnustl_static
而不是stlport_static
对于原因,网上有大神提供了很好的解释:
参见:
http://stackoverflow.com/questions/9226513/linker-errors-in-android-ndk-undefined-reference-to-cxa-end-cleanup
After reading
android-ndk/docs/CPLUSPLUS-SUPPORT.html I found that there a couple
more libraries that I can link to:
C++ C++ Standard
Exceptions
RTTI Library
system no no no
gabi++ no yes no
stlport no yes yes
gnustl yes yes yes
I'm not sure if using the gnustl library is
going to help, but it certainly does stop the linker errors and
moves the build problems onto a different set of
errors.
可见gnustl
支持的特性是最多的,所以以后再写application.mk的时候 尽量用 gnustl
最后
以上就是愉快路人为你收集整理的android+引用非+android+工程,[非原创]编译android C++工程找不到exception handle的解决办法...的全部内容,希望文章能够帮你解决android+引用非+android+工程,[非原创]编译android C++工程找不到exception handle的解决办法...所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复