Re: mingw DLL problem
Holger Vogt <[email protected]>
| Newsgroups | gmane.comp.gnu.gnucap.devel |
|---|---|
| Message-ID | <[email protected]> |
Al, an additional simplification: Static linking to a dll may be simplified by: g++ -Wall -s foo.cpp -o testout.exe TestDLL.dll The linker takes the address information from the dll directly, not from the import library. This information (not the exported functions) is now available to the program, which then is depending on finding the dll. Regards Holger