[ARC] Fix parsing dtpoff relocation expression.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-arc / tls-relocs.ld
1 /* Default linker script, for normal executables. */
2 OUTPUT_FORMAT("elf32-littlearc", "elf32-bigarc",
3 "elf32-littlearc")
4
5 OUTPUT_ARCH(arc)
6 ENTRY(__start)
7
8 SECTIONS
9 {
10 /* Read-only sections, merged into text segment: */
11 PROVIDE (__start = 0x10000);
12 . = 0x10000 + SIZEOF_HEADERS;
13
14 .text : {*(.text .stub .text.*)} =0
15 .tdata : {.tdata = .; *(.tdata .tdata.* .gnu.linkonce.td.*) }
16 .tbss : {.tbss = .; *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
17
18 /DISCARD/ : { *(.__arc_profile_*) }
19 /DISCARD/ : { *(.note.GNU-stack) }
20 }
This page took 0.037789 seconds and 4 git commands to generate.