aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-06-26 17:43:47 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2023-06-26 17:43:47 +0300
commit4e2fdcbabef3034d61509585ec0a2b5bf77a06a8 (patch)
tree52618e81701c279fab6ee2b912261419fca93270
parent345cef553589a961b60c6610ee73fdb2135e34ab (diff)
Suppress -Wdangling-reference GCC 13 warning
-rw-r--r--build/root.build5
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