on Thread 1 get initial start screen then app pauses and all i get is 0 16_dyld_dyld_start

I updated to xcode 4.2 on lion (and it is the lion version) now it wont run my app which runs fine on prev xcode. I ran some test basic apps and they run fine.

Any ideas?

Many thanks

link|improve this question

80% accept rate
ok I found this fantastic mans answer that fixed my issue here stackoverflow.com/questions/6790848/… phew! – craigk Oct 5 '11 at 23:39
feedback

1 Answer

up vote 9 down vote accepted

To summarise the answer given here:

you change -weak_library /usr/lib/libSystem.B.dylib to -weak-lSystem

Did the trick for me too. Seems to still work on iOS 4 devices too.

(Changed to community wiki since it's not my answer.)

link|improve this answer
.. this worked for me. Thank you! – Max Ballo Oct 26 '11 at 21:18
You sir, just saved my day. Been scratching my head for hours on this one. – Øystein Nov 24 '11 at 9:03
I've just run into this same issue today — all worked fine before, but now my app hangs on launch with either this symptom or a SIGABRT (with no exception). Sounds like the thing everybody is saying -weak_library fixes... but where do I set that? I can't find any -weak_library setting in build or target settings, or anywhere else in the project. – Joe Strout Feb 24 at 16:14
@JoeStrout It's "Other Linker Flags" in Xcode 4.3.1. – Stephen Darlington Feb 24 at 19:21
Thanks — turns out that wasn't the culprit for me, which is why I couldn't find it in my project. In my case, it was this problem. – Joe Strout Feb 25 at 14:55
feedback

Your Answer

 
or
required, but never shown

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