Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ld: symbol dyld_stub_binding_helper not found, normally in crt1.o/dylib1.o/bundle1.o for architecture i386 xcode 5

I created iphone/ipad app that was working well by xcode 4 and iOS6 and I installed xcode 5 and I'm trying to run my app, but it now gives me the following error

enter image description here

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)

How can I fix this? hope anyone help me. Thanks in advance.

like image 484
Eman87 Avatar asked Oct 03 '13 11:10

Eman87


2 Answers

For me, I also need to set up the Deployment Target from older version 3.0 to 7.0.

like image 133
JerryZhou Avatar answered Nov 15 '22 15:11

JerryZhou


I solved it. I was forgot to change the deployment target to 7.0 and it was 3.

like image 30
Eman87 Avatar answered Nov 15 '22 17:11

Eman87