From 7f88f5ec14ab650600bdc3063c81275f7cd70359 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 20 Apr 2021 11:14:00 +0200 Subject: Disable bunch of bogus GCC warnings --- build/root.build | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'build/root.build') diff --git a/build/root.build b/build/root.build index 2151480..f0624d2 100644 --- a/build/root.build +++ b/build/root.build @@ -15,6 +15,13 @@ if ($cxx.target.system == 'win32-msvc') if ($cxx.class == 'msvc') cxx.coptions += /wd4251 /wd4275 /wd4800 +elif ($cxx.id == 'gcc') +{ + # See GCC bugs 100115 and 98753 (attachment 50081/comment 15). Note that + # these must also be disabled in projects that use libbutl. + # + cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object +} # Load the cli module but only if it's available. This way a distribution # that includes pre-generated files can be built without installing cli. -- cgit v1.1