diff options
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 d86f7be..3dbc0cf 100644 --- a/build/root.build +++ b/build/root.build @@ -19,7 +19,12 @@ cxx{*}: extension = cxx cxx.coptions += -Wno-unknown-pragmas if ($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 |