Re: [U-Boot] [PATCH 1/1] efi_loader: fix building crt0 on arm

2018-02-02 Thread Andre Przywara
Hi Heinrich, On 31/01/18 18:45, Heinrich Schuchardt wrote: > Before the patch an undefined constant EFI_SUBSYSTEM was used in the > crt0 code. The current version of binutils does not swallow the error. Ah, indeed it was the switch to binutils 2.30 in my case that made the difference, not the GCC

[U-Boot] [PATCH 1/1] efi_loader: fix building crt0 on arm

2018-01-31 Thread Heinrich Schuchardt
Before the patch an undefined constant EFI_SUBSYSTEM was used in the crt0 code. The current version of binutils does not swallow the error. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=888403 The necessary constant IMAGE_SUBSYSTEM_EFI_APPLICATION is already defined in pe.h. So let's factor o