Combining several static archives into a new one
Posted
by knight666
on Stack Overflow
See other posts from Stack Overflow
or by knight666
Published on 2010-04-18T13:50:23Z
Indexed on
2010/04/18
13:53 UTC
Read the original article
Hit count: 202
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.
© Stack Overflow or respective owner