We are currently switching the W32 build-process of a cross-platform (linux, osx, w32) project from VisualStudio to mingw.
One of the problems we are facing is, that our projects creates a dynamic library (foo.dll
), against which 3rd party projects can link. For this to work on W32/MSVC, an import library is required (foo.lib
).
Now, following the documentation it is pretty easy to create a .def file which holds all the information required for importing the library:
gcc -shared -o foo.dll foo-*.o -Wl,--output-def,foo.def
In order to use the foo.def
file, the docs tell me to use the Microsoft LIB tool to build a foo.lib
from it:
lib /machine:i386 /def:testdll.def
This obviously requires me to have (a subset of) MSVC installed on the build computer. However, we'd like to cross-compile the entire thing on our linux systems (probably even on some CI), which makes the installation of MSVC rather tedious.
So I wonder, whether there's a native MinGW way to convert the foo.def
file into a foo.lib
import library?
(We are aware that in the end, only MSVC users will require the import library and that they will have the lib
tool ready at hand. However, since we've always shipped the foo.lib
file, switching to foo.def
would break 3rd parties build systems - something we would like to avoid).
I'm not aware of any MS LIB clone portable to Linux, however
POLIB
from Pelles C distribution is free, small, self-contained and compatible with MS tool. It has no dependencies other than kernel32.dll, so, I believe, it will run under Wine too.