summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorManish Pandey <manish.pandey2@arm.com>2022-11-04 10:42:17 +0100
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2022-11-04 10:42:17 +0100
commit65f32fe652038fb140a1102c106b7effd3c04004 (patch)
tree9d757f8b9b032039b0f91a411d35aee4821ba3a4 /Makefile
parent5b044227c169554e935b91e1180f334821515452 (diff)
parent94eb127719881f39c7f235c887fb2c0b82341696 (diff)
downloadarm-trusted-firmware-65f32fe652038fb140a1102c106b7effd3c04004.tar.gz
Merge "fix(build): fix arch32 build issue for clang" into integration
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a14d4d88c..a9abbc11f 100644
--- a/Makefile
+++ b/Makefile
@@ -278,7 +278,7 @@ ifneq ($(findstring clang,$(notdir $(CC))),)
TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi $(march64-directive)
LD := $(LINKER)
else
- TF_CFLAGS_aarch32 := $(target32-directive) $(march32-directive)
+ TF_CFLAGS_aarch32 = $(target32-directive) $(march32-directive)
TF_CFLAGS_aarch64 := -target aarch64-elf $(march64-directive)
LD := $(shell $(CC) --print-prog-name ld.lld)