Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

64 duplicate symbols for architecture armv7s clang: error: linker command failed with exit code 1 (use -v to see invocation)

Not sure if anyone has had this issue and fixed it. Thank you all in advance for your help.

share|improve this question

2 Answers

If you're using the Admob v6.2 library make sure you're NOT using the -all_load linker flag, use the -ObjC linker flag instead.

share|improve this answer
when i remove the -all_load the app will not load on my device – Kevin M Nov 14 '12 at 20:36
1  
I am releasing for minimum 4.3 on iphone. also in the interface builder document the document versioning is deployment "all versions iOS" and development Xcode 4.2. This match another app that works with admob. I tried replicating all of it. the other app does not have the -all_load included and runs fine. But this app when -all_load is removed will not run. – Kevin M Nov 14 '12 at 20:39
what is crashing when you remove -all_load? If you're using another library that needs it you can use -force_load with the path to the library instead as well – RajPara Nov 15 '12 at 21:09
removing -all_load worked, for me. – AVEbrahimi Mar 11 at 17:07

I had similar scenario with admob & i was pulling my hair for 2 days until I figured it out the hard way but thanks to that I have a better idea how it works. You can solve this by adding linker flags to each valid architecture separately.

You can see here that I've added separate linker flags for armv7s architecture & I removed "-all_load" for that. Other architectures (armv6 , 7, etc) gets compiled with -all_load where armv7s is not. Even-though this question is few months old I hope someone would find it useful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.