标签:exce port 需要 bsp 运行 文件内容 cep flag 编译
如果你的C++代码中出现了很多C++特有的库,例如<iostream>,<list>等,那么你还需要在jni的文件夹下添加一个Application.mk文件,文件内容为:
APP_STL := stlport_static
APP_STL := gnustl_static
示例 Application.mk :
APP_ABI := armeabi
APP_STL := gnustl_static #GNU STL
APP_CPPFLAGS := -fexceptions -frtti #允许异常功能,及运行时类型识别
APP_CPPFLAGS +=-std=c++11 #允许使用c++11的函数等功能
标签:exce port 需要 bsp 运行 文件内容 cep flag 编译
原文地址:https://www.cnblogs.com/renhui/p/9566271.html