diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-07-07 08:30:15 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-07-07 08:30:15 +0200 |
commit | c4c21166951b6da7418f85408ea1bfd11e662ebb (patch) | |
tree | 6617502a2044f6a69a2419a118ac49bed0bb8afc /build | |
parent | 4cebad3859f8cc4fe526a89ef2277d1db9ee9b7c (diff) |
Disable GCC -Wstringop-overread (false positives in GCC 11, bug 101361)
Diffstat (limited to 'build')
-rw-r--r-- | build/root.build | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/build/root.build b/build/root.build index f0624d2..e867421 100644 --- a/build/root.build +++ b/build/root.build @@ -17,10 +17,11 @@ if ($cxx.class == 'msvc') cxx.coptions += /wd4251 /wd4275 /wd4800 elif ($cxx.id == 'gcc') { - # See GCC bugs 100115 and 98753 (attachment 50081/comment 15). Note that - # these must also be disabled in projects that use libbutl. + # See GCC bugs 100115, 98753 (attachment 50081/comment 15), and 101361. Note + # that these must also be disabled in projects that use libbutl. # - cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object + cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object \ +-Wno-stringop-overread } # Load the cli module but only if it's available. This way a distribution |