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.sh.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'build.sh.in') diff --git a/build.sh.in b/build.sh.in index f9279b7..43c648a 100644 --- a/build.sh.in +++ b/build.sh.in @@ -601,11 +601,14 @@ export BDEP_DEF_OPT # Bootstrap, stage 1. # +# Note: disable all warnings since we cannot do anything more granular during +# bootstrap stage 1. +# run cd build2 if test -z "$make"; then - run ./bootstrap.sh "$cxx" + run ./bootstrap.sh "$cxx" -w else - run $make -f ./bootstrap.gmake "CXX=$cxx" + run $make -f ./bootstrap.gmake "CXX=$cxx" CXXFLAGS=-w fi run build2/b-boot --version -- cgit v1.1