diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-26 17:43:47 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-26 17:43:47 +0300 |
commit | 4e2fdcbabef3034d61509585ec0a2b5bf77a06a8 (patch) | |
tree | 52618e81701c279fab6ee2b912261419fca93270 /build/root.build | |
parent | 345cef553589a961b60c6610ee73fdb2135e34ab (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 f0aba61..4a3a866 100644 --- a/build/root.build +++ b/build/root.build @@ -16,8 +16,13 @@ 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 \ -Wno-stringop-overread # 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 |