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.
|
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.
|
||||
|
|
|
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) |
||
|
|
|
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!! |
||
|
|
|
|
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 |
||||||
|
|
|
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
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
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? |
||
|
|
|
|
I was able to fix this problem by adding the following to my Makefile:
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. |
||
|
|