I have 2 static Linux libraries, created by ar cr
, libabc.a
and libxyz.a
.
I want to merge them into one static library libaz.a
.
How can I do this.
I want to create a merged static library, not to give both libraries to final link of applications.
You can extract the object from both the
.a
files and create your.a
file using the extracted.o
s:Even better you perform partial linking on each library and them make an archive of the two resulting object files. That way it operates like shared libraries would
You do partial linking with
so either instead of making the intermediate archive or after reextracting it, run
then
There are at least three ways to do this natively. The first and most portable way is to use libtool. After having built the other libraries also with libtool, you can combine them just by adding the .la libs to an automake libaz_la_LIBADD variable, or directly from a Makefile with something like:
The other two are at least available when using GNU ar. You can use an MRI script (named for example libaz.mri), such as:
and then execute ar as:
Or you can use a thin archive (option
-T
), which will allow adding other archives without getting them nested inside, although the downside is that if you want to distribute the static library, the detached object will be missing:All the above methods gracefully handle overlapping member names from the original archives.
Otherwise, you'd have to unpack into different directories and repack again, to avoid replacing overlapping member names:
If you simply do it as :
you will lost some object files if there are members with same name in both a.a and b.a so, you need to extract members of different archives into different folder:
further more, it is posible that there are multiple members of same name in one archive (say in a.a), if you run ar x a.a, you will get only one for those members of same name.
The only way to extract all members of same name in one archive is to specify the member number by option 'N':
this would be a tedious work, so you will have to write a more sophisticate script to do that job.
One optional solutions is that you can combine multiple archives into one shared library:
this way the linker will handle all things for you!