From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrien Mazarguil Subject: Re: [PATCH] mk: disable ICC warning 188 Date: Tue, 3 Jan 2017 18:19:07 +0100 Message-ID: <20170103171907.GD12822@6wind.com> References: <20170103161542.27303-1-ferruh.yigit@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, Thomas Monjalon To: Ferruh Yigit Return-path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id 9E3B14A63 for ; Tue, 3 Jan 2017 18:19:14 +0100 (CET) Received: by mail-wm0-f44.google.com with SMTP id t79so435100065wmt.0 for ; Tue, 03 Jan 2017 09:19:14 -0800 (PST) Content-Disposition: inline In-Reply-To: <20170103161542.27303-1-ferruh.yigit@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, Jan 03, 2017 at 04:15:42PM +0000, Ferruh Yigit wrote: > error #188: enumerated type mixed with another type > > This is get when an integer assigned to an enum variable. > > Since this usage is common and causing many ICC compilation errors, and > other compilers accept this usage. Disabling the warning. > > Signed-off-by: Ferruh Yigit > --- > mk/toolchain/icc/rte.vars.mk | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/mk/toolchain/icc/rte.vars.mk b/mk/toolchain/icc/rte.vars.mk > index ba69f1f..86d9ef7 100644 > --- a/mk/toolchain/icc/rte.vars.mk > +++ b/mk/toolchain/icc/rte.vars.mk > @@ -71,6 +71,7 @@ TOOLCHAIN_ASFLAGS = > # was declared "deprecated" > WERROR_FLAGS := -Wall -w2 -diag-disable 271 -diag-warning 1478 > WERROR_FLAGS += -diag-disable 13368 -diag-disable 15527 > +WERROR_FLAGS += -diag-disable 188 > > ifeq ($(RTE_DEVEL_BUILD),y) > WERROR_FLAGS += -Werror-all > -- > 2.9.3 I also think this warning may be useful but is not worth the trouble in many cases, thus: Acked-by: Adrien Mazarguil -- Adrien Mazarguil 6WIND