From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH 1/3] net/thunderx: disable pmd for gcc < 4.7 Date: Thu, 6 Apr 2017 19:30:44 +0530 Message-ID: <20170406140043.GA1363@jerin> References: <20170406121428.16883-1-ferruh.yigit@intel.com> <41431253.GzYhVxOKU2@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Ferruh Yigit , Bruce Richardson , Harry van Haaren , dev@dpdk.org To: Thomas Monjalon Return-path: Received: from NAM02-CY1-obe.outbound.protection.outlook.com (mail-cys01nam02on0077.outbound.protection.outlook.com [104.47.37.77]) by dpdk.org (Postfix) with ESMTP id E8424282 for ; Thu, 6 Apr 2017 16:01:00 +0200 (CEST) Content-Disposition: inline In-Reply-To: <41431253.GzYhVxOKU2@xps13> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > Date: Thu, 06 Apr 2017 15:52:40 +0200 > From: Thomas Monjalon > To: Ferruh Yigit , Jerin Jacob > > Cc: Bruce Richardson , Harry van Haaren > , dev@dpdk.org > Subject: Re: [PATCH 1/3] net/thunderx: disable pmd for gcc < 4.7 > User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) > > 2017-04-06 13:14, Ferruh Yigit: > > 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__ > > These ones should not be used as we have rte_byteorder.h. Sure. I will change to use rte_byteorder.h > > Please Jerin, could you use it?