From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 843851E20 for ; Thu, 6 Apr 2017 15:05:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1491483926; x=1523019926; h=subject:to:references:cc:from:message-id:date: mime-version:in-reply-to:content-transfer-encoding; bh=T2J75obK1ipIuCHMPclE58bCgsesrvqEzaVUNPdaqQM=; b=jySlGnF4eSfGXvaNuCr+XJKyeBMic66U92QmAJwh6flAZdyhc6xn0fj1 Uyy/4cXthoVTAr+c6k2S3pD4BGCI6g==; Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Apr 2017 06:05:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,159,1488873600"; d="scan'208";a="842673170" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.122]) ([10.237.220.122]) by FMSMGA003.fm.intel.com with ESMTP; 06 Apr 2017 06:05:23 -0700 To: Jerin Jacob , Bruce Richardson , Harry van Haaren , Thomas Monjalon References: <20170406121428.16883-1-ferruh.yigit@intel.com> Cc: dev@dpdk.org From: Ferruh Yigit Message-ID: <0bf3e97e-0c86-c479-989d-1406fceac06d@intel.com> Date: Thu, 6 Apr 2017 14:05:23 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170406121428.16883-1-ferruh.yigit@intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 1/3] net/thunderx: disable pmd for gcc < 4.7 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: , X-List-Received-Date: Thu, 06 Apr 2017 13:05:27 -0000 On 4/6/2017 1:14 PM, Ferruh Yigit wrote: > PMD uses some compiler builtins and new compiler options. Tested with > gcc 4.5.1 and following were not supported: > > option: > -Ofast > > macros: > _Static_assert > > __ORDER_LITTLE_ENDIAN__ > __ORDER_BIG_ENDIAN__ > __BYTE_ORDER__ > > __atomic_fetch_add > __ATOMIC_ACQUIRE > __atomic_load_n > __ATOMIC_RELAXED > __atomic_store_n > __ATOMIC_RELEASE > > It is not easy to fix all in PMD, disabling PMD for gcc version < 4.7 > > Signed-off-by: Ferruh Yigit Need to update patch to cover icc 14.0, will send a v2 soon.