From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 4A19E2BE2 for ; Thu, 24 Mar 2016 11:52:15 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP; 24 Mar 2016 03:52:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,385,1455004800"; d="scan'208";a="770548390" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by orsmga003.jf.intel.com with ESMTP; 24 Mar 2016 03:52:01 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.13]) by IRSMSX106.ger.corp.intel.com ([169.254.8.172]) with mapi id 14.03.0248.002; Thu, 24 Mar 2016 10:50:11 +0000 From: "De Lara Guarch, Pablo" To: Thomas Monjalon , "Richardson, Bruce" CC: "dev@dpdk.org" Thread-Topic: arch check in example dpdk_qat Thread-Index: AQHRhPQJgUegAD4wskCY7lQfmq0XzZ9oahGA Date: Thu, 24 Mar 2016 10:50:11 +0000 Message-ID: References: <3286701.A42TaaeMmo@xps13> In-Reply-To: <3286701.A42TaaeMmo@xps13> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiODQ2OTA1YzctM2FlMy00Mzc5LWJlOTktNDgzMDFjZGZkZWFmIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IjVtVDVVUHUrSFVpeXhMUU5VYUYwK1V6eWZtbUlYMjVONGdsYWhIMG5ybFU9In0= x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] arch check in example dpdk_qat X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2016 10:52:15 -0000 Hi Thomas, > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > Sent: Wednesday, March 23, 2016 11:04 AM > To: Richardson, Bruce; De Lara Guarch, Pablo > Cc: dev@dpdk.org > Subject: arch check in example dpdk_qat >=20 > When reading examples/dpdk_qat/Makefile, we can see this check: >=20 > ifneq ($(CONFIG_RTE_ARCH),"x86_64") > ifneq ($(LBITS),i686) > $(error The RTE_TARGET chosen is not compatible with this environ= ment > \ > (x86_64), for this application. Please change the definition of t= he \ > RTE_TARGET environment variable, or run the application on a 32-b= it > OS) > endif > endif >=20 > 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-bi= t target was i686, and the app needs the QAT driver to be running in 32 bits, if DPDK target i= s 32-bit. Thanks, Pablo