X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=mk%2Ftoolchain%2Ficc%2Frte.vars.mk;h=ba69f1f86c21b71722fbfe95a4949afb04b17aaa;hb=d911c94d25277cc16d87b1b4bb3771a7545c647d;hp=e39d710ada00ab0307bbdf61aca484b4611f69e7;hpb=8acbad88c4fa8c1ecd9ba01c8895159990429622;p=dpdk.git diff --git a/mk/toolchain/icc/rte.vars.mk b/mk/toolchain/icc/rte.vars.mk index e39d710ada..ba69f1f86c 100644 --- a/mk/toolchain/icc/rte.vars.mk +++ b/mk/toolchain/icc/rte.vars.mk @@ -69,13 +69,17 @@ TOOLCHAIN_ASFLAGS = # error #13368: loop was not vectorized with "vector always assert" # error #15527: loop was not vectorized: function call to fprintf cannot be vectorize # was declared "deprecated" -WERROR_FLAGS := -Wall -Werror-all -w2 -diag-disable 271 -diag-warning 1478 +WERROR_FLAGS := -Wall -w2 -diag-disable 271 -diag-warning 1478 WERROR_FLAGS += -diag-disable 13368 -diag-disable 15527 +ifeq ($(RTE_DEVEL_BUILD),y) +WERROR_FLAGS += -Werror-all +endif + # process cpu flags include $(RTE_SDK)/mk/toolchain/$(RTE_TOOLCHAIN)/rte.toolchain-compat.mk -# disable max-inline params boundaries for ICC 15 compiler -ifeq ($(shell test $(ICC_MAJOR_VERSION) -eq 15 && echo 1), 1) +# disable max-inline params boundaries for ICC compiler for version 15 and greater +ifeq ($(shell test $(ICC_MAJOR_VERSION) -ge 14 && echo 1), 1) TOOLCHAIN_CFLAGS += -no-inline-max-size -no-inline-max-total-size endif