diff options
| author | Marek BehĂșn <[email protected]> | 2021-05-20 13:24:22 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-05-24 14:21:30 -0400 |
| commit | 8f9696510afc2b52ebeba5d1db4883cf3331c206 (patch) | |
| tree | df82e1281e45945237fee8e4c947c1d396f35a3f | |
| parent | 2361b5eb5c3e116519518848fe8db9aed4841f4a (diff) | |
ARM: make LTO available
Make LTO available for ARM architecture.
Signed-off-by: Marek BehĂșn <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
| -rw-r--r-- | arch/Kconfig | 1 | ||||
| -rw-r--r-- | arch/arm/lib/Makefile | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 8fd39e36b45..49813a4c9b8 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -33,6 +33,7 @@ config ARC config ARM bool "ARM architecture" + select ARCH_SUPPORTS_LTO select CREATE_ARCH_SYMLINK select HAVE_PRIVATE_LIBGCC if !ARM64 select SUPPORT_OF_CONTROL diff --git a/arch/arm/lib/Makefile b/arch/arm/lib/Makefile index 61bef1d5af3..7f663327151 100644 --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile @@ -45,6 +45,8 @@ obj-$(CONFIG_SEMIHOSTING) += semihosting.o obj-y += bdinfo.o obj-y += sections.o +CFLAGS_REMOVE_sections.o := $(LTO_CFLAGS) + obj-y += stack.o ifdef CONFIG_CPU_V7M obj-y += interrupts_m.o |
