digitalmars.D.learn - Combine libraries?
- Leopold Walkling (2/2) Nov 27 2006 Is it possible to combine a library (I only have a .def file and the lib...
- Samuel MV (5/7) Nov 27 2006 Yep, you can try this in Windows:
Is it possible to combine a library (I only have a .def file and the library) with another one?
Nov 27 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?
Nov 27 2006