日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Android >内容正文

Android

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

發布時間:2023/12/10 Android 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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...

總結

以上是生活随笔為你收集整理的android jni release,Android NDK 设置编译模式debug和release的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。