From patchwork Tue Apr 11 16:52:08 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 23572 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 4C67DD1BC; Tue, 11 Apr 2017 18:52:17 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 6469AD08E for ; Tue, 11 Apr 2017 18:52:15 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Apr 2017 09:52:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,186,1488873600"; d="scan'208";a="954833430" Received: from sivswdev02.ir.intel.com ([10.237.217.46]) by orsmga003.jf.intel.com with ESMTP; 11 Apr 2017 09:52:10 -0700 From: Ferruh Yigit To: Jerin Jacob , Thomas Monjalon Cc: dev@dpdk.org, Ferruh Yigit Date: Tue, 11 Apr 2017 17:52:08 +0100 Message-Id: <20170411165208.11953-1-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.8.4 Subject: [dpdk-dev] [PATCH] mk: increase unsupported icc version for thunderx X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- mk/toolchain/icc/rte.toolchain-compat.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk/toolchain/icc/rte.toolchain-compat.mk b/mk/toolchain/icc/rte.toolchain-compat.mk index 73770f7..88f1ac9 100644 --- a/mk/toolchain/icc/rte.toolchain-compat.mk +++ b/mk/toolchain/icc/rte.toolchain-compat.mk @@ -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