diff options
author | Michael Brown <mcb30@ipxe.org> | 2017-07-28 15:40:44 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2017-07-28 15:46:06 +0100 |
commit | 8866c919f86ad2f00ff63192fa23cd19f749f90f (patch) | |
tree | 3711512fdbbe335734bb6335caa0a4acfc8003d1 /src/arch | |
parent | 1a7746603bca1022b63c406c9459525312a2b2b6 (diff) | |
download | ipxe-8866c919f86ad2f00ff63192fa23cd19f749f90f.tar.gz |
[build] Fix ARM32 EFI builds with current EDK2 headers
EDK2 commit 6440385 ("MdePkg/Include: Add enumeration size checks to
Base.h") enforced the UEFI specification mandate that enums should
always be 32 bits. This revealed a latent bug in iPXE, which does not
build with -fno-short-enums.
Fix by adding -fno-short-enums to CFLAGS for ARM32 EFI builds.
Reported-by: Benjamin S. Allen <bsallen@alcf.anl.gov>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/arm32/Makefile.efi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/arm32/Makefile.efi b/src/arch/arm32/Makefile.efi index a06354f1d..e139a055a 100644 --- a/src/arch/arm32/Makefile.efi +++ b/src/arch/arm32/Makefile.efi @@ -1,5 +1,9 @@ # -*- makefile -*- : Force emacs to use Makefile mode +# UEFI requires that enums are always 32 bits +# +CFLAGS += -fno-short-enums + # Specify EFI image builder # ELF2EFI = $(ELF2EFI32) |