From: Ian Lance Taylor Date: Tue, 20 Oct 1992 17:57:28 +0000 (+0000) Subject: Tue Oct 20 10:56:06 1992 Ian Lance Taylor (ian@cygnus.com) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=668f26b5fe5f22b2cc2219d844b036861ea0e534;p=binutils-gdb.git Tue Oct 20 10:56:06 1992 Ian Lance Taylor (ian@cygnus.com) * m68kcoff.sc-sh: don't use initial underscores for etext, edata and end. --- diff --git a/ld/m68kcoff.sc-sh b/ld/m68kcoff.sc-sh index 393688fcfb7..6770254bca4 100644 --- a/ld/m68kcoff.sc-sh +++ b/ld/m68kcoff.sc-sh @@ -15,7 +15,7 @@ SECTIONS { .text : { *(.text) - ${RELOCATING+ _etext = .}; + ${RELOCATING+ etext = .}; *(.lit) *(.shdata) } ${RELOCATING+ > text} @@ -25,14 +25,14 @@ SECTIONS .talias : { } ${RELOCATING+ > talias} .data : { *(.data) - ${RELOCATING+ _edata = .}; + ${RELOCATING+ edata = .}; } ${RELOCATING+ > data} .bss SIZEOF(.data) + ADDR(.data) : { ${RELOCATING+ __bss_start = .}; *(.bss) *(COMMON) - ${RELOCATING+ _end = ALIGN(0x8)}; + ${RELOCATING+ end = ALIGN(0x8)}; } .mstack : { } ${RELOCATING+ > mstack} .rstack : { } ${RELOCATING+ > rstack}