5

I have this error in objective c

-fobjc-link-runtime it say's file not found. I've been googling but failed to get what caused the error. I'm building it on a xcode4.5 environment. using ios6 as base sdk. Any ideas?

4

2 回答 2

9

只是有同样的问题。原来这是由于我在其他链接器标志中留下了 -force_load 选项,结果后面是 -fobj-link-runtime,导致链接器认为这是一个库。

于 2013-01-05T06:11:57.773 回答
0

这看起来很像从某种 ObjC 测试工具中泄露出来的虚假链接器标志。

即,您需要进入 Xcode 中的构建设置编辑器,找到设置该特定标志的任何内容,然后将其删除。

于 2012-10-05T07:11:26.400 回答