File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ ifeq ($(uname_S),Windows)
42
42
RANLIB = echo
43
43
CC = cl -nologo
44
44
AR = lib -nologo
45
- CFLAGS = -TC -W3 -RTC1 -Zi -DWIN32 -D_DEBUG -D_LIB
45
+ CFLAGS = -TC -W4 -RTC1 -Zi -DWIN32 -D_DEBUG -D_LIB
46
46
AR_OUT=-out:
47
47
CC_OUT=-Fo
48
48
NO_VISIBILITY=YesPlease
Original file line number Diff line number Diff line change 66
66
#if defined(_MSC_VER )
67
67
/* disable "deprecated function" warnings */
68
68
# pragma warning ( disable : 4996 )
69
+ /* disable "conditional expression is constant" level 4 warnings */
70
+ # pragma warning ( disable : 4127 )
69
71
#endif
70
72
71
73
#endif /* INCLUDE_compat_h__ */
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ CC_OUT=-o # add a space
28
28
ifeq ($(uname_S ) ,Windows)
29
29
CC = cl -nologo
30
30
LD = link -nologo
31
- CFLAGS = -TC -W3 -RTC1 -Zi -DWIN32 -D_DEBUG -D_LIB
31
+ CFLAGS = -TC -W4 -RTC1 -Zi -DWIN32 -D_DEBUG -D_LIB
32
32
LD_OUT=-out:
33
33
CC_OUT=-Fo
34
34
You can’t perform that action at this time.
0 commit comments