From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxime Coquelin Subject: Re: [PATCH 0/2] fix compilation on FreeBSD Date: Fri, 27 Apr 2018 11:03:01 +0200 Message-ID: References: <20180427024342.24054-1-thomas@monjalon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit To: Thomas Monjalon , dev@dpdk.org Return-path: Received: from mx1.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by dpdk.org (Postfix) with ESMTP id 3A60349DF for ; Fri, 27 Apr 2018 11:03:04 +0200 (CEST) In-Reply-To: <20180427024342.24054-1-thomas@monjalon.net> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 04/27/2018 04:43 AM, Thomas Monjalon wrote: > The compilation was broken on FreeBSD due to the commit > for auxv, implemented only for Linux in the common files. > > Thomas Monjalon (2): > eal: fix build with glibc < 2.16 > eal: fix build on FreeBSD > > lib/librte_eal/bsdapp/eal/Makefile | 1 + > lib/librte_eal/bsdapp/eal/eal_cpuflags.c | 21 ++++++ > lib/librte_eal/bsdapp/eal/meson.build | 1 + > lib/librte_eal/common/eal_common_cpuflags.c | 79 ---------------------- > lib/librte_eal/linuxapp/eal/Makefile | 1 + > .../eal/eal_cpuflags.c} | 49 +------------- > lib/librte_eal/linuxapp/eal/meson.build | 1 + > 7 files changed, 27 insertions(+), 126 deletions(-) > create mode 100644 lib/librte_eal/bsdapp/eal/eal_cpuflags.c > copy lib/librte_eal/{common/eal_common_cpuflags.c => linuxapp/eal/eal_cpuflags.c} (60%) > For the series: Acked-by: Maxime Coquelin Maxime