summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/config.mk
diff options
context:
space:
mode:
authorJoakim Tjernlund <Joakim.Tjernlund@transmode.se>2010-12-06 18:35:37 +0100
committerWolfgang Denk <wd@denx.de>2011-04-11 21:38:47 +0200
commit39768f7715ed637ef02f49fc7de664cc1aaf14b3 (patch)
treea5cc618786f64865df878d1d025de7672b5036da /arch/powerpc/config.mk
parent33ee4c92339ee386662c0ee2d221098c5cc8b07e (diff)
downloadtalos-obmc-uboot-39768f7715ed637ef02f49fc7de664cc1aaf14b3.tar.gz
talos-obmc-uboot-39768f7715ed637ef02f49fc7de664cc1aaf14b3.zip
PowerPC: Add support for -msingle-pic-base
-msingle-pic-base is a new gcc option for ppc and it reduces the size of my u-boot with 6-8 KB. While at it, add -fno-jump-tables too to save a few more bytes. -msingle-pic-base will be in gcc 4.6, however backported patches are available at http://bugs.gentoo.org/show_bug.cgi?id=347281 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
Diffstat (limited to 'arch/powerpc/config.mk')
-rw-r--r--arch/powerpc/config.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/config.mk b/arch/powerpc/config.mk
index 255f3d7af3..8d72fbd7ec 100644
--- a/arch/powerpc/config.mk
+++ b/arch/powerpc/config.mk
@@ -26,6 +26,8 @@ CROSS_COMPILE ?= ppc_8xx-
STANDALONE_LOAD_ADDR = 0x40000
LDFLAGS_FINAL += --gc-sections
PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections
+PLATFORM_RELFLAGS += $(call cc-option,-msingle-pic-base,)
+PLATFORM_RELFLAGS += $(call cc-option,-fno-jump-tables,)
PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__
PLATFORM_LDFLAGS += -n
OpenPOWER on IntegriCloud