]> git.droids-corp.org - dpdk.git/commitdiff
mk: disable icc warning 188
authorFerruh Yigit <ferruh.yigit@intel.com>
Tue, 3 Jan 2017 16:15:42 +0000 (16:15 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 4 Jan 2017 19:55:04 +0000 (20:55 +0100)
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 <ferruh.yigit@intel.com>
Acked-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
mk/toolchain/icc/rte.vars.mk

index ba69f1f86c21b71722fbfe95a4949afb04b17aaa..86d9ef794806ec2d324921303fd17705417ea32c 100644 (file)
@@ -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