Android JNI makefile:在哪里设置 CFLAGS?

发布于 2024-11-15 12:55:26 字数 288 浏览 8 评论 0原文

我一直在思考如何准确地告诉 Android 在 Cortex-A8 上使用 VFP 在我的本机 C 代码中进行浮点运算。我知道我需要设置的编译器标志。问题是我在哪里做?有人可以指导我完成整个过程吗?

我正在使用 Eclipse。我使用 Cygwin 来运行 ndk-build。我的程序可以运行,所以我肯定已经弄清楚了程序。问题是我在哪里(在哪个文件中)告诉 Android 使用 VFP?该命令类似于 CFLAGS += -mfpu=vfp。当我将此代码插入 Android.mk 时,没有任何反应。

I'm stuck figuring out how exactly to tell Android to use VFP on Cortex-A8 for floating-point operations in my native C code. I know the compiler flags I need to set. The question is where do I do it? Can someone guide me through the process?

I'm using Eclipse. I use Cygwin to run ndk-build. My program works, so I've definitely got the procedure figured out. The question is where (in which file) do I tell Android to use VFP? The command is something like CFLAGS += -mfpu=vfp. When I insert this code into Android.mk, nothing happens.

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

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

发布评论

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

评论(1

花之痕靓丽 2024-11-22 12:55:26

Android.mk 中需要的行是 LOCAL_CFLAGS += -mfpu=vfp

The line you need in Android.mk is LOCAL_CFLAGS += -mfpu=vfp

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