Tue Oct 20 10:56:06 1992 Ian Lance Taylor (ian@cygnus.com)
authorIan Lance Taylor <ian@airs.com>
Tue, 20 Oct 1992 17:57:28 +0000 (17:57 +0000)
committerIan Lance Taylor <ian@airs.com>
Tue, 20 Oct 1992 17:57:28 +0000 (17:57 +0000)
* m68kcoff.sc-sh: don't use initial underscores for etext, edata
and end.

ld/m68kcoff.sc-sh

index 393688fcfb74400456cac904abe3adc013966d9d..6770254bca4923c594abc1802c89ad8248c8a0c5 100644 (file)
@@ -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}
This page took 0.039266 seconds and 4 git commands to generate.