brintos

brintos / llvm-project-archived public Read only

0
0
Text · 321 B · f5f89d1 Raw
15 lines · plain
1PHDRS {2  text PT_LOAD;3}4SECTIONS {5  .shstrtab     0 : { *(.shstrtab    ) }6  .debug_info   0 : { *(.debug_info  ) }7  .debug_line   0 : { *(.debug_line  ) }8  .debug_str    0 : { *(.debug_str   ) }9  .debug_abbrev 0 : { *(.debug_abbrev) }10 11  . = 0x201000;12  .text : { *(.text .text.f) } :text13  /DISCARD/ : { *(*) }14}15