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.
阅读我看到这一段的文档:
使用 Thumb 选项构建您的程序。添加 -mthumb 编译器标志可以将代码的大小减少多达 35%。但是,如果您的应用程序包含浮点密集型代码模块并且您正在为 ARMv6 构建应用程序,则应禁用 Thumb 选项。如果您正在为 ARMv7 构建代码,则应启用 Thumb。
我在 Xcode 上的哪里放置标志-mthumb?我正在使用 Xcode 4.4.1。
查看汇编程序输出,我相信在为 armv7 构建时,Thumb 生成是 clang 中的默认设置。您可以使用关闭它-mno-thumb。
-mno-thumb