diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-10-24 18:18:16 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-02-02 12:24:40 -0500 |
commit | 6957a6209b02f6b69607fc47425f13731cc477f1 (patch) | |
tree | 8b71de640a10d7685d0ae33abf0ad507c849e477 /cpu/blackfin/Makefile | |
parent | ee1d2001ea7fbabb2b9256026dc5468f057337f8 (diff) | |
download | talos-obmc-uboot-6957a6209b02f6b69607fc47425f13731cc477f1.tar.gz talos-obmc-uboot-6957a6209b02f6b69607fc47425f13731cc477f1.zip |
Blackfin: enable --gc-sections
Start building all Blackfin boards with -ffunction-sections/-fdata-sections
and linking with --gc-sections.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'cpu/blackfin/Makefile')
-rw-r--r-- | cpu/blackfin/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/blackfin/Makefile b/cpu/blackfin/Makefile index b4049ff874..1378fd12bb 100644 --- a/cpu/blackfin/Makefile +++ b/cpu/blackfin/Makefile @@ -47,6 +47,7 @@ $(obj)bootrom-asm-offsets.h: $(obj)bootrom-asm-offsets.s # make sure our initcode (which goes into LDR) does not # have relocs or external references +$(obj)initcode.o: CFLAGS += -fno-function-sections -fno-data-sections READINIT = env LC_ALL=C $(CROSS_COMPILE)readelf -s $< check_initcode: $(obj)initcode.o ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_BYPASS) |