summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2022-11-17 12:11:14 +0100
committerMartin L Roth <gaumless@gmail.com>2022-11-30 16:36:29 +0000
commitc83a17841cd4b1e88148e57e3da265ee83586ed1 (patch)
tree6c350a7b1adbc78756b94d43f18f6c39f1f721ee
parent8d9cce1e096fa9d35aae7a17bc5acb1adf44e18f (diff)
downloadcoreboot-c83a17841cd4b1e88148e57e3da265ee83586ed1.tar.gz
coreboot-c83a17841cd4b1e88148e57e3da265ee83586ed1.tar.bz2
coreboot-c83a17841cd4b1e88148e57e3da265ee83586ed1.zip
arm/armv7/Makefile.inc: Fix processing ld files with clang
When processing linker scripts clang needs to be set for the proper target or it gets confused by other options. Change-Id: I040aa14a06c728269ca1026e0002392e5ac8fef8 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69744 Reviewed-by: Martin L Roth <gaumless@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/arch/arm/armv7/Makefile.inc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/arch/arm/armv7/Makefile.inc b/src/arch/arm/armv7/Makefile.inc
index 5675a26b0a16..d9f78e5f8456 100644
--- a/src/arch/arm/armv7/Makefile.inc
+++ b/src/arch/arm/armv7/Makefile.inc
@@ -8,6 +8,12 @@ armv7-r_flags = -march=armv7-r $(armv7_flags) -D__COREBOOT_ARM_V7_R__
armv7_asm_flags = -Wa,-mthumb -Wa,-mimplicit-it=always
ifeq ($(CONFIG_COMPILER_GCC),y)
armv7_asm_flags += -Wa,-mno-warn-deprecated
+else # CLANG
+bootblock-ld-ccopts += -target arm-eabi
+verstage-ld-ccopts += -target arm-eabi
+romstage-ld-ccopts += -target arm-eabi
+ramstage-ld-ccopts += -target arm-eabi
+rmodule_arm-ld-ccopts += -target arm-eabi
endif
armv7-r_asm_flags = $(armv7-r_flags) $(armv7_asm_flags)