We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8e52d4 commit e4d812cCopy full SHA for e4d812c
.github/scripts/windows/build_task.bat
@@ -32,7 +32,11 @@ rem C4018: comparison: signed/unsigned mismatch
32
rem C4146: unary minus operator applied to unsigned type
33
rem C4244: type conversion, possible loss of data
34
rem C4267: 'size_t' type conversion, possible loss of data
35
-set CFLAGS=/W3 /WX /wd4018 /wd4146 /wd4244 /wd4267
+if "%CLANG_TOOLSET%" equ "1" (
36
+ set CFLAGS=/W3 /wd4018 /wd4146 /wd4244 /wd4267
37
+) else (
38
+ set CFLAGS=/W3 /WX /wd4018 /wd4146 /wd4244 /wd4267
39
+)
40
41
cmd /c configure.bat ^
42
--enable-snapshot-build ^
0 commit comments