• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1SECTIONS
2{
3  . = 0x20000;
4  .interp : { *(.interp) }
5  .hash : { *(.hash) }
6  .dynsym : { *(.dynsym) }
7  .dynstr : { *(.dynstr) }
8
9  . = ALIGN (0x400);
10  .rela.plt : { *(.rela.plt) }
11
12  . = ALIGN (0x400);
13  .plt : { *(.plt) }
14
15  . = ALIGN (0x400);
16  .text : { *(.text) }
17
18  . = ALIGN (0x10000);
19  .dynamic : { *(.dynamic) }
20
21  . = ALIGN (0x400);
22  .got : { *(.got.plt) *(.got) }
23}
24