如何在 Xcode 中启用 Neon 指令

发布于 2024-08-23 13:06:23 字数 218 浏览 6 评论 0原文

我想在 iPhone 上使用 Neon SIMD 指令。 我听说我们必须在目标检查器的“其他 C 标志”字段中放置标志“-mfloat-abi=softfp -mfpu=neon”,但是在构建时我得到“错误:无法识别的命令行选项“-mfpu=neon” ”。

是否还需要执行其他任何特殊操作才能允许该标志? (我有 Xcode 3.2.1 和 iphone sdk 3.1.3)

谢谢!!

I want to use Neon SIMD instruction for the iphone.
I heard we have to put flags "-mfloat-abi=softfp -mfpu=neon" in the "Other C Flags" field of the Target inspector, but when building I get "error: unrecognized command line option "-mfpu=neon"" .

Is there anything else special that has to be done to allow this flag? (I have Xcode 3.2.1 and iphone sdk 3.1.3)

Thanks !!

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

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

发布评论

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

评论(2

爱要勇敢去追 2024-08-30 13:06:23

NEON 集是 Cortex-A 系列的扩展,因此 iPhone 3G 不支持。您可能无法直接指定这一点。

The NEON set is an extension on the Cortex-A series, therefore not supported in iPhone 3G. You probably cannot specify this directly.

拧巴小姐 2024-08-30 13:06:23

默认情况下启用 NEON。

为此,目标必须是 ARMv7。 (3GS或更高版本)

为了利用NEON,最简单的方法是用NEON指令编写汇编代码。

这并不难。 ARM 在其主页上提供了 PDF 形式的 NEON 指南。

NEON is enabled by default.

The target has to be ARMv7 for that. (3GS or later)

In order to utilize NEON, the easiest way is writing assembly codes with NEON instructions.

It isn't that hard. ARM provides NEON guide in PDF on their homepage.

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