Re: [Xen-devel] [PATCH for-4.8 1/3] libacpi: fix arm64 build

2016-10-18 Thread Wei Liu
On Tue, Oct 18, 2016 at 12:21:02PM +0100, Wei Liu wrote: [...] > > > --- > > > ARM64: fix libxl build, do not include ../../xen/include > > > > > > Do not include ../../xen/include/ to build libxl_arm_acpi.c: header > > > files clashing against default headers under /usr/include are present in > >

Re: [Xen-devel] [PATCH for-4.8 1/3] libacpi: fix arm64 build

2016-10-18 Thread Wei Liu
On Tue, Oct 18, 2016 at 08:52:24AM +0100, Steve Capper wrote: > On Mon, Oct 17, 2016 at 04:36:18PM -0700, Stefano Stabellini wrote: > > On Mon, 17 Oct 2016, Wei Liu wrote: > > > On Mon, Oct 17, 2016 at 03:57:06PM +0100, Steve Capper wrote: > > > > On Mon, Oct 17, 2016 at 11:47:00AM +0100, Wei Liu w

Re: [Xen-devel] [PATCH for-4.8 1/3] libacpi: fix arm64 build

2016-10-18 Thread Wei Liu
On Mon, Oct 17, 2016 at 04:36:18PM -0700, Stefano Stabellini wrote: > On Mon, 17 Oct 2016, Wei Liu wrote: > > On Mon, Oct 17, 2016 at 03:57:06PM +0100, Steve Capper wrote: > > > On Mon, Oct 17, 2016 at 11:47:00AM +0100, Wei Liu wrote: > > > > On Fri, Oct 14, 2016 at 06:02:30PM +0100, Wei Liu wrote:

Re: [Xen-devel] [PATCH for-4.8 1/3] libacpi: fix arm64 build

2016-10-18 Thread Steve Capper
On Mon, Oct 17, 2016 at 04:36:18PM -0700, Stefano Stabellini wrote: > On Mon, 17 Oct 2016, Wei Liu wrote: > > On Mon, Oct 17, 2016 at 03:57:06PM +0100, Steve Capper wrote: > > > On Mon, Oct 17, 2016 at 11:47:00AM +0100, Wei Liu wrote: > > > > On Fri, Oct 14, 2016 at 06:02:30PM +0100, Wei Liu wrote:

Re: [Xen-devel] [PATCH for-4.8 1/3] libacpi: fix arm64 build

2016-10-17 Thread Stefano Stabellini
On Mon, 17 Oct 2016, Wei Liu wrote: > On Mon, Oct 17, 2016 at 03:57:06PM +0100, Steve Capper wrote: > > On Mon, Oct 17, 2016 at 11:47:00AM +0100, Wei Liu wrote: > > > On Fri, Oct 14, 2016 at 06:02:30PM +0100, Wei Liu wrote: > > > > The arm64 build for libacpi was broken due to two reasons: > > > >

Re: [Xen-devel] [PATCH for-4.8 1/3] libacpi: fix arm64 build

2016-10-17 Thread Wei Liu
On Mon, Oct 17, 2016 at 03:57:06PM +0100, Steve Capper wrote: > On Mon, Oct 17, 2016 at 11:47:00AM +0100, Wei Liu wrote: > > On Fri, Oct 14, 2016 at 06:02:30PM +0100, Wei Liu wrote: > > > The arm64 build for libacpi was broken due to two reasons: > > > > > > 1. ACPI_BUILD_DIR was appended twice to

Re: [Xen-devel] [PATCH for-4.8 1/3] libacpi: fix arm64 build

2016-10-17 Thread Steve Capper
On Mon, Oct 17, 2016 at 11:47:00AM +0100, Wei Liu wrote: > On Fri, Oct 14, 2016 at 06:02:30PM +0100, Wei Liu wrote: > > The arm64 build for libacpi was broken due to two reasons: > > > > 1. ACPI_BUILD_DIR was appended twice to dsdt_anycpu_arm.c. > > 2. The inclusion of firmware/Rules.mk overrided

Re: [Xen-devel] [PATCH for-4.8 1/3] libacpi: fix arm64 build

2016-10-17 Thread Wei Liu
On Fri, Oct 14, 2016 at 06:02:30PM +0100, Wei Liu wrote: > The arm64 build for libacpi was broken due to two reasons: > > 1. ACPI_BUILD_DIR was appended twice to dsdt_anycpu_arm.c. > 2. The inclusion of firmware/Rules.mk overrided XEN_TARGET_ARCH, which >made CONFIG_ARM disappear. > > Fix tho

[Xen-devel] [PATCH for-4.8 1/3] libacpi: fix arm64 build

2016-10-14 Thread Wei Liu
The arm64 build for libacpi was broken due to two reasons: 1. ACPI_BUILD_DIR was appended twice to dsdt_anycpu_arm.c. 2. The inclusion of firmware/Rules.mk overrided XEN_TARGET_ARCH, which made CONFIG_ARM disappear. Fix those by: 1. Correctly generate full path for dsdt_anaycpu_arm.c. 2. Incl