diff options
-rw-r--r-- | build/root.build | 3 | ||||
-rw-r--r-- | tests/build/root.build | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/build/root.build b/build/root.build index 3ee60eb..17e42b1 100644 --- a/build/root.build +++ b/build/root.build @@ -22,6 +22,9 @@ elif ($cxx.id == 'gcc') # cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object \ -Wno-stringop-overread + + 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 9c898e7..515e1c9 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 + + 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 |