diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-26 18:01:59 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-26 18:01:59 +0300 |
commit | 921bca346be4ee51631c806fe128d16eb5961f8b (patch) | |
tree | 8b6109d9e06ee70dbbcf9ac9bf33a63edeb66b99 /build | |
parent | 50071e19b465b05a88b4be42499d63124fb35efb (diff) |
Suppress -Wdangling-reference GCC 13 warning
Diffstat (limited to '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 30843f4..ceff16c 100644 --- a/build/root.build +++ b/build/root.build @@ -16,7 +16,12 @@ 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 |