Objective-C预编译错误
我正在编译一个大型 iPhone 应用程序,并收到 24 个相同的错误...
cc1plus:注意:已过时的选项 -I- 使用过,请使用-iquote代替cc1: 错误:-I-指定了两次
对于相同的前缀头文件,此错误重复 24 次。知道发生了什么事吗?
谢谢!
I'm compiling a big iPhone app and am getting 24 of the same error...
cc1plus: note: obsolete option -I-
used, please use -iquote instead cc1:
error: -I- specified twice
This error is repeated 24 times for the same prefix header file. Any idea what's going on?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
前缀标头包含在 24 个源文件中。选项 -I- 导致前缀标头中出现错误,并且该错误重复了 24 次。
The prefix header is being included in 24 source files. The option -I- is causing the error in the prefix header and the error is repeated 24 times.
当我开始使用 XCode 4 时,我遇到了这个错误。对我来说,它最终成为了我在 XCode 中的方案。我将它们命名为“MyApp - Ad Hoc”之类的名称。我将方案重命名为“MyApp_Ad_Hoc”,它解决了这个问题。希望这会对一些人有所帮助。
I ran across this error when I began using XCode 4. For me, it ended up being my Schemes in XCode. I was naming them something like "MyApp - Ad Hoc". I renamed the Scheme to be "MyApp_Ad_Hoc" instead, and it cleared this up. Hopefully, this will help some people.