diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-04-20 20:39:52 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-04-20 20:39:52 +0300 |
commit | 8ec498a0b1a6daf9f1e7f9e89512a43a7da760ec (patch) | |
tree | ad48bcc8ef0a27ca47dfe67b06ccf48c4b3585d5 | |
parent | 49a94c43a2dfe0710fd6ce91992795535b1d57c8 (diff) |
Disable bunch of bogus GCC warnings
-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 b183586..794fe15 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" |