summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-05 01:38:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-05 01:38:50 +0000
commit441de1b37611a6cba0baf386adb398ed544fd5e0 (patch)
tree41417bbf097296f95c1c42e7955816d2ab2892a7 /win32
parent5381e4d1c0023f5176a2ffe700e5e4d006435d11 (diff)
Makefile.sub: more warnig flags
* win32/Makefile.sub (WARNFLAGS): disable some too verbose warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51764 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/Makefile.sub4
1 files changed, 3 insertions, 1 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 2294d4ad98..b74d44ee14 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -203,7 +203,9 @@ COMPILERFLAG = -Zm600
!endif
!if !defined(WARNFLAGS)
!if $(MSC_VER) >= 1400
-WARNFLAGS = -W2 -wd4996 -we4028 -we4142
+WARNFLAGS = -W2 -wd4100 -wd4127 -wd4210 -wd4214 -wd4255 -wd4574 \
+ -wd4668 -wd4710 -wd4711 -wd4820 -wd4996 \
+ -we4028 -we4142
!else
WARNFLAGS = -W2
!endif