The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => 16 bit DOS Programming => Topic started by: JnZn558 on January 01, 2012, 03:21:43 PM

Title: disable warning
Post by: JnZn558 on January 01, 2012, 03:21:43 PM
I know disable warning in vc++ with #pragma warning(disable, xxxx)
how can I disable assembling & linker warning with command line with ml and link16.
Title: Re: disable warning
Post by: dedndave on January 01, 2012, 03:49:41 PM
you can get all the ML and LINK switches by using /?
ML /?
LINK /?

not sure if you can disable warnings altogether
but, you can redirect the output to a text file
ML ...... >SomeFile.txt
LINK ....... >>SomeFile.txt

as for PRAGMA, you might try using that in a resource file
Title: Re: disable warning
Post by: jj2007 on January 01, 2012, 05:16:39 PM
Set Warning Level (http://msdn.microsoft.com/en-us/library/ms937402.aspx)