From 4d99a9505ce20214f02eae77570caab77a6ef339 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Mon, 22 Jan 1996 16:05:26 +0000 Subject: [PATCH] Refine eabi support --- ld/ChangeLog | 5 +++++ ld/scripttempl/elfppc.sc | 39 +++++++++++++++------------------------ 2 files changed, 20 insertions(+), 24 deletions(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 4c4ece3f4aa..7bec5412869 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +Mon Jan 22 11:03:23 1996 Michael Meissner + + * scripttempl/elfppc.sc: Refine eabi support to better support + .sdata, .sdata2, .sbss, etc. sections. + Tue Jan 16 15:16:58 1996 Ian Lance Taylor * ldgram.y (%union): Add phdr field. diff --git a/ld/scripttempl/elfppc.sc b/ld/scripttempl/elfppc.sc index dbd26d63c14..57e654cc7b1 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) -- 2.30.2