I noticed it says in the manual that "GoLink does not need LIB (library) files" but I'm finding that not only does it not need them, it refuses to use them even when explicitly specified in the command line. This may be fine if you are using just one or 2 DLL files, but what if you are (like me) trying to use multiple DLL files, and there's one nice import library file that imports all the functions from all the DLLs? Then the lack of ability to use any import libraries at all becomes a major inconvenience. You see, I'm using an import library file called WIN32.LIB which is supposed to make available all the functions in the various Windows API DLL files, so that I don't need to manually type in each separate DLL file that's part of the Windows API (such as gdi32.dll, kernel32.dll, user32.dll, etc) into the command line for the linker. This is supposed to make it much easier to use the Windows API if you are using functions from multiple Windows API DLL files (so you don't have to specify each one). Unfortunately I'm finding that GoLink.exe is refusing to use any import libraries, meaning that WIN32.LIB is 100% useless, until this bug is fixed. Can you please correct this bug in your next version of GoLink? Thanks in advance.