39

我创建了 xcode 4 和 iOS6 运行良好的 iphone/ipad 应用程序,我安装了 xcode 5,我正在尝试运行我的应用程序,但它现在给了我以下错误

在此处输入图像描述

ld: symbol dyld_stub_binding_helper not found, normally in crt1.o/dylib1.o/bundle1.o for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我怎样才能解决这个问题?希望有人帮助我。提前致谢。

4

3 回答 3

74

对我来说,我还需要设置Deployment Targetfrom older version 3.0to 7.0

于 2013-10-09T10:23:39.233 回答
41

我解决了。我忘记将部署目标更改为 7.0,它是 3。

于 2013-11-25T09:23:00.827 回答
22

您只需要更改架构是 armv7。

在此处输入图像描述

如果编译器是 GCC,也更改为 LLVM,

在此处输入图像描述

并且还需要将部署目标3.0改为7.0。

于 2013-10-03T11:37:43.483 回答