如何在 Xcode 中启用 Neon 指令
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
默认情况下启用 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.