0

在我的 iPhone 项目中,我使用了一些内联 asm,如果目标架构是设备而不是模拟器,则将其排除在外。

由于某些内联 asm 代码仅是 arm 而不是 thumb 我需要在为 iPhone 编译它时指定 c 标志 -marm,否则它会尝试使用 thumb 指令编译代码。

如果我在文件特定的构建设置中输入 -marm 标志,这就是问题所在,如果我为模拟器编译,gcc 会输出错误:

cc1obj:错误:无法识别的命令行选项“-marm”

只有当目标架构是arm时,有没有办法通过这个选项?我知道你可以用全局 c 标志来做,但我不想用 -marm 标志编译我的整个项目。我只想要几个.m 文件是-marm。

谢谢和问候,金

4

1 回答 1

0

好的,我找到了解决该问题的方法。

这是我添加到代码中的注释:

// the asm code only works with arm not with thumb,
// so if you compile it and gcc trys to compile it as thumb
// you will get an error.
// to make gcc compile the file as arm and not thumb you need
// to add -marm to the files compiler config (select the file
// and press cmd + i and select the build tab and enter there
// the problem is that if you try to compile for the simulator
// it will fail, because intel gcc doesnt know the flat -marm.
// To solve this add a new "User defined setting" in your targets 
// build settings with the name use_marm and give it the value ""
// then add a build setting condition and select Any iPhone OS
// Device and give it the value "-marm"
// In your file's compiler flags add $use_marm
// If you build for the device it will add -marm and if you
// build for the simulator it wont.
于 2009-10-26T23:38:05.133 回答