Disable -Wstringop-overflow for GCC in gbmcweb PiperOrigin-RevId: 978253371 Change-Id: Ibf9cf3beee61652fe0a4875a69b231eac7e7e64e
diff --git a/meson.build b/meson.build index efcbcaf..9ee60cb 100644 --- a/meson.build +++ b/meson.build
@@ -232,6 +232,12 @@ '-Wunused-parameter', '-Wdouble-promotion', '-Wno-psabi', + '-Wno-stringop-overflow', + ]), + language:'cpp') + add_project_link_arguments( + cxx.get_supported_link_arguments([ + '-Wno-stringop-overflow', ]), language:'cpp') endif