Discussion:
Anybody know how to disable or prevent the warning: LNK4075?
(too old to reply)
WTH
2003-09-10 17:01:36 UTC
Permalink
I am tired of seeing this:

LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/INCREMENTAL:NO'
specification
Creating library .\Debug/ScriptEngine.lib and object
.\Debug/ScriptEngine.exp


I can't seem to find a way to tell the linker to turn off /EDITANDCONTINUE.
It is disabled in debugging options and there's no apparent way to do it
with #pragma because LNK4075 isn't a define and 4075 maps to a different
error.

Adding /EDITANDCONTINUE:NO to the command line for the linker doesn't cause
an error but doesn't prevent the warning either (even if it comes before
/INCREMENTAL:NO.)

Anybody found a way to turn this warning off? I hate unnecessary warnings
;).

WTH:)
David Lowndes
2003-09-10 21:57:15 UTC
Permalink
Post by WTH
Anybody found a way to turn this warning off? I hate unnecessary warnings
See if adding the following option to your linker options works:

/IGNORE:4075

Dave
--
MVP VC++ FAQ: http://www.mvps.org/vcfaq
WTH
2003-09-11 13:25:29 UTC
Permalink
Nope, but thanks giving me another option to try :). I even tried setting
incremental to default and then adding the /INCREMENTAL:NO after the
/IGNORE:4075, no luck...

WTH
Post by David Lowndes
Post by WTH
Anybody found a way to turn this warning off? I hate unnecessary warnings
/IGNORE:4075
Dave
--
MVP VC++ FAQ: http://www.mvps.org/vcfaq
Loading...