summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-mips-elf/dyn-sec64.ld
blob: c7af3f4b8cddeac741f8d12b81da61eed7c2d43b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
SECTIONS
{
  . = 0x1234000000000;
  .dynamic : { *(.dynamic) }
  . = 0x1234000001000;
  .hash : { *(.hash) }
  .dynsym : { *(.dynsym) }
  .dynstr : { *(.dynstr) }
  . = 0x1234000002000;
  .rel.dyn : { *(.rel.dyn) }

  . = 0x1234000003000;
  .init : { *(.init) }
  . = 0x1234000004000;
  .fini : { *(.fini) }
  .text : { *(.text) }
  .MIPS.stubs : { *(.MIPS.stubs) }

  . = 0x1235000000000;
  HIDDEN (_gp = ALIGN (16) + 0x7ff0);
  .got : { *(.got) }
  .data : { *(.data) }

  /DISCARD/ : { *(.MIPS.abiflags) *(.gnu.attributes) }
}