vote up 1 vote down star
1

Just upgraded to Snow Leopard, installed Xcode 3.2, then installed iPhone SDK 3 for SL.

In a project, I now get the following error on build:

ld: library not found for -lcrt1.10.6.o

I've searched around the net, but nothing helpful can be found.

flag

57% accept rate
Thanks everyone for the answers. I ended up backing out to Leopard and then doing a full reinstall of SL, Xcode, SDK. I dont get the issue now, so I cant use anyone's advice :) But if this comes up again I will reference this. I am wondering if it is because last time, I made a change in the proj settings from GCC to LLVM (I wanted to try the 'new' compiler :). I did not do that this time. – kindaran Sep 4 at 19:03
How did you back out to Leopard? Time Machine? – Elliot Oct 28 at 12:20

5 Answers

vote up 2 vote down

Edit Project Settings -> In the build tab -> For Mac OS X Deployment Target, change it to 10.5 (not 10.6 even if on 10.6) and see if that helps.

P.S. Make sure you set that for all targets, not just release or debug. (if you didn't, one would fail, the other wouldn't)

link|flag
Cool, this worked for me. – Elliot Oct 28 at 12:18
vote up 1 vote down

Wasted few hours on this one...

Interestingly, for me the problem was only for Simulator-Debug. It wasnt complaining for Simulator-Release or Device Debug/Release!

anyway, Changing Deployment Target to 10.5 solved this for me!!

link|flag
vote up 0 vote down

It looks like you're picking up libraries from /usr/lib, which is wholly inappropriate for the iPhone SDK. I would assume you've changed your build settings to add /usr/lib to the library search paths. This should be completely unnecessary in the first place, as /usr/lib is in the compiler's standard search paths, but if you need to have a modified search path like this, make sure to use $(SDKROOT)/usr/lib instead.

link|flag
I'll have a look. Didnt change anything so I guess it was like that previously. – kindaran Sep 1 at 23:59
Being the noobie person I am, I am looking in Project Settings and not seeing something obvious to change. Need a bit of help there. – kindaran Sep 2 at 0:04
Get info on each library in your project. Make sure it's relative to the SDK. Also double-check if you've set the Library Search Paths setting on your project or target - if you have, make sure it doesn't include /usr/lib. – Kevin Ballard Sep 4 at 1:42
vote up 0 vote down

I have (almost) the same issue. With Xcode 3.2 on Snow Leopard I try to build an app that worked fine on Leopard and Xcode 3.1 (it used to build both on the Simulator and the device).

First I got the error message

ld: library not found for -lcrt1.10.6.o

when the target was Simulator 3.1 Debug. So I changed the Mac OS X Target from "Compiler Default" to "OS X 10.5" and it builds and runs for Simulator 3.1 Debug.

However, if I try to build for "Device 3.1 Debug" or "Device 3.1 Release", I get the error message

ld: library not found for -lcrt1.10.5.o

I've been messing around in Xcode's Build settings for hours now, and whatever I try I just can't get it to compile on an OS3.1 device.

Ideas anyone?

link|flag
vote up 0 vote down

I was able to fix this problem by adding the following to my Makefile:

CFLAGS="$(OTHER_CFLAGS) -mmacosx-version-min=10.5"
LDFLAGS="$(OTHER_LDFLAGS) -mmacosx-version-min=10.5"

Ostensibly, this is only required when building outside of Xcode. This problem frustrated me long enough that I figured it would be useful to share my experience here.

link|flag

Your Answer

Get an OpenID
or

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