aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-06-26 16:37:29 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2023-06-26 16:37:29 +0300
commit6cf443067daf6d81d8a35bf73727485eb90046e7 (patch)
tree03b31d17dec290e5f67de718bdab0babb8702d7b
parent4d97cefc7b829d40319ef825db487d16f8b06bd9 (diff)
Suppress -Wdangling-reference GCC 13 warning
-rw-r--r--build/root.build5
-rw-r--r--tests/build/root.build5
2 files changed, 10 insertions, 0 deletions
diff --git a/build/root.build b/build/root.build
index 70d4d84..ffc1a0f 100644
--- a/build/root.build
+++ b/build/root.build
@@ -22,8 +22,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
diff --git a/tests/build/root.build b/tests/build/root.build
index e04784d..712e73c 100644
--- a/tests/build/root.build
+++ b/tests/build/root.build
@@ -14,8 +14,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