[dpdk-dev] [RFC 1/2] meson: gcc 10 disable stringop-overflow warnings
Kevin Traynor
ktraynor at redhat.com
Wed Mar 25 15:11:36 CET 2020
Disable this warning at the top level as it is being
raised on several components.
Bugzilla ID: 421
Signed-off-by: Kevin Traynor <ktraynor at redhat.com>
---
config/meson.build | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/config/meson.build b/config/meson.build
index abedd76f2..522368a29 100644
--- a/config/meson.build
+++ b/config/meson.build
@@ -200,5 +200,6 @@ warning_flags = [
'-Wno-address-of-packed-member',
'-Wno-packed-not-aligned',
- '-Wno-missing-field-initializers'
+ '-Wno-missing-field-initializers',
+ '-Wno-stringop-overflow'
]
if not dpdk_conf.get('RTE_ARCH_64')
--
2.21.1
More information about the dev
mailing list