Suppress C4231 and C4505 warnings using VS2008
parent
506f90bcc8
commit
43ff11a089
|
|
@ -60,7 +60,8 @@ LD = link.exe
|
|||
AR = lib.exe
|
||||
RM = del.exe
|
||||
|
||||
CXXFLAGS = /nologo /W4 /wd4511 /wd4156 /D_MBCS /Zi /TP /GR /EHsc
|
||||
# C4231 and C4505 are needed for VS2008 and below. Lots of noise...
|
||||
CXXFLAGS = /nologo /W4 /wd4231 /wd4505 /wd4511 /wd4156 /D_MBCS /Zi /TP /GR /EHsc
|
||||
LDFLAGS = /nologo /SUBSYSTEM:CONSOLE
|
||||
ARFLAGS = /nologo
|
||||
LDLIBS =
|
||||
|
|
|
|||
Loading…
Reference in New Issue