I find I can link against a dll directly using Mingw g++.
g++ -shared -o hello.dll hello.cppg++ -o world world.cpp hello.dll
I used to link against the import lib of dll. What are the differences?
I find I can link against a dll directly using Mingw g++.
g++ -shared -o hello.dll hello.cppg++ -o world world.cpp hello.dll
I used to link against the import lib of dll. What are the differences?