mk: increase unsupported icc version for thunderx

Increase unsupported ICC version for thunderx PMD to <= 16

Build error reported:
http://dpdk.org/ml/archives/dev/2017-April/063647.html

Fixes: 0b9ce550c4f6 ("net/thunderx: disable PMD for old compilers")

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
Ferruh Yigit 2017-04-11 17:52:08 +01:00 committed by Thomas Monjalon
parent 84ad6e4491
commit 00130dbc20

View File

@ -73,8 +73,8 @@ else
MACHINE_CFLAGS := $(patsubst -march=%,-xSSE3,$(MACHINE_CFLAGS))
endif
# Disable thunderx PMD for icc <= 14.0
ifeq ($(shell test $(ICC_MAJOR_VERSION) -le 14 && echo 1), 1)
# Disable thunderx PMD for icc <= 16.0
ifeq ($(shell test $(ICC_MAJOR_VERSION) -le 16 && echo 1), 1)
CONFIG_RTE_LIBRTE_THUNDERX_NICVF_PMD=d
endif
endif