From fd725691797bb3192af15a15c2cba7d0b2ee9327 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Thu, 25 Apr 2013 07:40:22 +0000 Subject: arm: Enable -ffunction-sections / -fdata-sections / --gc-sections While other architectures have enabled these gcc / ld options for some time on U-Boot itself, ARM has only been doing this on SPL. Enable this on full U-Boot as well now. Cc: Albert ARIBAUD Signed-off-by: Tom Rini --- arch/arm/config.mk | 3 +++ 1 file changed, 3 insertions(+) (limited to 'arch/arm/config.mk') diff --git a/arch/arm/config.mk b/arch/arm/config.mk index 461899eabc..dc64160789 100644 --- a/arch/arm/config.mk +++ b/arch/arm/config.mk @@ -31,6 +31,9 @@ CONFIG_STANDALONE_LOAD_ADDR = 0xc100000 endif endif +LDFLAGS_FINAL += --gc-sections +PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections + # Support generic board on ARM __HAVE_ARCH_GENERIC_BOARD := y -- cgit v1.2.1