Revert 2009-09-28 changes.
[deliverable/binutils-gdb.git] / ld / scripttempl / psos.sc
index bc99fdda4d8520d5972a9df853018698bfa18ecc..ab8c6c7e3c8eed1af8fa59b7edd0e3e2298f3681 100644 (file)
@@ -5,7 +5,7 @@ ${RELOCATING+${LIB_SEARCH_DIRS}}
 
 SECTIONS
 {
-  .text  ${RELOCATING+${TEXT_START_ADDR}} : {
+  .text ${RELOCATING:-0} ${RELOCATING+${TEXT_START_ADDR}} : {
     ${RELOCATING+ start = DEFINED(_START) ? _START : DEFINED(_start) ? _start : .;}
     ${RELOCATING+ PROVIDE(__text = .);}
     *(.text);
@@ -31,14 +31,14 @@ SECTIONS
     ${RELOCATING+ PROVIDE(__etext = .);}
     ${RELOCATING+ PROVIDE(_etext = .);}
   }
-  .data  : ${RELOCATING+ AT(ADDR(.text) + SIZEOF(.text))} {
+  .data ${RELOCATING:-0} : ${RELOCATING+ AT(ADDR(.text) + SIZEOF(.text))} {
     ${RELOCATING+ PROVIDE(__data = .);}
     *(.data);
     *(vars);
     ${RELOCATING+ PROVIDE(__edata = .);}
     ${RELOCATING+ PROVIDE(_edata = .);}
   }
-  .bss  :
+  .bss ${RELOCATING:-0} :
   {                                    
     ${RELOCATING+ PROVIDE(__bss = .);}
     *(.bss);
This page took 0.026216 seconds and 4 git commands to generate.