From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: arch check in example dpdk_qat Date: Thu, 24 Mar 2016 14:16:30 +0100 Message-ID: <5066636.22jD4vx1yD@xps13> References: <3286701.A42TaaeMmo@xps13> <45589310.A2cUW16xOY@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: "Richardson, Bruce" , dev@dpdk.org To: "De Lara Guarch, Pablo" Return-path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id 5C8DF2BD7 for ; Thu, 24 Mar 2016 14:18:15 +0100 (CET) Received: by mail-wm0-f48.google.com with SMTP id l68so274066073wml.0 for ; Thu, 24 Mar 2016 06:18:15 -0700 (PDT) In-Reply-To: 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" 2016-03-24 11:58, De Lara Guarch, Pablo: > > > -----Original Message----- > > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > > Sent: Thursday, March 24, 2016 11:01 AM > > To: De Lara Guarch, Pablo > > Cc: Richardson, Bruce; dev@dpdk.org > > Subject: Re: arch check in example dpdk_qat > > > > 2016-03-24 10:50, De Lara Guarch, Pablo: > > > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > > > > When reading examples/dpdk_qat/Makefile, we can see this check: > > > > > > > > ifneq ($(CONFIG_RTE_ARCH),"x86_64") > > > > ifneq ($(LBITS),i686) > > > > $(error The RTE_TARGET chosen is not compatible with this > > environment > > > > \ > > > > (x86_64), for this application. Please change the definition of the \ > > > > RTE_TARGET environment variable, or run the application on a 32-bit > > > > OS) > > > > endif > > > > endif > > > > > > > > Is it on purpose to limit the 32-bit support to i686 only? > > > > Instead of the message "run the application on a 32-bit OS", should it be > > > > "on an i686 OS"? > > > > > > i686 OS looks fine to me. Basically, when this app was made, the only 32-bit > > target was i686, > > > > What about i386, i486, i586 builds ? > > We only support i686, no other 32-bit architectures. So we need a small patch :)