vote up 1 vote down star

Is it possible to use a library compiled by visual studio in an application compiled by g++ (mingw) on Windows?

flag

Note: MinGW has only one I. – Martin B Jul 16 at 15:10
Thanks, fixed it. – Jesse Jul 16 at 15:13

3 Answers

vote up 6 vote down check
link|flag
You don't need an import lib if you load the DLL with LoadLibrary() or LoadLibraryEx(). – Rob K Jul 16 at 18:33
vote up 0 vote down

Also see the discussion for question QT/mingw32 undefined reference errors… unable to link a .lib

link|flag
vote up 0 vote down

From a technical standpoint, there isn't any reason you shouldn't be able to (it's all x86 after all). As for in practice, there are a number of tools for converting between library and object file formats. If you can find the correct one and deal with any naming, calling convention and structure layout differences (I don't know that you will or won't need to deal with any of that) you should be good.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.