News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

disable warning

Started by JnZn558, January 01, 2012, 03:21:43 PM

Previous topic - Next topic

JnZn558

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.

dedndave

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