Copyright update for binutils
[deliverable/binutils-gdb.git] / ld / scripttempl / mipsbsd.sc
index 687579448e5c6300e169260f98246a749ea1c200..13033640c922e8d30267f4abe8740d2f01fd044d 100644 (file)
@@ -1,24 +1,38 @@
+# Copyright (C) 2014-2016 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.
+
 cat <<EOF
-OUTPUT_FORMAT("${OUTPUT_FORMAT}")
+/* Copyright (C) 2014-2016 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}", "${BIG_OUTPUT_FORMAT}",
+             "${LITTLE_OUTPUT_FORMAT}")
 OUTPUT_ARCH(${ARCH})
 
 ${RELOCATING+${LIB_SEARCH_DIRS}}
-${RELOCATING+__DYNAMIC  =  0;}
 SECTIONS
 {
-  .text ${RELOCATING+${TEXT_START_ADDR}}:
+  ${RELOCATING+. = ${TEXT_START_ADDR};}
+  .text :
   {
     CREATE_OBJECT_SYMBOLS
     *(.text)
     ${RELOCATING+etext = ${DATA_ALIGNMENT};}
   }
-  .data  ${RELOCATING+${DATA_ALIGNMENT}} :
+  ${RELOCATING+. = ${DATA_ALIGNMENT};}
+  .data :
   {
     *(.data)
     ${CONSTRUCTING+CONSTRUCTORS}
     ${RELOCATING+edata  =  .;}
   }
-  .bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} :
+  .bss :
   {
    *(.bss)
    *(COMMON)
This page took 0.0277770000000001 seconds and 4 git commands to generate.