debug-sections.ld 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* SPDX-License-Identifier: Apache-2.0 */
  2. /* following sections are obtained via 'ld --verbose' */
  3. /* Stabs debugging sections. */
  4. SECTION_PROLOGUE(.stab, 0,) { *(.stab) }
  5. SECTION_PROLOGUE(.stabstr, 0,) { *(.stabstr) }
  6. SECTION_PROLOGUE(.stab.excl, 0,) { *(.stab.excl) }
  7. SECTION_PROLOGUE(.stab.exclstr, 0,) { *(.stab.exclstr) }
  8. SECTION_PROLOGUE(.stab.index, 0,) { *(.stab.index) }
  9. SECTION_PROLOGUE(.stab.indexstr, 0,) { *(.stab.indexstr) }
  10. SECTION_PROLOGUE(.gnu.build.attributes, 0,) { *(.gnu.build.attributes .gnu.build.attributes.*) }
  11. SECTION_PROLOGUE(.comment, 0,) { *(.comment) }
  12. /* DWARF debug sections.
  13. Symbols in the DWARF debugging sections are relative to the beginning
  14. of the section so we begin them at 0. */
  15. /* DWARF 1 */
  16. SECTION_PROLOGUE(.debug, 0,) { *(.debug) }
  17. SECTION_PROLOGUE(.line, 0,) { *(.line) }
  18. /* GNU DWARF 1 extensions */
  19. SECTION_PROLOGUE(.debug_srcinfo, 0,) { *(.debug_srcinfo) }
  20. SECTION_PROLOGUE(.debug_sfnames, 0,) { *(.debug_sfnames) }
  21. /* DWARF 1.1 and DWARF 2 */
  22. SECTION_PROLOGUE(.debug_aranges, 0,) { *(.debug_aranges) }
  23. SECTION_PROLOGUE(.debug_pubnames, 0,) { *(.debug_pubnames) }
  24. /* DWARF 2 */
  25. SECTION_PROLOGUE(.debug_info, 0,) { *(.debug_info .gnu.linkonce.wi.*) }
  26. SECTION_PROLOGUE(.debug_abbrev, 0,) { *(.debug_abbrev) }
  27. SECTION_PROLOGUE(.debug_line, 0,) { *(.debug_line .debug_line.* .debug_line_end ) }
  28. SECTION_PROLOGUE(.debug_frame, 0,) { *(.debug_frame) }
  29. SECTION_PROLOGUE(.debug_str, 0,) { *(.debug_str) }
  30. SECTION_PROLOGUE(.debug_loc, 0,) { *(.debug_loc) }
  31. SECTION_PROLOGUE(.debug_macinfo, 0,) { *(.debug_macinfo) }
  32. /* SGI/MIPS DWARF 2 extensions */
  33. SECTION_PROLOGUE(.debug_weaknames, 0,) { *(.debug_weaknames) }
  34. SECTION_PROLOGUE(.debug_funcnames, 0,) { *(.debug_funcnames) }
  35. SECTION_PROLOGUE(.debug_typenames, 0,) { *(.debug_typenames) }
  36. SECTION_PROLOGUE(.debug_varnames, 0,) { *(.debug_varnames) }
  37. /* DWARF 3 */
  38. SECTION_PROLOGUE(.debug_pubtypes, 0,) { *(.debug_pubtypes) }
  39. SECTION_PROLOGUE(.debug_ranges, 0,) { *(.debug_ranges) }
  40. /* DWARF Extension. */
  41. SECTION_PROLOGUE(.debug_macro, 0,) { *(.debug_macro) }