ChangeLog rotatation and copyright year update
[deliverable/binutils-gdb.git] / gold / testsuite / script_test_3.t
index 991034928827e0db83c832423d45eb279a6200ec..c4b4fd694a3c390cd775edb925acf8b852bf2f45 100644 (file)
@@ -1,6 +1,6 @@
 /* script_test_3.t -- linker script test 3 for gold
 
-   Copyright 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008-2015 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <iant@google.com>.
 
    This file is part of gold.
@@ -28,12 +28,19 @@ SECTIONS
   /* With luck this will be enough to get the program working.  */
   .interp : { *(.interp) } :text :interp
   .text : { *(.text) } :text
+  /* Required by the ARM target. */
+  .ARM.extab : { *(.ARM.extab*) }
+  .ARM.exidx : { *(.ARM.exidx*) }
   . += 0x100000;
   . = ALIGN(0x100);
   .dynamic : { *(.dynamic) } :data :dynamic
   .data : { *(.data) } :data
+  .got : { *(.got .toc) }
+  .got.plt : { *(.got.plt) } 
+  .tdata : { *(.tdata*) } :data :tls
+  .tbss : { *(.tbss*) } :data :tls
   . += 0x100000;
-  . = ALIGN(0x100);
+  . = ALIGN(0x100000);
   .bss : { *(.bss) } :bss
 }
 
@@ -44,4 +51,5 @@ PHDRS
   dynamic PT_DYNAMIC FLAGS(4);
   data PT_LOAD;
   bss PT_LOAD;
+  tls PT_TLS;
 }
This page took 0.0241 seconds and 4 git commands to generate.