Remove restriction on skipping some linker tests because their default image base...
[deliverable/binutils-gdb.git] / ld / testsuite / ld-mips-elf / pr21375.ld
1 SECTIONS
2 {
3 .dynamic : { *(.dynamic) }
4 .hash : { *(.hash) }
5 .dynsym : { *(.dynsym) }
6 .dynstr : { *(.dynstr) }
7 .gnu.version : { *(.gnu.version) }
8 .gnu.version_d : { *(.gnu.version_d) }
9 .gnu.version_r : { *(.gnu.version_r) }
10 /* Align up to account for traditional vs IRIX target differences
11 with the alignment of dynamic sections. This way GOT addresses
12 work out the same. */
13 .text : ALIGN (512) { *(.text*) }
14 HIDDEN (_gp = ALIGN (16) + 0x7ff0);
15 .got : { *(.got) }
16 .symtab : { *(.symtab) }
17 .strtab : { *(.strtab) }
18 .shstrtab : { *(.shstrtab) }
19 /DISCARD/ : { *(*) }
20 }
This page took 0.045322 seconds and 4 git commands to generate.