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++ 代码的 Android 应用程序。
这段代码尽可能快速高效地运行是非常重要的。这里有什么提示吗?有没有办法在 Android.mk 文件中设置 -o3 标志?
谢谢!
是的,只需为 C/C++ 代码添加 LOCAL_CFLAGS := -O2
或 LOCAL_CPPFLAGS 用于 C++ 代码。这些在我们的 Android.mk 文件中。