The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: 2-Bit Chip on December 31, 2009, 02:53:35 AM

Title: [LINKING] How to include libraries?
Post by: 2-Bit Chip on December 31, 2009, 02:53:35 AM
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?
Title: Re: [LINKING] How to include libraries?
Post by: dedndave on December 31, 2009, 08:22:03 AM
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
Title: Re: [LINKING] How to include libraries?
Post by: hutch-- on December 31, 2009, 09:41:19 AM
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.
Title: Re: [LINKING] How to include libraries?
Post by: dedndave on December 31, 2009, 02:53:02 PM
of course, it is much easier to name the library in an INCLUDELIB directive in the asm file   :bg