I tried the approach in this question, but it seems the linux version of ar is not the same as the mac version since I failed to combine the object files again.

What I basically want to do is is merge another static library into my Xcode static library build product via a run-script build phase.

Unfortunately I can't compile the other library directly into my project because it has it's own build system (therefore I use the compiled libs).

I think it should be possible to merge the other library via ar into the Xcode generated library without decompiling the build product, is that right (and how do I accomplish this)?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

you can use libtool to do it

libtool -static -o new.a old1.a old2.a
link|improve this answer
1  
This is actually a better solution than ar. Thanks! – Erik Aigner Nov 17 '11 at 18:33
feedback

You should use ar -r to create an archive on MacOS:

ar -x libabc.a
ar -x libxyz.a
ar -r libaz.a  *.o
link|improve this answer
feedback

You should just be able to link one to the other. So... just use ld to merge the images.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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