libpayload/arm: Guard unsupported clang argument
Change-Id: I6cb0d717518478c35bc666867c7d0be957b89322 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/84006 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
7e05377f16
commit
1b13024491
1 changed files with 4 additions and 1 deletions
|
|
@ -27,7 +27,10 @@
|
|||
##
|
||||
|
||||
CFLAGS += -mthumb -march=armv7-a
|
||||
arm_asm_flags = -Wa,-mthumb -Wa,-mimplicit-it=always -Wa,-mno-warn-deprecated
|
||||
arm_asm_flags = -Wa,-mthumb -Wa,-mimplicit-it=always
|
||||
ifeq ($(CONFIG_COMPILER_GCC),y)
|
||||
arm_asm_flags += -Wa,-mno-warn-deprecated
|
||||
endif
|
||||
|
||||
libc-y += head.S
|
||||
libc-y += eabi_compat.c
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue