ChangeLog rotatation and copyright year update
[deliverable/binutils-gdb.git] / ld / scripttempl / h8500c.sc
index 03880e3f06880deec6dd6e48b9e75dcd819098cd..1f05ffcb28b34f054b64d56defc7c67d1eb01c2c 100644 (file)
@@ -1,59 +1,73 @@
+# Copyright (C) 2014-2015 Free Software Foundation, Inc.
+# 
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved.
+
+TORS="
+    ___ctors = . ;
+    *(.ctors)
+    ___ctors_end = . ;
+    ___dtors = . ;
+    *(.dtors)
+    ___dtors_end = . ;"
+
 cat <<EOF
+/* Copyright (C) 2014-2015 Free Software Foundation, Inc.
+
+   Copying and distribution of this script, with or without modification,
+   are permitted in any medium without royalty provided the copyright
+   notice and this notice are preserved.  */
+
 OUTPUT_FORMAT("${OUTPUT_FORMAT}")
 OUTPUT_ARCH(${ARCH})
 
 /* Compact model - code < 64k, data > 64k */
 
-SECTIONS                               
-{                                      
+SECTIONS
+{
 .text 0x10000 :
-       {                                       
-         *(.text)                              
+       {
+         *(.text)
          *(.strings)
-        ${RELOCATING+ _etext = . ; }
+         ${RELOCATING+ _etext = . ; }
        } ${RELOCATING+ > ram}
 
-
 .data 0x20000 :
        {
-       *(.data)
-       ${RELOCATING+ _edata = . ; }
+         *(.data)
+         ${RELOCATING+ _edata = . ; }
        } ${RELOCATING+ > ram}
 
-.rdata 0x30000  : {
-       *(.rdata); 
-       ___ctors = . ;
-       *(.ctors)
-       ___ctors_end = . ;
-       ___dtors = . ;
-       *(.dtors)
-       ___dtors_end = . ;
-}  ${RELOCATING+ > ram}
+.rdata 0x30000  :
+       {
+         *(.rdata);
+
+         ${CONSTRUCTING+${TORS}}
+       }  ${RELOCATING+ > ram}
 
 .bss  0x40000 :
        {
-       ${RELOCATING+ __start_bss = . ; }
-       *(.bss)
-       *(COMMON)
-       ${RELOCATING+ _end = . ;  }
+         ${RELOCATING+ __start_bss = . ; }
+         *(.bss)
+         *(COMMON)
+         ${RELOCATING+ _end = . ;  }
        } ${RELOCATING+ >ram}
+
 .stack 0x5fff0 :
        {
-       ${RELOCATING+ _stack = . ; }
-       *(.stack)
+         ${RELOCATING+ _stack = . ; }
+         *(.stack)
        } ${RELOCATING+ > topram}
 
-  .stab  0 ${RELOCATING+(NOLOAD)} : 
-  {
-    [ .stab ]
-  }
-  .stabstr  0 ${RELOCATING+(NOLOAD)} :
-  {
-    [ .stabstr ]
-  }
+.stab  0 ${RELOCATING+(NOLOAD)} :
+       {
+         [ .stab ]
+       }
+
+.stabstr  0 ${RELOCATING+(NOLOAD)} :
+       {
+         [ .stabstr ]
+       }
 }
 EOF
-
-
-
-
This page took 0.028999 seconds and 4 git commands to generate.