From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 79C2AC43331 for ; Wed, 25 Mar 2020 14:13:13 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 331B120775 for ; Wed, 25 Mar 2020 14:13:13 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="gMu3M1/5" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 331B120775 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 938744C8E; Wed, 25 Mar 2020 15:13:05 +0100 (CET) Received: from us-smtp-delivery-74.mimecast.com (us-smtp-delivery-74.mimecast.com [216.205.24.74]) by dpdk.org (Postfix) with ESMTP id DFFBD2BAE for ; Wed, 25 Mar 2020 15:13:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1585145581; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ItVgccSLYqY3XEMSIfuWz0AlDmeZKStq/2PGhU5l3PY=; b=gMu3M1/5ETNwftrRt7xqUxcpJ1vPZ9TfqLkHifL7bfCqy0TeKXwExVHsiupUgrSdHkHSvh LM1boRkObO3mgwmIdKP+O2kdVkqFL9DG8x2dgdp9Hm59BWCJMiYwVBxd6qyra6rPoO+PgJ v4nrrjl9UdwvlnUyL6IUQqBJdBOrifA= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-309-iqnzIDSWNgKzIOUqJzdzhA-1; Wed, 25 Mar 2020 10:12:57 -0400 X-MC-Unique: iqnzIDSWNgKzIOUqJzdzhA-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 86153107ACC4; Wed, 25 Mar 2020 14:12:54 +0000 (UTC) Received: from rh.redhat.com (unknown [10.33.36.50]) by smtp.corp.redhat.com (Postfix) with ESMTP id B21C85C1B0; Wed, 25 Mar 2020 14:12:41 +0000 (UTC) From: Kevin Traynor To: dev@dpdk.org, thomas@monjalon.net, bruce.richardson@intel.com Cc: ravi1.kumar@amd.com, g.singh@nxp.com, hemant.agrawal@nxp.com, akhil.goyal@nxp.com, johndale@cisco.com, hyonkim@cisco.com, jingjing.wu@intel.com, wenzhuo.lu@intel.com, rmody@marvell.com, shshaikh@marvell.com, matan@mellanox.com, shahafs@mellanox.com, declan.doherty@intel.com, cristian.dumitrescu@intel.com, Kevin Traynor Date: Wed, 25 Mar 2020 14:11:36 +0000 Message-Id: <20200325141137.7088-2-ktraynor@redhat.com> In-Reply-To: <20200325141137.7088-1-ktraynor@redhat.com> References: <20200325141137.7088-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [RFC 1/2] meson: gcc 10 disable stringop-overflow warnings X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Disable this warning at the top level as it is being raised on several components. Bugzilla ID: 421 Signed-off-by: Kevin Traynor --- 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 =3D [ =09'-Wno-address-of-packed-member', =09'-Wno-packed-not-aligned', -=09'-Wno-missing-field-initializers' +=09'-Wno-missing-field-initializers', +=09'-Wno-stringop-overflow' ] if not dpdk_conf.get('RTE_ARCH_64') --=20 2.21.1