aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-04-20 20:57:50 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-04-20 20:57:50 +0300
commit2db53a6b0fe6358996fdd1d263e566f9db075d7a (patch)
treef0928a29bfd458299174457c336e26172161fc6b
parentf44cb7f9c054c7c827ce3edf57f1b3713c251183 (diff)
Disable bunch of bogus GCC warnings
-rw-r--r--build/root.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/build/root.build b/build/root.build
index 2b47941..4101c92 100644
--- a/build/root.build
+++ b/build/root.build
@@ -20,6 +20,8 @@ if ($cxx.target.system == 'win32-msvc')
if ($cxx.class == 'msvc')
cxx.coptions += /wd4251 /wd4275 /wd4800
+elif ($cxx.id == 'gcc')
+ cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object # libbutl
cxx.poptions =+ "-I$out_root" "-I$src_root"