From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hemant Agrawal Subject: Re: [PATCH v3 1/2] build: add support for ARM builds Date: Fri, 19 Jan 2018 16:49:04 +0000 Message-ID: References: <20171219105338.198727-1-bruce.richardson@intel.com> <20180119135251.10171-1-pbhagavatula@caviumnetworks.com> <20180119162422.GB16980@bricha3-MOBL3.ger.corp.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Cc: "jerin.jacob@caviumnetworks.com" , "harry.van.haaren@intel.com" , "herbert.guan@arm.com" , "dev@dpdk.org" , Shreyansh Jain , Akhil Goyal To: Bruce Richardson , Pavan Nikhilesh Return-path: Received: from EUR01-HE1-obe.outbound.protection.outlook.com (mail-he1eur01on0062.outbound.protection.outlook.com [104.47.0.62]) by dpdk.org (Postfix) with ESMTP id 5EA1F1B314 for ; Fri, 19 Jan 2018 17:49:08 +0100 (CET) In-Reply-To: <20180119162422.GB16980@bricha3-MOBL3.ger.corp.intel.com> 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" HI Bruce, Are these planned for 18.02? If so, I will prioritize this work. Regards, Hemant > -----Original Message----- > From: Bruce Richardson [mailto:bruce.richardson@intel.com] > Sent: Friday, January 19, 2018 9:54 PM > To: Pavan Nikhilesh > Cc: jerin.jacob@caviumnetworks.com; harry.van.haaren@intel.com; > herbert.guan@arm.com; dev@dpdk.org; Hemant Agrawal > ; Shreyansh Jain > Subject: Re: [dpdk-dev] [PATCH v3 1/2] build: add support for ARM builds > Importance: High >=20 > On Fri, Jan 19, 2018 at 07:22:50PM +0530, Pavan Nikhilesh wrote: > > From: Bruce Richardson > > > > Add files to enable compiling for ARM cross builds. > > This can be tested by doing a cross-compile for armv8-a type using the > > linaro gcc toolchain. > > > > meson arm-build --cross-file aarch64_cross.txt > > ninja -C arm-build > > > > where aarch64_cross.txt contained the following > > > > [binaries] > > c =3D 'aarch64-linux-gnu-gcc' > > cpp =3D 'aarch64-linux-gnu-cpp' > > ar =3D 'aarch64-linux-gnu-ar' > > > > [host_machine] > > system =3D 'linux' > > cpu_family =3D 'aarch64' > > cpu =3D 'armv8-a' > > endian =3D 'little' > > > > Signed-off-by: Bruce Richardson > > Signed-off-by: Pavan Nikhilesh > > --- > > v3 Changes: > > - Fix missing SPDX license tags > > > > v2 Changes: > > - Merged RFC patch. > > - Added framework to easily other vendor specific flags > > - renamed machine_arg to machine_args > > > Set LGTM, but it would be nice to get an ACK or review from another ARM > expert. Any volunteers? >=20 > /Bruce