From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com
 [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id B3208CFC6
 for <dev@dpdk.org>; Mon, 16 Apr 2018 19:31:42 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 4E2D72100E;
 Mon, 16 Apr 2018 13:31:42 -0400 (EDT)
Received: from mailfrontend1 ([10.202.2.162])
 by compute1.internal (MEProxy); Mon, 16 Apr 2018 13:31:42 -0400
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:content-transfer-encoding:content-type:date:from:in-reply-to
 :message-id:mime-version:references:subject:to:x-me-sender
 :x-me-sender:x-sasl-enc; s=mesmtp; bh=qdIf1rxV7BmMdfjfcYWMFqb/mC
 3uND3TGPJM9/MUg7g=; b=U6prLzT+OMWxMM+pDwf0FaVgWFTeBfHVMpfHmR5q8s
 LiHCBJpAs9tlpqJsJqa8a5xMhkYoQcOFvOVf5lizWfERuonYa1Kws/p2jGtt2bzc
 bE9cbJyMYVZ7D8CvlrKyrlE297vgNWg0fdGTzE/wlrN1GlKMLUPCpndwn/80kSWR
 I=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:content-transfer-encoding:content-type
 :date:from:in-reply-to:message-id:mime-version:references
 :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=qdIf1r
 xV7BmMdfjfcYWMFqb/mC3uND3TGPJM9/MUg7g=; b=G/Bpm96pbFg3XKksgKDg9d
 5HcX7GvIaa7Y4zaE1JEwJHMOTb0awvmfqptJvusj1/oiI4Tdghx+wGNcr/hLxhgx
 uSgtxVG3DG8KwIp6iSJ8A5a1E3u30987v2ZoDZr61l0aNf8lUn7qI6LwYBwoxXep
 TTwXNe46pgl5RxhKFtX0RKrKv2AOqGi/+zjjFW6oJhKCD11T5YQCPGQPu4z9lPKV
 b3eK3H9Dai87PZJkKGFPlWGzHWVQ9natjrBf+/7tSUyUpy4hDAWuqHke6Z2Dschs
 E29XtgGGpqF4iSAvxwsOM4jt57NuoMlj5OeIpw+P1QiO9NvQdWj1CSNB2ktw+oAA
 ==
X-ME-Sender: <xms:_t3UWp32sdIiRxHzPgWa_gRqGr_nBnHp-O9emHlkAmPApzHrjSFwJw>
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 79BA3E49AD;
 Mon, 16 Apr 2018 13:31:41 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: Ferruh Yigit <ferruh.yigit@intel.com>
Cc: dev@dpdk.org, Andrew Rybchenko <arybchenko@solarflare.com>,
 Bruce Richardson <bruce.richardson@intel.com>
Date: Mon, 16 Apr 2018 19:31:39 +0200
Message-ID: <1599803.tPL9PP2gsc@xps>
In-Reply-To: <20180416170930.56225-1-ferruh.yigit@intel.com>
References: <20180416170930.56225-1-ferruh.yigit@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="UTF-8"
Subject: Re: [dpdk-dev] [PATCH] net/sfc: fix meson build warning with gcc
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Apr 2018 17:31:42 -0000

16/04/2018 19:09, Ferruh Yigit:
> icc flag is causing build error with gcc, build error:
> cc1: warning: unrecognized gcc debugging option: i
> cc1: warning: unrecognized gcc debugging option: g
> cc1: warning: unrecognized gcc debugging option: -
> cc1: warning: unrecognized gcc debugging option: d
> cc1: warning: unrecognized gcc debugging option: i
> cc1: warning: unrecognized gcc debugging option: s
> cc1: warning: unrecognized gcc debugging option: b
> cc1: warning: unrecognized gcc debugging option: l
> cc1: warning: unrecognized gcc debugging option: e
> cc1: warning: unrecognized gcc debugging option:
> cc1: warning: unrecognized gcc debugging option: 3
> cc1: warning: unrecognized gcc debugging option: 6
> cc1: warning: unrecognized gcc debugging option: 5
> cc1: warning: unrecognized gcc debugging option: 6
> cc1: warning: unrecognized command line option
> =E2=80=98-Wno-address-of-packed-member=E2=80=99
>=20
> Removing icc flag completely since it is not supported right now.
>=20
> Fixes: f16d0b36f816 ("drivers/net: fix icc deprecated parameter warning")
>=20
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied, thanks