How to build library from other libraries?

How to build library from other libraries?


Assuming we're talking about an archive (static) library, the easiest
way is to explode all the constituent libraries into their original
objects using `ar x' in an empty directory, and combine them all
back together. Of course, there is the potential for collision of
filenames, but if the libraries are large, you probably don't want to be
combining them in the first place....






Home FAQ