From 4d102f5d28e7f5406da3292a1f5f4f369dd05031 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 5 Jun 2023 13:27:21 +0200 Subject: Disable all warnings during bootstrap stage 1 --- build-clang.bat.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'build-clang.bat.in') diff --git a/build-clang.bat.in b/build-clang.bat.in index c983aae..f04fd1a 100644 --- a/build-clang.bat.in +++ b/build-clang.bat.in @@ -448,6 +448,9 @@ 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 @if "_%make%_" == "__" ( @@ -459,12 +462,12 @@ cd build2 :batchfile @rem Execute in a separate cmd.exe to preserve the echo mode. @rem -cmd /C bootstrap-clang.bat %cxx% +cmd /C bootstrap-clang.bat %cxx% -m64 -w @if errorlevel 1 goto error @goto endfile :makefile -%make% -f bootstrap.gmake CXX=%cxx% +%make% -f bootstrap.gmake CXX=%cxx% "CXXFLAGS=-m64 -w" @if errorlevel 1 goto error @goto endfile -- cgit v1.1