diff options
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/scripttempl/elfppc.sc | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 1bf0530..5138412 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +Fri Jan 30 19:15:17 1998 Geoff Keating <geoffk@ozemail.com.au> + + * scripttempl/elfppc.sc: Put .dynsbss in .sbss. + Fri Jan 30 11:43:49 1998 H.J. Lu <hjl@gnu.ai.mit.edu> * Makefile.am (eelf32bsmip.c, eelf32lsmip.c): New targets. diff --git a/ld/scripttempl/elfppc.sc b/ld/scripttempl/elfppc.sc index dd80edb..33763bf 100644 --- a/ld/scripttempl/elfppc.sc +++ b/ld/scripttempl/elfppc.sc @@ -159,6 +159,7 @@ SECTIONS ${RELOCATING+PROVIDE (__sbss_start = .);} *(.sbss) *(.scommon) + *(.dynsbss) ${RELOCATING+PROVIDE (__sbss_end = .);} } ${PLT} |