Mon Oct 5 14:07:37 1992 Ian Lance Taylor (ian@cygnus.com)

* aout.sc-sh, m68kcoff.sc-sh: set __bss_start to the start of the
	.bss segment.
This commit is contained in:
Ian Lance Taylor 1992-10-05 21:08:41 +00:00
parent 5d5a9c3ccb
commit b5ddf9421c
3 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Mon Oct 5 14:07:37 1992 Ian Lance Taylor (ian@cygnus.com)
* aout.sc-sh, m68kcoff.sc-sh: set __bss_start to the start of the
.bss segment.
Mon Oct 5 08:55:14 1992 Steve Chamberlain (sac@thepub.cygnus.com) Mon Oct 5 08:55:14 1992 Steve Chamberlain (sac@thepub.cygnus.com)
* ldmain.c (linear_library): don't even think about processing * ldmain.c (linear_library): don't even think about processing

View File

@ -20,6 +20,7 @@ SECTIONS
} }
.bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} : .bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} :
{ {
${RELOCATING+ __bss_start = .};
*(.bss) *(.bss)
*(COMMON) *(COMMON)
${RELOCATING+_end = . }; ${RELOCATING+_end = . };

View File

@ -29,6 +29,7 @@ SECTIONS
} ${RELOCATING+ > data} } ${RELOCATING+ > data}
.bss SIZEOF(.data) + ADDR(.data) : .bss SIZEOF(.data) + ADDR(.data) :
{ {
${RELOCATING+ __bss_start = .};
*(.bss) *(.bss)
*(COMMON) *(COMMON)
${RELOCATING+ _end = ALIGN(0x8)}; ${RELOCATING+ _end = ALIGN(0x8)};