Android.mk 与 Application.mk

发布于 2024-11-04 10:54:16 字数 274 浏览 0 评论 0原文

我对Android.mk & 的使用有点模糊Application.mk

我尝试阅读 APPLICATION-MK.HTML & NDK 附带的文档中的 ANDROID-MK.HTML,但仍然对两个 makefile 的用途感到困惑。

我将非常感谢任何可以帮助我理解这一点的人。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月朦胧 2024-11-11 10:54:16

每个模块需要一个且仅有一个Android.mk。如果您的本机应用程序中只有一个模块,则 Application.mk 是多余的(但是,如果您偏离默认行为,则有一些内容只能由 Application.mk 控制)。但是,如果您有许多模块,因此项目中有许多 Android.mk 文件,那么 Application.mk 可用于提供适用于所有模块的应用程序范围设置。

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.

ら栖息 2024-11-11 10:54:16

引用自 docs/OVERVIEW.html

虽然 Android.mk 文件向构建系统描述了您的模块,但
Application.mk 文件描述了您的应用程序本身。请参阅
docs/APPLICATION-MK.html 文档以了解该文件允许您做什么
去做。其中包括:

  • 您的应用程序所需的模块的确切列表。

  • 要为其生成机器代码的 CPU 架构。

  • 可选信息,例如您是否想要发布或调试
    构建、特定的 C 或 C++ 编译器标志以及其他应该
    适用于正在构建的所有模块。

该文件是可选的:默认情况下,NDK 将提供一个简单的文件
构建 Android.mk 中列出的所有模块(以及所有 makefile
它包括)并以默认 CPU ABI (armeabi) 为目标。

希望有帮助

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文