How can I combine several C/C++ libraries into one?

You could extract the object files from each library with

ar x <library name>

and then merge them all into a new library with

ar cs <new library name> <list each extracted object file>

Leave a Comment