I'm trying to use a open source library from a Windows application, and the only pre-built version I can find comes as a file called "lib.dll.a"
What format is this, and can I convert it to a normal dll file?
I'm trying to use a open source library from a Windows application, and the only pre-built version I can find comes as a file called "lib.dll.a"
What format is this, and can I convert it to a normal dll file?
Naming the output file
libjvm.dll.a
will allowgcc
to recognize it as a library namedjvm
. The.dll.a
suffix indicates (by convention) that it is an import library, rather than a static library (which would simply be namedlibjvm.a
, again by convention).