1PHDRS
2{
3	text PT_LOAD;
4}
5
6SECTIONS {
7	.text   : { *(.text) } :text
8	.data	: { *(.data) }
9	.bss	: { *(.bss) }
10}
11