* scripttempl/elf32msp430.sc (.data): Set the based on the next
authorNick Clifton <nickc@redhat.com>
Wed, 20 Nov 2013 16:51:21 +0000 (16:51 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 20 Nov 2013 16:51:21 +0000 (16:51 +0000)
free location in the text memory region, not a computation based
upon the size of the text section.  Orphaned sections or other
linker scripts might insert new sections between the .text section
and the .data section.
* scripttempl/elf32msp430_3.sc (.data): Likewise.

ld/ChangeLog
ld/scripttempl/elf32msp430.sc
ld/scripttempl/elf32msp430_3.sc

index 2ea3b619b0b79b1c88290e19c2b5f53da4a88fe6..681a08bb32b317eb1fd8204c6e2ee9d9337a8359 100644 (file)
@@ -1,3 +1,12 @@
+2013-11-20  Nick Clifton  <nickc@redhat.com>
+
+       * scripttempl/elf32msp430.sc (.data): Set the based on the next
+       free location in the text memory region, not a computation based
+       upon the size of the text section.  Orphaned sections or other
+       linker scripts might insert new sections between the .text section
+       and the .data section.
+       * scripttempl/elf32msp430_3.sc (.data): Likewise.
+
 2013-11-19  Roland McGrath  <mcgrathr@google.com>
            Alan Modra  <amodra@gmail.com>
 
index c699a9163b42548e9e567863dc5970761ad6b404..38df7a4b739fa9518b8e57b7fc5e4131a09ac3b1 100644 (file)
@@ -222,8 +222,8 @@ SECTIONS
     ${RELOCATING+ _vectors_end = . ; }
   } ${RELOCATING+ > vectors}
 
-  .data ${RELOCATING-0} : ${RELOCATING+AT (ADDR (.text) + SIZEOF (.text) + SIZEOF (.rodata))}
-  {  
+  .data ${RELOCATING-0} :
+  {
     ${RELOCATING+ PROVIDE (__data_start = .) ; }
     ${RELOCATING+ PROVIDE (__datastart = .) ; }
     ${RELOCATING+. = ALIGN(2);}
@@ -242,7 +242,7 @@ SECTIONS
     *(.sdata .sdata.* .gnu.linkonce.s.*)
     ${RELOCATING+. = ALIGN(2);}
     ${RELOCATING+ _edata = . ; }
-  } ${RELOCATING+ > data}
+  } ${RELOCATING+ > data ${RELOCATING+AT> text}}
   
   .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
   {
index ade5fcb08992cd956faca7863f58ecad226f23a8..7209f4746d5abfdb3239351fb1ab741b5b7b71bd 100644 (file)
@@ -124,7 +124,7 @@ SECTIONS
     *(.const:*)
   } ${RELOCATING+ > text}
 
-  .data ${RELOCATING-0} : ${RELOCATING+AT (ADDR (.text) + SIZEOF (.text))}
+  .data ${RELOCATING-0} :
   {  
     ${RELOCATING+ PROVIDE (__data_start = .) ; }
     ${RELOCATING+. = ALIGN(2);}
@@ -133,7 +133,7 @@ SECTIONS
     *(.gnu.linkonce.d*)
     ${RELOCATING+. = ALIGN(2);}
     ${RELOCATING+ _edata = . ; }
-  } ${RELOCATING+ > data}
+  } ${RELOCATING+ > data ${RELOCATING+AT> text}}
   
   .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
   {