1SECTIONS
2{
3  . = 0;
4  .hash		: { *(.hash) }
5  .dynsym	: { *(.dynsym) }
6  .dynstr	: { *(.dynstr) }
7  .rela.plt	: { *(.rela.plt) }
8
9  . = 0x1000;
10  .plt		: { *(.plt) }
11
12  . = 0x2000;
13  .text		: { *(.text) }
14
15  . = 0x3000;
16  .dynamic	: { *(.dynamic) }
17  .got		: { *(.got.plt) }
18}
19