android jni release,Android NDK 设置编译模式debug和release

原文:http://stackoverflow.com/questions/14564918/android-ndk-release-build

Unless you have created the Application.mk or defined your application as debuggable inside the AndroidManifest.xml you don't have to do anything because by default the application's modules are compiled in release mode by the ndk-build script.

Otherwise, you can use the APP_OPTIM directive inside the Application.mk file:

APP_OPTIM := debug

APP_PLATFORM := android-14

APP_STL := gnustl_static

APP_ABI := armeabi armeabi-v7a

From android-ndk-r8d/docs/APPLICATION-MK.html file:

APP_OPTIM

This optional variable can be defined to either 'release' or

'debug'. This is used to alter the optimization level when

building your application's modules.

A 'release' mode is the default, and will generate highly

optimized binaries. The 'debug' mode will generate un-optimized

binaries which are much easier to debug.

Note that if your application is debuggable (i.e. if your manifest

sets the android:debuggable attribute to "true" in its

tag), the default will be 'debug' instead of 'release'. This can

be overridden by setting APP_OPTIM to 'release'.

Note that it is possible to debug both 'release' and 'debug'

binaries, but the 'release' builds tend to provide less information

during debugging sessions: some variables are optimized out and

can't be inspected, code re-ordering can make stepping through

the code difficult, stack traces may not be reliable, etc...

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值