The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: Rainstorm on March 10, 2008, 05:27:20 AM

Title: about some masm commandline options
Post by: Rainstorm on March 10, 2008, 05:27:20 AM
what does the /OPT:NOREF option mean

I searched for this & other commandline switches in the pdf masm reference available on the web & they are not mentioned.

anyone have any links to an masm refrence that is more complete & has all the switches mentioned ?
Title: Re: about some masm commandline options
Post by: hutch-- on March 10, 2008, 09:43:04 AM
Its actually a linker option from the linker used in masm32 that is from the very old win98ddk. just put the /OPT:NOREF text into google and you will get the MSDN data for it but the reason why I used in in the project was to stop the linker squarking a useless warning if a kernel32 function was not called.
Title: Re: about some masm commandline options
Post by: sinsi on March 10, 2008, 09:54:42 AM
Link options (http://msdn2.microsoft.com/en-us/library/y0zzbyt4.aspx)
ML options (http://msdn2.microsoft.com/en-us/library/s0ksfwcf(VS.71).aspx)

These are the ones I use, but if anyone has a newer url I wouldn't mind knowing...
Title: Re: about some masm commandline options
Post by: Rainstorm on March 11, 2008, 02:14:11 AM
thx for the links & replies