Automatic date update in version.in
[deliverable/binutils-gdb.git] / ld / testsuite / ld-arc / sda-relocs.ld
CommitLineData
fa1c0170
CZ
1/* Default linker script, for normal executables */
2OUTPUT_FORMAT("elf32-littlearc", "elf32-bigarc",
3 "elf32-littlearc")
4
5OUTPUT_ARCH(arc)
6ENTRY(__start)
7
8SECTIONS
9{
10 /* Read-only sections, merged into text segment: */
11 PROVIDE (__start = 0x10000);
12 . = 0x10000 + SIZEOF_HEADERS;
13
14 .text : {__SDATA_BEGIN__ = .; *(.text .stub .text.*)} =0
15 .sdata : {*(.sdata .sdata.*)}
16 .sbss : {*(.sbss .sbss.*)}
17
18 /DISCARD/ : { *(.__arc_profile_*) }
19 /DISCARD/ : { *(.note.GNU-stack) }
20}
This page took 0.060206 seconds and 4 git commands to generate.