summaryrefslogtreecommitdiffstats
path: root/src/arch/arm
diff options
context:
space:
mode:
authorMartin Roth <gaumless@gmail.com>2022-11-15 19:24:14 -0700
committerMartin Roth <martin.roth@amd.corp-partner.google.com>2022-11-16 15:16:42 +0000
commit6cf181a49b776a5d453a7f7766cdf4cc2a505f2a (patch)
tree490c30ae267d21359fb1e2447e30c1bf440d5d10 /src/arch/arm
parent50c0a6d675152172d99acc4108a8dc69a3f0daf9 (diff)
downloadcoreboot-6cf181a49b776a5d453a7f7766cdf4cc2a505f2a.tar.gz
coreboot-6cf181a49b776a5d453a7f7766cdf4cc2a505f2a.tar.bz2
coreboot-6cf181a49b776a5d453a7f7766cdf4cc2a505f2a.zip
arch/arm/armv7: Don't set gcc specific options for clang builds
Clang doesn't understand the -Wa,-mno-warn-deprecated option. Remove it for now. Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: I9f91d6ec2db247e901ba9bc41bc4b888bbe43236 Reviewed-on: https://review.coreboot.org/c/coreboot/+/69672 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Diffstat (limited to 'src/arch/arm')
-rw-r--r--src/arch/arm/armv7/Makefile.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/arch/arm/armv7/Makefile.inc b/src/arch/arm/armv7/Makefile.inc
index 66ddc98da555..5675a26b0a16 100644
--- a/src/arch/arm/armv7/Makefile.inc
+++ b/src/arch/arm/armv7/Makefile.inc
@@ -5,7 +5,10 @@ armv7-a_flags = -march=armv7-a $(armv7_flags) -D__COREBOOT_ARM_V7_A__
armv7-m_flags = -march=armv7-m $(armv7_flags) -D__COREBOOT_ARM_V7_M__
armv7-r_flags = -march=armv7-r $(armv7_flags) -D__COREBOOT_ARM_V7_R__
-armv7_asm_flags = -Wa,-mthumb -Wa,-mimplicit-it=always -Wa,-mno-warn-deprecated
+armv7_asm_flags = -Wa,-mthumb -Wa,-mimplicit-it=always
+ifeq ($(CONFIG_COMPILER_GCC),y)
+armv7_asm_flags += -Wa,-mno-warn-deprecated
+endif
armv7-r_asm_flags = $(armv7-r_flags) $(armv7_asm_flags)
###############################################################################