diff options
author | DJ Delorie <dj@redhat.com> | 2002-09-23 11:36:15 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2002-09-23 11:36:15 +0000 |
commit | 8e616ecc6b5f5d7b4972a5a83876140c49d76cd0 (patch) | |
tree | f17ccae923f3dfd95c39766334ef1be27d3b74cb /ld/scripttempl | |
parent | ad34bc37c1fa08cd30568395f5381fdd474f0624 (diff) | |
download | gdb-8e616ecc6b5f5d7b4972a5a83876140c49d76cd0.zip gdb-8e616ecc6b5f5d7b4972a5a83876140c49d76cd0.tar.gz gdb-8e616ecc6b5f5d7b4972a5a83876140c49d76cd0.tar.bz2 |
* scripttempl/i386go32.sc: Handle bss unique sections.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/i386go32.sc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/scripttempl/i386go32.sc b/ld/scripttempl/i386go32.sc index 482a8cb..54908fe 100644 --- a/ld/scripttempl/i386go32.sc +++ b/ld/scripttempl/i386go32.sc @@ -57,7 +57,7 @@ SECTIONS ${CONSTRUCTING+${RELOCATING-$DTOR}} .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} : { - *(.bss) + *(.bss${RELOCATING+ .bss.* .gnu.linkonce.b.*}) *(COMMON) ${RELOCATING+ end = . ; PROVIDE(_end = .) ;} ${RELOCATING+ . = ALIGN(${SEGMENT_SIZE});} |