summaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2005-08-09 03:45:55 +0000
committerAlan Modra <amodra@bigpond.net.au>2005-08-09 03:45:55 +0000
commitcc8491a2d97d14b292120547bfc7272d20c5e568 (patch)
tree530785f3a8fc74eb9801ebbb085480269e663520 /ld
parent66d119f97e0e33cf7f531929139db7c2d2e75f89 (diff)
downloadbinutils-redhat-cc8491a2d97d14b292120547bfc7272d20c5e568.tar.gz
* emulparams/hppa64linux.sh (LARGE_SECTIONS): Remove .tbss.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog6
-rw-r--r--ld/emulparams/hppa64linux.sh10
2 files changed, 8 insertions, 8 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index f0e4d0af6c..8046b4e0a9 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,4 +1,8 @@
-2005-08-08 Eric Dönges <Eric.Doenges@betty-tv.com>
+2005-08-09 Alan Modra <amodra@bigpond.net.au>
+
+ * emulparams/hppa64linux.sh (LARGE_SECTIONS): Remove .tbss.
+
+2005-08-08 Eric Doenges <Eric.Doenges@betty-tv.com>
* Makefile.am (ALL_EMULATIONS): Add msp430x21xx variants.
Add rules to build these emulations.
diff --git a/ld/emulparams/hppa64linux.sh b/ld/emulparams/hppa64linux.sh
index 66bb842382..aaf8c7251f 100644
--- a/ld/emulparams/hppa64linux.sh
+++ b/ld/emulparams/hppa64linux.sh
@@ -27,13 +27,9 @@ OTHER_READWRITE_SECTIONS="
.plt ${RELOCATING-0} : { *(.plt) }
.dlt ${RELOCATING-0} : { *(.dlt) }"
-# The PA64 ELF port has two additional bss sections. huge bss and thread bss.
-# Make sure they end up in the appropriate location. We also have to set
-# __TLS_SIZE to the size of the thread bss section.
-LARGE_SECTIONS="
- .hbss ${RELOCATING-0} : { *(.hbss) }
- .tbss ${RELOCATING-0} : { *(.tbss) }
-"
+# The PA64 ELF port has an additional huge bss section.
+LARGE_SECTIONS=".hbss ${RELOCATING-0} : { *(.hbss) }"
+
#OTHER_SYMBOLS='PROVIDE (__TLS_SIZE = SIZEOF (.tbss));'
OTHER_SYMBOLS='
PROVIDE (__TLS_SIZE = 0);