diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-06-05 13:27:21 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-06-05 13:48:20 +0200 |
commit | 4d102f5d28e7f5406da3292a1f5f4f369dd05031 (patch) | |
tree | fc76c2f34dac65d363e8e8b3334db2202905856c /build-msvc.bat.in | |
parent | f5be99eb78afe8da70287083384f9c122f5d8644 (diff) |
Disable all warnings during bootstrap stage 1
Diffstat (limited to 'build-msvc.bat.in')
-rw-r--r-- | build-msvc.bat.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build-msvc.bat.in b/build-msvc.bat.in index 85503bb..b3035b4 100644 --- a/build-msvc.bat.in +++ b/build-msvc.bat.in @@ -418,11 +418,14 @@ set "BDEP_DEF_OPT=0" @rem Bootstrap. @rem +@rem Note: disable all warnings since we cannot do anything more granular +@rem during bootstrap stage 1. +@rem cd build2 @rem Execute in a separate cmd.exe to preserve the echo mode. @rem -cmd /C bootstrap-msvc.bat %cxx% %ops% +cmd /C bootstrap-msvc.bat %cxx% /w %ops% @if errorlevel 1 goto error build2\b-boot --version |