How do I make Xcode link object files properly?

The file containing "main" and all the dependencies compile properly (and I can easily link them in the command line to generate the executable). However, Xcode seems to refuse to do it, resulting in ld errors of "symbol not found".

This is what my current setup looks like. All the dependencies (Calculator, input, etc) are detected and compile properly. The cpp file contains main but fails to be linked to the .o file (generated by the dependencies), resulting in several ld "symbol not found" errors.

alt text

Any ideas?

link|improve this question
What do your dependencies produce? It looks like you're only actually linking to two libraries and compiling a source file. You'll have to actually incorporate the dependencies' products into the target in addition to having them be dependencies. – Ben Lachman Dec 10 '09 at 19:21
feedback

1 Answer

.o's generated by dependencies do not get linked into the including target. In the example above, "Calculator" needs to generate something, generally a static library (.a), that you would then add to the list of libraries to be linked into the project.

link|improve this answer
1  
What Rob and Ben are getting at is that dependencies and linking are separate functions. You're just making sure that Calculator is getting built, but not necessarily linking Untitled against Calculator's built binary. Drag the Calculator build product into the Link Binary with Libraries build phase. – cdespinosa Dec 17 '09 at 4:47
feedback

Your Answer

 
or
required, but never shown

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