From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH] librte_hash: Fix compile errors on IBM POWER Date: Tue, 8 Dec 2015 14:40:33 +0530 Message-ID: <20151208091032.GA25103@localhost.localdomain> References: <1449563332-1536-1-git-send-email-chaozhu@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org To: Chao Zhu Return-path: Received: from na01-bn1-obe.outbound.protection.outlook.com (mail-bn1bon0071.outbound.protection.outlook.com [157.56.111.71]) by dpdk.org (Postfix) with ESMTP id BB2923784 for ; Tue, 8 Dec 2015 10:10:59 +0100 (CET) Content-Disposition: inline In-Reply-To: <1449563332-1536-1-git-send-email-chaozhu@linux.vnet.ibm.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, Dec 08, 2015 at 04:28:52PM +0800, Chao Zhu wrote: > This patch fixes the compile errors caused by lacking of "size_t" definition in rte_hash.h. > > Signed-off-by: Chao Zhu > --- > lib/librte_hash/rte_hash.h | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/lib/librte_hash/rte_hash.h b/lib/librte_hash/rte_hash.h > index 6494ade..5046e9b 100644 > --- a/lib/librte_hash/rte_hash.h > +++ b/lib/librte_hash/rte_hash.h > @@ -41,6 +41,7 @@ > */ > > #include > +#include Thanks for the patch. The Same issue comes with arm64 GCC 5.2 compiler too. Shouldn't be stddef.h instead of stdio.h? > > #ifdef __cplusplus > extern "C" { > -- > 1.7.1 >