diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-04-20 20:43:43 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-04-20 20:43:43 +0300 |
commit | d94f39c9e6eb78d14103f55a1586fae56de3b00d (patch) | |
tree | e2a83a215474e5d302139c53539cad58cc85e996 /build | |
parent | c27ecbaefaa4fa6549fa5b9b70b460040e4a200e (diff) |
Disable bunch of bogus GCC warnings
Diffstat (limited to 'build')
-rw-r--r-- | build/root.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/root.build b/build/root.build index 5e34597..d16d0e9 100644 --- a/build/root.build +++ b/build/root.build @@ -15,6 +15,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" |