aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-06-26 19:21:04 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2023-06-26 19:21:04 +0300
commit9f3211df466b885314258463518e4698fb916112 (patch)
treef8d3945e8927602218ec0e86c075f376dd497ea7
parent23ca8a23d8d21fce2191fee11c01b606b8780453 (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 1905f59..3b1fd9a 100644
--- a/build/root.build
+++ b/build/root.build
@@ -21,7 +21,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