Those .a files are called import libraries (.a extension is specific to MinGW, other compilers might different extensions, for example .lib). Import library is just a stub that eases the use of DLLs. You link with such library just like with normal static library, but in the runtime it loads the proper DLL and imports all symbols from it automatically.Originally Posted by Morea
Bookmarks