Re: [XEN PATCH v7 42/51] build: grab common EFI source files in arch specific dir

2021-10-21 Thread Jan Beulich
On 21.10.2021 15:54, Anthony PERARD wrote: > On Thu, Oct 21, 2021 at 01:24:27PM +0200, Jan Beulich wrote: >> On 21.10.2021 13:03, Anthony PERARD wrote: >>> On Mon, Oct 18, 2021 at 10:48:26AM +0200, Jan Beulich wrote: On 15.10.2021 18:29, Anthony PERARD wrote: > On Thu, Oct 14, 2021 at

Re: [XEN PATCH v7 42/51] build: grab common EFI source files in arch specific dir

2021-10-21 Thread Anthony PERARD
On Thu, Oct 21, 2021 at 01:24:27PM +0200, Jan Beulich wrote: > On 21.10.2021 13:03, Anthony PERARD wrote: > > On Mon, Oct 18, 2021 at 10:48:26AM +0200, Jan Beulich wrote: > >> On 15.10.2021 18:29, Anthony PERARD wrote: > >>> On Thu, Oct 14, 2021 at 10:51:44AM +0200, Jan Beulich wrote: > On

Re: [XEN PATCH v7 42/51] build: grab common EFI source files in arch specific dir

2021-10-21 Thread Jan Beulich
On 21.10.2021 13:03, Anthony PERARD wrote: > On Mon, Oct 18, 2021 at 10:48:26AM +0200, Jan Beulich wrote: >> On 15.10.2021 18:29, Anthony PERARD wrote: >>> On Thu, Oct 14, 2021 at 10:51:44AM +0200, Jan Beulich wrote: On 24.08.2021 12:50, Anthony PERARD wrote: > ---

Re: [XEN PATCH v7 42/51] build: grab common EFI source files in arch specific dir

2021-10-21 Thread Anthony PERARD
On Mon, Oct 18, 2021 at 10:48:26AM +0200, Jan Beulich wrote: > On 15.10.2021 18:29, Anthony PERARD wrote: > > On Thu, Oct 14, 2021 at 10:51:44AM +0200, Jan Beulich wrote: > >> On 24.08.2021 12:50, Anthony PERARD wrote: > >>> --- a/xen/arch/arm/efi/Makefile > >>> +++ b/xen/arch/arm/efi/Makefile >

Re: [XEN PATCH v7 42/51] build: grab common EFI source files in arch specific dir

2021-10-18 Thread Jan Beulich
On 15.10.2021 18:29, Anthony PERARD wrote: > On Thu, Oct 14, 2021 at 10:51:44AM +0200, Jan Beulich wrote: >> On 24.08.2021 12:50, Anthony PERARD wrote: >>> --- a/xen/arch/arm/efi/Makefile >>> +++ b/xen/arch/arm/efi/Makefile >>> @@ -1,4 +1,10 @@ >>> CFLAGS-y += -fshort-wchar >>> +CFLAGS-y +=

Re: [XEN PATCH v7 42/51] build: grab common EFI source files in arch specific dir

2021-10-15 Thread Anthony PERARD
On Thu, Oct 14, 2021 at 10:51:44AM +0200, Jan Beulich wrote: > On 24.08.2021 12:50, Anthony PERARD wrote: > > --- a/xen/arch/arm/efi/Makefile > > +++ b/xen/arch/arm/efi/Makefile > > @@ -1,4 +1,10 @@ > > CFLAGS-y += -fshort-wchar > > +CFLAGS-y += -I$(srctree)/common/efi > > Perhaps another

Re: [XEN PATCH v7 42/51] build: grab common EFI source files in arch specific dir

2021-10-14 Thread Jan Beulich
On 24.08.2021 12:50, Anthony PERARD wrote: > Rather than preparing the efi source file, we will copy them as needed > from the build location. > > Avoid the links as they seems fragile in out-of-tree builds. Also by > making a copy, we don't need to figure out the relative path or we > don't need

[XEN PATCH v7 42/51] build: grab common EFI source files in arch specific dir

2021-08-24 Thread Anthony PERARD
Rather than preparing the efi source file, we will copy them as needed from the build location. Avoid the links as they seems fragile in out-of-tree builds. Also by making a copy, we don't need to figure out the relative path or we don't need to use absolute path. Signed-off-by: Anthony PERARD