Suppress C4231 and C4505 warnings using VS2008

pull/611/head
Jeffrey Walton 2018-03-27 20:37:42 -04:00
parent 506f90bcc8
commit 43ff11a089
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 2 additions and 1 deletions

View File

@ -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 =