summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-mips-elf/eh-frame1.ld
blob: 30fb9482b84d518a79445a8d6294562a9370fd59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SECTIONS
{
  . = 0x10000;
  .dynamic : { *(.dynamic) }
  .hash : { *(.hash) }
  .dynsym : { *(.dynsym) }
  .dynstr : { *(.dynstr) }
  .rel.dyn : { *(.rel.dyn) }

  . = 0x20000;
  .text : { *(.text) }

  . = 0x30000;
  .eh_frame : { *(.eh_frame) }
  .got : { *(.got) }
  .gcc_compiled_long32 : { KEEP (*(.gcc_compiled_long32)) }

  /DISCARD/ : { *(*) }
}