aboutsummaryrefslogtreecommitdiff
path: root/build/root.build
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-04-20 11:16:20 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-04-20 11:16:20 +0200
commit834152a6e3f3e8459b53e49370bfdd82685a700d (patch)
treeadd6f4cbeea29a217b0958f2548d458701d0a9f6 /build/root.build
parentf092670a89ce4eb213cf295406996fe97d257d21 (diff)
Disable bunch of bogus GCC warnings
Diffstat (limited to 'build/root.build')
-rw-r--r--build/root.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/build/root.build b/build/root.build
index aec5e89..e30b489 100644
--- a/build/root.build
+++ b/build/root.build
@@ -21,6 +21,8 @@ if ($cxx.target.system == 'win32-msvc')
if ($cxx.class == 'msvc')
cxx.coptions += /wd4251 /wd4275 /wd4800 /wd4819
+elif ($cxx.id == 'gcc')
+ cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object # libbutl
cxx.poptions =+ "-I$out_root" "-I$src_root"