aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorMichael Meissner <gnu@the-meissners.org>1996-01-22 16:05:26 +0000
committerMichael Meissner <gnu@the-meissners.org>1996-01-22 16:05:26 +0000
commit4d99a9505ce20214f02eae77570caab77a6ef339 (patch)
tree1fa7766d38526399a08b8961a1da5c58ce15c8ec /ld
parentd971d39e462b9f0be327ee8df435fb4f7253726f (diff)
downloadgdb-4d99a9505ce20214f02eae77570caab77a6ef339.zip
gdb-4d99a9505ce20214f02eae77570caab77a6ef339.tar.gz
gdb-4d99a9505ce20214f02eae77570caab77a6ef339.tar.bz2
Refine eabi support
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/scripttempl/elfppc.sc39
2 files changed, 20 insertions, 24 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 4c4ece3..7bec541 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jan 22 11:03:23 1996 Michael Meissner <meissner@tiktok.cygnus.com>
+
+ * scripttempl/elfppc.sc: Refine eabi support to better support
+ .sdata, .sdata2, .sbss, etc. sections.
+
Tue Jan 16 15:16:58 1996 Ian Lance Taylor <ian@cygnus.com>
* ldgram.y (%union): Add phdr field.
diff --git a/ld/scripttempl/elfppc.sc b/ld/scripttempl/elfppc.sc
index dbd26d6..57e654c 100644
--- a/ld/scripttempl/elfppc.sc
+++ b/ld/scripttempl/elfppc.sc
@@ -53,7 +53,6 @@ SECTIONS
.rela.data ${RELOCATING-0} : { *(.rela.data) }
.rela.rodata ${RELOCATING-0} : { *(.rela.rodata) }
.rela.got ${RELOCATING-0} : { *(.rela.got) }
- .rela.got.neg ${RELOCATING-0} : { *(.rela.got.neg) }
.rela.got1 ${RELOCATING-0} : { *(.rela.got1) }
.rela.got2 ${RELOCATING-0} : { *(.rela.got2) }
.rela.ctors ${RELOCATING-0} : { *(.rela.ctors) }
@@ -98,55 +97,47 @@ SECTIONS
get relocated with -mrelocatable. Also put in the .fixup pointers.
The current compiler no longer needs this, but keep it around for 2.7.2 */
- ${RELOCATING+_GOT2_START_ = .;}
+ ${RELOCATING+PROVIDE (_GOT2_START_ = .);}
.got2 ${RELOCATING-0} : { *(.got2) }
- ${RELOCATING+__CTOR_LIST__ = .;}
+ ${RELOCATING+PROVIDE (__CTOR_LIST__ = .);}
.ctors ${RELOCATING-0} : { *(.ctors) }
- ${RELOCATING+__CTOR_END__ = .;}
+ ${RELOCATING+PROVIDE (__CTOR_END__ = .);}
- ${RELOCATING+__DTOR_LIST__ = .;}
+ ${RELOCATING+PROVIDE (__DTOR_LIST__ = .);}
.dtors ${RELOCATING-0} : { *(.dtors) }
- ${RELOCATING+__DTOR_END__ = .;}
+ ${RELOCATING+PROVIDE (__DTOR_END__ = .);}
- ${RELOCATING+_FIXUP_START_ = .;}
+ ${RELOCATING+PROVIDE (_FIXUP_START_ = .);}
.fixup ${RELOCATING-0} : { *(.fixup) }
- ${RELOCATING+_FIXUP_END_ = .;}
- ${RELOCATING+_GOT2_END_ = .;}
+ ${RELOCATING+PROVIDE (_FIXUP_END_ = .);}
+ ${RELOCATING+PROVIDE (_GOT2_END_ = .);}
- /* .got.neg is for items that would normally go in the .got that are addressed
- negative of _GLOBAL_OFFSET_TABLE. .got.blrl is to hold the blrl instruction
- that is _GLOBAL_OFFSET_TABLE_-4 so that a function can easily get the
- address of _GLOBAL_OFFSET_TABLE. */
-
- .got.neg ${RELOCATING-0} : { *(.got.neg) }
- .got.blrl ${RELOCATING-0} : { *(.got.blrl) }
- ${RELOCATING+_GOT_START_ = .;}
- ${RELOCATING+_GLOBAL_OFFSET_TABLE_ = .;}
+ ${RELOCATING+PROVIDE (_GOT_START_ = .);}
+ ${RELOCATING+PROVIDE (_GLOBAL_OFFSET_TABLE_ = .);}
.got ${RELOCATING-0} : { *(.got) }
.got.plt ${RELOCATING-0} : { *(.got.plt) }
- ${RELOCATING+_GOT_END_ = .;}
+ ${RELOCATING+PROVIDE (_GOT_END_ = .);}
${DATA_PLT+${PLT}}
/* We want the small data sections together, so single-instruction offsets
can access them all, and initialized data all before uninitialized, so
we can shorten the on-disk segment size. */
- ${RELOCATING+_SDA_BASE_ = . + 32768;}
- .sdata ${RELOCATING-0} : { *(.sdata) }
+ .sdata ${RELOCATING-0} : { *(.sdata) }
${RELOCATING+_edata = .;}
${RELOCATING+PROVIDE (edata = .);}
.sbss ${RELOCATING-0} :
{
- ${RELOCATING+__sbss_start = .;}
+ ${RELOCATING+PROVIDE (__sbss_start = .);}
*(.sbss)
*(.scommon)
- ${RELOCATING+__sbss_end = .;}
+ ${RELOCATING+PROVIDE (__sbss_end = .);}
}
.bss ${RELOCATING-0} :
{
${RELOCATING+${OTHER_BSS_SYMBOLS}}
- ${RELOCATING+__bss_start = .;}
+ ${RELOCATING+PROVIDE (__bss_start = .);}
*(.dynbss)
*(.bss)
*(COMMON)