Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目标是使用 NDK 编译的 c/c++ 代码超过 1 个架构,问题是我需要对我的 make 文件有一个清晰的组织,我还必须根据架构 NDK 不同地设置相同的环境变量是编译时的目标。
我怎样才能为每个架构使用不同的 makefile?
你不需要不同的makefile。
在 Application.mk 中使用:
APP_ABI := 全部
然后例如使用
如果 eq($(TARGET_ARCH_ABI), armeabi)
<<insert your definitions here>>
万一