vote up 1 vote down star

I have two projects, a Cocoa application and a static c library which it uses.

Then didn't in the same folder.For example:the name of c static library is libXXX.a,it in the XXXcore folder.the cocoa application in another folder that is the same level with the XXXcore folder. When I try to compile the cocoa application,I have the link error result.It is seem to change the search path in the cocoa app info(General panel).But it is not work,why?

flag

62% accept rate

3 Answers

vote up 3 vote down

If you're using Xcode, you can add a link to static library by adding the library to Frameworks folder in the project.

link|flag
vote up 0 vote down

still many link erro result.but When I add the folder path of c head file to the Header search paths of the cocoa app'Info panel, I have few error results. about that are "not found the function declared in the c header file" ,why ?

link|flag
This should be a comment, not an answer. – Mehrdad Jan 6 at 8:35
He only has 11 karma. Comments require 50. – Peter Hosey Jan 6 at 10:55
1  
I think you can comment on your own questions even without the required reputation. Not sure though – Mehrdad Jan 6 at 11:01
vote up 1 vote down

ok. I have the answer:

  1. add the .a library to your cocoa project
  2. edit the path of Header Search paths and Library Search paths in the project info panel(build panel)
  3. don't forget the copy option while adding the library to your project.

Thanks Mehrdad Afshari for your help!

link|flag

Your Answer

Get an OpenID
or

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