From: Leif Lindholm Date: Wed, 24 Sep 2014 21:07:53 +0000 (+0000) Subject: BaseTools: Actually plug in BaseTools build on AArch64 X-Git-Tag: edk2-stable201903~10833 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=e0ba625fc641314438a9a46079b52a4a30d8679e BaseTools: Actually plug in BaseTools build on AArch64 Support for building BaseTools on AArch64 is available in the tree, but not currently "plugged in". This patch adds the required snippet. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Leif Lindholm Reviewed-by: Olivier Martin git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16169 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/BaseTools/Source/C/Makefiles/header.makefile b/BaseTools/Source/C/Makefiles/header.makefile index 54d3c78f97..6a759d94c7 100644 --- a/BaseTools/Source/C/Makefiles/header.makefile +++ b/BaseTools/Source/C/Makefiles/header.makefile @@ -39,6 +39,10 @@ ifeq ($(ARCH), ARM) ARCH_INCLUDE = -I $(MAKEROOT)/Include/Arm/ endif +ifeq ($(ARCH), AARCH64) +ARCH_INCLUDE = -I $(MAKEROOT)/Include/AArch64/ +endif + INCLUDE = $(TOOL_INCLUDE) -I $(MAKEROOT) -I $(MAKEROOT)/Include/Common -I $(MAKEROOT)/Include/ -I $(MAKEROOT)/Include/IndustryStandard -I $(MAKEROOT)/Common/ -I .. -I . $(ARCH_INCLUDE) CPPFLAGS = $(INCLUDE) ifeq ($(DARWIN),Darwin)