diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-26 17:32:21 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-26 17:32:21 +0300 |
commit | 63b5bf1330adfa4cf6e36615df8ede1a75740e97 (patch) | |
tree | e633521e13f9c21793edf8d8ffaced883378a257 /build/root.build | |
parent | 311dbebe0332cf3e738fc53d3490f948424dd139 (diff) |
Suppress -Wdangling-reference GCC 13 warning
Diffstat (limited to 'build/root.build')
-rw-r--r-- | build/root.build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/root.build b/build/root.build index be2f19a..c9ab5dc 100644 --- a/build/root.build +++ b/build/root.build @@ -16,6 +16,11 @@ 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 + + if ($cxx.version.major >= 13) + cxx.coptions += -Wno-dangling-reference +} elif ($cxx.id.type == 'clang' && $cxx.version.major >= 15) cxx.coptions += -Wno-unqualified-std-cast-call |