diff options
author | Leif Lindholm <leif.lindholm@linaro.org> | 2014-09-24 21:07:53 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-09-24 21:07:53 +0000 |
commit | e0ba625fc641314438a9a46079b52a4a30d8679e (patch) | |
tree | 7bf08fa65d731035bac3281751b88b9dc29ba6e9 /BaseTools | |
parent | b22203212a892137e8da9501d42f58c022d61289 (diff) | |
download | edk2-e0ba625fc641314438a9a46079b52a4a30d8679e.tar.gz edk2-e0ba625fc641314438a9a46079b52a4a30d8679e.tar.bz2 edk2-e0ba625fc641314438a9a46079b52a4a30d8679e.zip |
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 <leif.lindholm@linaro.org>
Reviewed-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16169 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Source/C/Makefiles/header.makefile | 4 |
1 files changed, 4 insertions, 0 deletions
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)
|