reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
PHDRS {
  text PT_LOAD;
}
SECTIONS {
  .shstrtab     : { *(.shstrtab    ) }
  .debug_info   : { *(.debug_info  ) }
  .debug_line   : { *(.debug_line  ) }
  .debug_str    : { *(.debug_str   ) }
  .debug_abbrev : { *(.debug_abbrev) }

  . = 0x201000;
  .text : { *(.text .text.f) } :text
  /DISCARD/ : { *(*) }
}