Android.mk vs Application.mk

淺唱寂寞╮ 提交于 2019-12-05 09:47:07

问题


I'm a little fuzzy about the use of Android.mk & Application.mk

I've tried reading APPLICATION-MK.HTML & ANDROID-MK.HTML in the documentation that comes with NDK, but still confused about the purpose of two makefiles.

I'll be really grateful to anyone who could help me understand this.


回答1:


Each module requires one and only one Android.mk. If all you ever have is one module in your native application, the Application.mk is redundant (however there are a few things that can only be controlled by the Application.mk if you veer from default behavior). However, if you have many modules, ergo many Android.mk files in your project, than the Application.mk can be useful for providing application-wide settings that apply to ALL modules.




回答2:


Quote from docs/OVERVIEW.html

While an Android.mk file describes your modules to the build system, the Application.mk file describes your application itself. See the docs/APPLICATION-MK.html document to understand what this file allows you to do. This includes, among others:

  • The exact list of modules required by your application.

  • The CPU architecture(s) to generate machine code for.

  • Optional information, like whether you want a release or debug build, specific C or C++ compiler flags and others that should apply to all modules being built.

This file is optional: by default the NDK will provide one that simply builds all the modules listed from your Android.mk (and all the makefiles it includes) and target the default CPU ABI (armeabi).

hope it helps



来源:https://stackoverflow.com/questions/5835926/android-mk-vs-application-mk

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!