Merge "fix(build): fix arch32 build issue for clang" into integration

This commit is contained in:
Manish Pandey 2022-11-04 10:42:17 +01:00 committed by TrustedFirmware Code Review
commit 65f32fe652

View file

@ -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)