Combining several static archives into a new one
- by knight666
I'm making a game engine for mobile devices. I want to compile my code, link it against a few static libraries and then combine my compiled code with those static libraries to form a new static library. However, my Google Fu is abandoning me.
Suppose I have static libraries a.a, b.a and c.a and my code. I want to compile all that into awesome.a.
How can I do that?
I'm using CodeSourcery's arm-none-linux-gnueabi-ar by the way.
Thanks in advance.