summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2017-11-24 08:43:40 +0000
committerSandrine Bailleux <sandrine.bailleux@arm.com>2017-11-24 08:46:57 +0000
commitda547d4b4e8eccba348495c9ecc7ce22f7e90990 (patch)
tree6fae1e16d2e8d966437ca4fab3b7d3b8cd9ad227 /Makefile
parentd162a27ddcb0b1e039f48bfa8111f04c6f290063 (diff)
Fix Makefile for ARMv8-A AArch32 build
Commit 26e63c4450 broke the Makefile for ARMv8-A AArch32 platforms. This patch fixes it. Change-Id: I49b8eb5b88f3a131aa4c8642ef970e92d90b6dd2 Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d186e8b1..31ef7699 100644
--- a/Makefile
+++ b/Makefile
@@ -131,7 +131,7 @@ target32-directive = -target arm-none-eabi
# Will set march32-directive from platform configuration
else
target32-directive = -target armv8a-none-eabi
-march32-directive = -march armv8-a
+march32-directive = -march=armv8-a
endif
ifeq ($(notdir $(CC)),armclang)