We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c8bd08 commit fe9c904Copy full SHA for fe9c904
.github/scripts/windows/build_task.bat
@@ -32,7 +32,11 @@ if "%THREAD_SAFE%" equ "0" set ADD_CONF=%ADD_CONF% --disable-zts
32
if "%INTRINSICS%" neq "" set ADD_CONF=%ADD_CONF% --enable-native-intrinsics=%INTRINSICS%
33
if "%ASAN%" equ "1" set ADD_CONF=%ADD_CONF% --enable-sanitizer --enable-debug-pack
34
35
-set CFLAGS=/W2 /WX /w14013 /wd4146 /wd4244
+rem C4018: comparison: signed/unsigned mismatch
36
+rem C4146: unary minus operator applied to unsigned type
37
+rem C4244: type conversion, possible loss of data
38
+rem C4267: 'size_t' type conversion, possible loss of data
39
+set CFLAGS=/W3 /WX /wd4018 /wd4146 /wd4244 /wd4267
40
41
cmd /c configure.bat ^
42
--enable-snapshot-build ^
0 commit comments