How do I include library files manually through LINK.exe?
\masm32\bin\LINK /MACHINE:IX86 /SUBSYSTEM:CONSOLE /LIBPATH:\masm32\lib /IMPLIB:kernel32.lib
The help files aren't helping. Does anyone know how to do this?
i think you just put the name on the line - lol
if that doesn't work, try this
/DEFAULTLIB:library.lib
http://msdn.microsoft.com/en-us/library/aa270751(VS.60).aspx
Just run you link line with the main object module first then the name of each library after it seperated by a space.
If you have many libraries use a response file.
of course, it is much easier to name the library in an INCLUDELIB directive in the asm file :bg