3 text PT_LOAD FILEHDR PHDRS ;
8 . = . + SIZEOF_HEADERS ;
9 .text : { *(.text) *(.rodata) } :text
10 .note : { *(.note) } :note :text
12 /* BUG: This linker script is broken here. It has not reset the
13 output segment for the following sections, so they are all
14 treated as notes... */
18 .dynstr : { *(.dynstr) }
19 .dynsym : { *(.dynsym) }
20 .got.plt : { *(.got.plt) *(.igot.plt) }