www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Combine libraries?

reply Leopold Walkling <leopold_walkling web.de> writes:
Is it possible to combine a library (I only have a .def file and the library)
with another one?
Nov 27 2006
parent Samuel MV <samuel jxdesigner.com> writes:
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?
Nov 27 2006