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