summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/config.mk
diff options
context:
space:
mode:
authorJoakim Tjernlund <Joakim.Tjernlund@transmode.se>2010-12-06 14:36:46 +0100
committerWolfgang Denk <wd@denx.de>2011-04-11 21:36:41 +0200
commit33ee4c92339ee386662c0ee2d221098c5cc8b07e (patch)
treeadcaaa9e8759a48d7a40c1476191ed840abd9888 /arch/powerpc/config.mk
parent7d2fade7b1cd08432d16f7af5b10a8d1c0213813 (diff)
downloadtalos-obmc-uboot-33ee4c92339ee386662c0ee2d221098c5cc8b07e.tar.gz
talos-obmc-uboot-33ee4c92339ee386662c0ee2d221098c5cc8b07e.zip
PowerPC: Move -fPIC flag to common place
The -fPIC flag belongs with -mrelocatable, move it there. Also change -fPIC to -fpic as this produces smaller binaries. However, currently -mrelocatable promotes -fpic to -fPIC, a fix for this is in upcoming gcc 4.6 or you can apply this small patch to gcc: diff --git a/gcc/config/rs6000/sysv4.h b/gcc/config/rs6000/sysv4.h index 8da8410..e4b8280 100644 --- a/gcc/config/rs6000/sysv4.h +++ b/gcc/config/rs6000/sysv4.h @@ -227,7 +227,8 @@ do { \ } \ \ else if (TARGET_RELOCATABLE) \ - flag_pic = 2; \ + if (!flag_pic) \ + flag_pic = 2; \ } while (0) #ifndef RS6000_BI_ARCH -- 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, 1 insertions, 1 deletions
diff --git a/arch/powerpc/config.mk b/arch/powerpc/config.mk
index 31e44160f6..255f3d7af3 100644
--- a/arch/powerpc/config.mk
+++ b/arch/powerpc/config.mk
@@ -25,7 +25,7 @@ CROSS_COMPILE ?= ppc_8xx-
STANDALONE_LOAD_ADDR = 0x40000
LDFLAGS_FINAL += --gc-sections
-PLATFORM_RELFLAGS += -mrelocatable -ffunction-sections -fdata-sections
+PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections
PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__
PLATFORM_LDFLAGS += -n
OpenPOWER on IntegriCloud