LLVM 编译器 2.0 上的 -fobjc-nonfragile-abi2:未知参数?
我尝试使用 LLVM 编译器 2.0 在 Xcode 上构建我的项目,但出现此错误:
error: unknown argument: '-fobjc-nonfragile-abi2'
我不熟悉 LLVM 编译器,有人有解决方案吗?
删除参数并不能解决我的问题,因为我的代码在这种情况下有错误。
I tried to built my project on Xcode with the LLVM compiler 2.0 and it gives this error:
error: unknown argument: '-fobjc-nonfragile-abi2'
I'm not familiar with the LLVM compilers, does anyone has a solution?
Removing the argument doesn't solve my problem, because my code has errors in that situation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该选项不再需要,因为它是最新版本 LLVM 中的默认设置。
That option is no longer necessary as it is the default setting now in the latest version of LLVM.
来自 clang 手册页:
因此,如果您以相反的顺序放置它们,编译器将使用 -fobjc-nonfragile-abi2 作为 cflag,但事实并非如此,并返回错误。
看这里看这里:
http://digdog.tumblr.com/post/833744044
From clang man page:
So, if you put them in reversed order, the compiler will use -fobjc-nonfragile-abi2 as cflag, which isn’t, and get you the error in return.
Looki Looki here:
http://digdog.tumblr.com/post/833744044