web-dev-qa-db-ja.com

ld:シンボルdyld_stub_binding_helperが見つかりません。通常、アーキテクチャi386 xcode 5ではcrt1.o / dylib1.o / bundle1.oにあります

Xcode 4とiOS6でうまく機能するiphone/ipadアプリを作成し、xcode 5をインストールしてアプリを実行しようとすると、次のエラーが表示されます

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)

どうすれば修正できますか?誰かが私を助けてくれることを願っています。前もって感謝します。

39
Eman87

解決しました。展開ターゲットを7.0に変更するのを忘れていて、3でした。

41
Eman87

私にとっては、Deployment Targetからolder version 3.0から7.0

74
JerryZhou

アーキテクチャを変更する必要があるのはarmv7のみです。

enter image description here

コンパイラがGCCの場合は、LLVMにも変更します。

enter image description here

また、デプロイメントターゲット3.0を7.0に変更する必要もあります。

22
karthika