My case is simple, a workspace with two sibling projects: one main (iOS) app and a project that builds several static library targets used by the app.

Here's how I have configured the build:

  • pointed a 'user header search path' in the main app's build settings to the library project location (via a source tree)
  • in my app's main target's editor -> build phases -> "Link Binary With Libraries" section, added the library products I want to use.
  • in the scheme, ticked 'Find Implicit Dependencies'

After a clean (and deletion of the derived data), a build nets me this error during the build of the main project:

ld: library not found for -lChipmunk
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/clang failed with exit code 1

Sure enough, if I look in the newly-created derived data, the only object files to be found are for the main app, not the libraries. A widespread 'find' for *.o files doesn't reveal anything relevant, so the libraries aren't getting lost, they're definitely not being built.

Some supplementary points:

  • when I've asked about this on the Apple dev forums, it's been suggested that I should add explicit deps in the main target's Build Phases->Target Dependencies editor. But you can only add deps here to targets in the same project or subprojects; in my case I have the app and library projects as workplace siblings.
  • if I build each library manually before the main build, all is fine.

Update:

I've just figured out a workaround, which is to add all the deps' targets into the 'build' part of the main app's scheme. I had tried this before without success, but hadn't realised that I could drag the targets around in the list to get the right build order. Builds now happen in the correct order, both after a clean, and after changes in either library or main app source.

I'm leaving the question here, because manually sorting out a build order surely shouldn't be necessary. There has to be something wrong with how I have things set up.

link|improve this question

73% accept rate
1  
Another reason for leaving the question here is that even the above (imperfect) workaroun doesn't always work. It's fine on the first build, but often fails to build after source changes in the static lib project. – Cris Apr 6 '11 at 3:28
1  
I never quite understood what's the deal with this whole Xcode 4 workspace thing. How exactly is it different from subproject? What's the benefit anyways for all these headaches? – Tony Jan 3 at 21:28
So... I'm facing the same problem... it works if I clean and then build the project. But Xcode is not recompiling the lib project after changes in its source code. So, Im forced to clean/build the app project to force xcode to recompile and generate the updated version of my library. Any progress with it, @Cris? – hbobenicio Feb 8 at 16:38
feedback

3 Answers

I described the way I've been setting up multiple projets in a workspace here: http://blog.carbonfive.com/2011/04/04/using-open-source-static-libraries-in-xcode-4/

I agree that manually adjusting the build target order in the scheme should be unnecessary, based on Xcode's documentation, but that's the best solution I've found so far.

link|improve this answer
Your post describes the procedure nicely, but it's essentially the same one I describe in the question. Unfortunately as I've mentioned in a new comment above, the workaround doesn't always work. XCode 4's build system is unfortunately unreliable as yet. Out of interest, I don't experience the indexing problem you mention in your post: I get autocompletion of library project source just with a 'user header' build setting. – Cris Apr 6 '11 at 3:35
feedback

Try dragging the library project into the main project:

library project reference inside main project

link|improve this answer
Yes, I realise I can do this (a la XCode 3), but I want to keep the projects as workspace siblings. – Cris Mar 25 '11 at 1:19
In XCode 4.2, This seems like the best solution. I created a group called "Workspace Siblings," and dragged the library project inside, then added the .a product to the Link Binary With Libraries. Now, any edits I make to my static library are compiled into my final product. – zkarcher Feb 27 at 22:29
feedback

See: How should I manage dependencies across projects in an Xcode workspace?

link|improve this answer
The answer given there is essentially that given above, ie. to make the library a sub-project of the consuming app. But that's not what I'm after, which is to have the two projects as workplace siblings. – Cris Apr 3 '11 at 6:35
feedback

Your Answer

 
or
required, but never shown

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