aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorMichael Meissner <gnu@the-meissners.org>1996-01-05 17:27:39 +0000
committerMichael Meissner <gnu@the-meissners.org>1996-01-05 17:27:39 +0000
commit9dee2948a2fb4693207e26cd615f572ca3a1efd7 (patch)
tree9a21c61cfddfbbfb031cc067e293f973bc276f6f /ld
parent2f4973f85229398f9c752bac1efab6dad5ccc841 (diff)
downloadfsf-binutils-gdb-9dee2948a2fb4693207e26cd615f572ca3a1efd7.zip
fsf-binutils-gdb-9dee2948a2fb4693207e26cd615f572ca3a1efd7.tar.gz
fsf-binutils-gdb-9dee2948a2fb4693207e26cd615f572ca3a1efd7.tar.bz2
Move creating section begin/end labels to compiler crt{i,n}.o
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog6
-rw-r--r--ld/scripttempl/elfppc.sc20
2 files changed, 8 insertions, 18 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index dece9c0..3e30e9a 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jan 5 12:25:47 1996 Michael Meissner <meissner@tiktok.cygnus.com>
+
+ * scripttempl/elfppc.sc: Remove support for creating special
+ labels for eabi section begin/end here. The compiler now uses
+ crt{i,n}.o to create these symbols.
+
Thu Jan 4 17:08:58 1996 Ian Lance Taylor <ian@cygnus.com>
* configure.host: Change existing Linux HOSTING_CRT0 to be used
diff --git a/ld/scripttempl/elfppc.sc b/ld/scripttempl/elfppc.sc
index 1370465..2b47af8 100644
--- a/ld/scripttempl/elfppc.sc
+++ b/ld/scripttempl/elfppc.sc
@@ -100,36 +100,20 @@ SECTIONS
.data1 ${RELOCATING-0} : { *(.data1) }
${RELOCATING+${OTHER_READWRITE_SECTIONS}}
- ${RELOCATING+_GOT1_START_ = .;}
.got1 ${RELOCATING-0} : { *(.got1) }
- ${RELOCATING+_GOT1_END_ = .;}
-
.dynamic ${RELOCATING-0} : { *(.dynamic) }
/* Put .ctors and .dtors next to the .got2 section, so that the pointers
get relocated with -mrelocatable. Also put in the .fixup pointers. */
- ${RELOCATING+_GOT2_START_ = .;}
.got2 ${RELOCATING-0} : { *(.got2) }
-
- ${RELOCATING+__CTOR_LIST__ = .;}
.ctors ${RELOCATING-0} : { *(.ctors) }
- ${RELOCATING+__CTOR_END__ = .;}
-
- ${RELOCATING+__DTOR_LIST__ = .;}
.dtors ${RELOCATING-0} : { *(.dtors) }
- ${RELOCATING+__DTOR_END__ = .;}
-
- ${RELOCATING+_FIXUP_START_ = .;}
.fixup ${RELOCATING-0} : { *(.fixup) }
- ${RELOCATING+_FIXUP_END_ = .;}
- ${RELOCATING+_GOT2_END_ = .;}
- ${RELOCATING+_GOT_START_ = .;}
- ${RELOCATING+_GLOBAL_OFFSET_TABLE_ = . + 32768;}
- ${RELOCATING+_SDA_BASE_ = . + 32768;}
- .got ${RELOCATING-0} : { *(.got.plt) *(.got) }
+ .got ${RELOCATING-0} : { *(.got) *(.got.plt) }
${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. */