Nothing to see here, move along
1OUTPUT_FORMAT(elf64-x86-64)
2ENTRY(_start)
3
4SECTIONS {
5 . = 0x400000;
6
7 .text : {
8 *(.text .text.*)
9 }
10
11 . = ALIGN(4096);
12
13 .rodata : {
14 *(.rodata .rodata.*)
15 *(.got .got.*)
16 }
17
18 . = ALIGN(4096);
19
20 .data : {
21 *(.data .data.*)
22 }
23
24 . = ALIGN(4096);
25
26 .bss : {
27 *(.bss .bss.*)
28 }
29
30 /DISCARD/ : {
31 *(.comment)
32 *(.note.*)
33 *(.eh_frame*)
34 }
35}