I can't seem to find the answer.

I've just used Xcode 4 final version and built an existing project that was built ok with Xcode 3, but got this error:

ld: library not found for -lSystem.B
collect2: ld returned 1 exit status
Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1    

But another project was built OK with Xcode 4.

I installed Xcode 4 by choosing the default options.

Do I miss to include a library or framework somewhere?

Could somebody please help. Thank you.

link|improve this question
feedback

4 Answers

up vote 9 down vote accepted

Here's my solution for Xcode 4.0.2 with SDK 4.3 environment, but I believe it should also work on other setups.

  1. libSystem.B.dylib is not present under /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib, however it is present for lower SDK versions (e.g. iPhoneOS4.2.sdk)
  2. most of the cases libSystem.B.dylib is just a symbolic link to libSystem.dylib
  3. so in iPhoneSimulator4.3.sdk/usr/lib I've applied following command sudo ln -s libSystem.dylib libSystem.B.dylib and my simulator builds started to work again :)

NOTE: libSystem.B.dylib is used by Flurry and Urban Airship so you better don't delete the reference in project file (of course Urban Airship does not work under Simulator, but I think Flurry does. libSystem.B.dylib may also be required by other libraries you included to your project.

UPDATE: solution still works for iOS5 Simulator after upgrading to Xcode 4.3

UPDATE, March 9th, 2k12: for Xcode installations via App Store, prefix above path with /Applications/Xcode.app/Contents or the path where you've installed Xcode.app.

link|improve this answer
thank you for notifying this. Making the symbolic link works on me too. It could be a bug with the XCode version.. – Tanto Jul 4 '11 at 2:37
@Tanto: no problem, I just like SO community :) I think my solution is just a workaround that works rather than the real fix, which should be provided by Apple in next Xcode releases. – delirus Jul 4 '11 at 8:02
Still not fixed in iPhoneSimulator 5.0, but this fix worked for me. – Shaun Budhram Oct 17 '11 at 19:48
feedback

Solved.

Turns out that there was a reference to libSystemB in my project (Don't know why it's there). After deleting the reference, it built well.

Thanks anyway guys!

link|improve this answer
feedback

-weak_library /usr/lib/libSystem.B.dylib breaks the iOS Simulator. Use -weak-lSystem instead.

The quote belongs to gparker on the official dev forums.

link|improve this answer
feedback

-weak_library /usr/lib/libSystem.B.dylib breaks the iOS Simulator. Use -weak-lSystem instead.

nicktmro got it right, especially when you are developing cocos2d projects using xcode 4.x

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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