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:
parent
5d5a9c3ccb
commit
b5ddf9421c
|
@ -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
|
||||||
|
|
|
@ -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 = . };
|
||||||
|
|
|
@ -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)};
|
||||||
|
|
Loading…
Reference in New Issue