Suppress Warning LNK:4099?

ls612

Deity
Moderator
Joined
Mar 10, 2008
Messages
8,288
Location
America
This warning is about not having the symbols for library files being linked to the DLL not having debug symbols, and is thrown about 30 times during compilation. Is there a way to have VS suppress these so that I don't need to see them every time?
 
Why not try Properties -> Linker -> Debugging -> Generate Debug Info -> No and report back?
 
/ignore:4099 doesn't work (numerous refs on the web as to why not) but "GenerateDebugInfo = No" fixes it
 
Will that prevent it from giving debug info for the actual DLL (which I want)?

"Why not try ... and report back?"
 
"Why not try ... and report back?"

Yes it does. :( I guess I'll just have to put up with those warnings then.

Also that surfaced a new warning that got lost in the pile before
Code:
c:\program files (x86)\microsoft visual studio 9.0\vc\include\vector(384): warning BK4504: file contains too many references; ignoring further references from this source
 
Back
Top Bottom