Error in xcode project: ld: library not found for -lcrt1.10.6.o

Viewed 74213

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.

12 Answers

Add the following to ~/.profile (for Mac OS X 10.5):

export C_INCLUDE_PATH=/Developer/SDKs/MacOSX10.5.sdk/usr/include
export LIBRARY_PATH=/Developer/SDKs/MacOSX10.5.sdk/usr/lib

I had the same issue in a Fortran Makefile. Added the following option after the compiler (For OSX 10.5):

-L/Developer/SDKs/MacOSX10.5.sdk/usr/lib

e.g.,

g77 -L/Developer/SDKs/MacOSX10.5.sdk/usr/lib

Now the compiler will find the library you want !

Related