November 27, 2006
Is it possible to combine a library (I only have a .def file and the library)
with another one?
November 28, 2006
Yep, you can try this in Windows:

	lib -c lib_out.lib lib_in1.lib lib_in2.lib ...

In Linux is was (at least a couple of years ago ;-):

	ar -cs lib_out.so lib_in1.so lib_in2.so ...


Leopold Walkling escribió:
> Is it possible to combine a library (I only have a .def file and the library)
> with another one?