framework not found issue

Viewed 13797

Upon building my project (a simple cocoa application) in XCode 3 I get this error message:

ld: framework not found SDL
collect2: ld returned 1 exit status

But framework exists here /Library/Frameworks/SDL.framework. How do I get the linker to find it?

5 Answers

If you get this error - try

place YOUR.framework to folder with your project.

Set patch to framework in config project.

You need to add the framework by right clicking on the on the framework in the sources and file menu and select the existing file. Add the framework after that it is visible in your project.

Related