Rename remaining members of buildsym_compunit to start with "m_"
[deliverable/binutils-gdb.git] / ld / scripttempl / tic54xcoff.sc
index 8d8a81166b56da69c0d759db2e464f1c57fa4881..16cc8d2594555335b4a79f93579cd0c5871c444f 100644 (file)
@@ -1,8 +1,21 @@
-# default linker script for c54x, TI COFF(1).
+# Default linker script for c54x, TI COFF(1).
 # patterned after description in TI Assembler Tools PDF, SPRU102C, 7-53
+#
+# Copyright (C) 2014-2018 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.
+
 test -z "$ENTRY" && ENTRY=_c_int00
 
 cat <<EOF
+/* Copyright (C) 2014-2018 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("${OUTPUT_ARCH}")
 
@@ -12,18 +25,18 @@ MEMORY
        /*PAGE 1 : */ data (W) : ORIGIN = 0x01000080, LENGTH = 0xFF80
 }
 
-ENTRY(${ENTRY})
+${RELOCATING+ENTRY (${ENTRY})}
 
-SECTIONS                               
-{                                      
-       .text : 
+SECTIONS
+{
+       .text :
        {
                ___text__ = .;
                *(.text)
                etext = .;
                ___etext__ = .;
        } > prog
-       .data : 
+       .data :
        {
                ___data__ = .;
                __data = .;
@@ -33,11 +46,11 @@ SECTIONS
                ___edata__ = .;
        } > prog
        /* all other initialized sections should be allocated here */
-       .cinit : 
+       .cinit :
        {
                *(.cinit)
        } > prog
-       .bss : 
+       .bss :
        {
                ___bss__ = .;
                __bss = .;
This page took 0.023786 seconds and 4 git commands to generate.