From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id D4F577CBD for ; Fri, 27 Apr 2018 11:16:56 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 77D7421990; Fri, 27 Apr 2018 05:16:56 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Fri, 27 Apr 2018 05:16:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=/MilFu8QqEOCu1sSLq0P5mBMCm fHiSto+B9WfOdtbcs=; b=aBhxpgu1GqBEWDgSITaE/7vdrCJQgOKcKJLVOZ++3L fLIK6O7Mnjts196pE4uaXZdV760gO4gRdh+I7icYbIbY4z48IEPWXAeQuJAHWkqi HN1jIgMvxR3s1mPoRYTDl/w4ArPCbu1iXvMaZk0HVDPw+p47rY4qIB8wtEyn8sK4 0= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=/MilFu 8QqEOCu1sSLq0P5mBMCmfHiSto+B9WfOdtbcs=; b=ZmEALnE4G9T6GGhsQ8KpX5 VCXdMy4ROuoe4Zb3ON0mu+uQna4W9QYjatlCBCkCn9knJfO6oNM8C01gA0PJmDst vf5FjEgFk/0zwWyYR7pCPtQXf0puUppAyr7tSMyJEp4A0viNQrQbzFiW4kk/o2tf z3tejvo8KB99ZYXW53K26cEqyQDxwqSX3NcRfVC9v4VcgzWVLYivSVRaisar8RSF Y8m7vwQRLWN4ka11dW7sam1l8tzcmUmWdI22Hv4BKWDu715a+eAF7e33Ll+7ZQm7 k5rrjYOXgVZuSLVtOuIt0t/5vMiUeYoofB6+Ti0v2PVPswKC+ABmeiQGTSKOwXaw == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id D53CFE509B; Fri, 27 Apr 2018 05:16:55 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Cc: Maxime Coquelin Date: Fri, 27 Apr 2018 11:16:54 +0200 Message-ID: <5982602.9mB6xopsiu@xps> In-Reply-To: References: <20180427024342.24054-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH 0/2] fix compilation on FreeBSD 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: Fri, 27 Apr 2018 09:16:57 -0000 27/04/2018 11:03, Maxime Coquelin: > > 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 Applied