diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-04-20 19:06:17 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-04-20 19:06:17 +0300 |
commit | eb91f0d0ae868c4eea600965235fd273f59b4382 (patch) | |
tree | ea08ea638bbe2059a58cf852719cd09452f69403 | |
parent | 4791ec7dbb5116a26df896d0b38cd3a66ac64c95 (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 93e7275..3c72be0 100644 --- a/build/root.build +++ b/build/root.build @@ -17,3 +17,5 @@ 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 |