* mips.sc-sh: Define _etext, _edata, and _end, in addition
authorPer Bothner <per@bothner.com>
Thu, 20 May 1993 20:59:28 +0000 (20:59 +0000)
committerPer Bothner <per@bothner.com>
Thu, 20 May 1993 20:59:28 +0000 (20:59 +0000)
to etext, edata, and end.  Needed for IRIX 4.0.5F.
Patch from mwp@iconix.oz.au (Michael Paddon).

ld/mips.sc-sh

index 8f3952144ed7f6b5520da013b303941abed7fe58..0926db5b300ed73e1fd07414f5e3c06dae4bdd02 100644 (file)
@@ -20,6 +20,7 @@ SECTIONS
     *(.text)
     *(.fini)
     ${RELOCATING+ etext  =  .};
+    ${RELOCATING+ _etext  =  .};
   }
   .rdata ${RELOCATING+ ${DATA_ADDR}} : {
     *(.rdata)
@@ -39,6 +40,7 @@ SECTIONS
     *(.sdata)
   }
   ${RELOCATING+ edata  =  .;}
+  ${RELOCATING+ _edata  =  .;}
   ${RELOCATING+ ${BSS_VAR}}
   .sbss ${RELOCATING+ .} : {
     *(.sbss)
@@ -49,5 +51,6 @@ SECTIONS
     *(COMMON)
   }
   ${RELOCATING+ end = .;}
+  ${RELOCATING+ _end = .;}
 }
 EOF