debug-sections.cmake 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Content of this file originates from include/linker/debug-sections.ld
  2. # Following sections are obtained via 'ld --verbose'
  3. # Stabs debugging sections.
  4. zephyr_linker_section(NAME .stab ADDRESS 0)
  5. zephyr_linker_section(NAME .stabstr ADDRESS 0)
  6. zephyr_linker_section(NAME .stab.excl ADDRESS 0)
  7. zephyr_linker_section(NAME .stab.exclstr ADDRESS 0)
  8. zephyr_linker_section(NAME .stab.index ADDRESS 0)
  9. zephyr_linker_section(NAME .stab.indexstr ADDRESS 0)
  10. zephyr_linker_section(NAME .gnu.build.attributes ADDRESS 0)
  11. zephyr_linker_section(NAME .comment ADDRESS 0)
  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. zephyr_linker_section(NAME .debug ADDRESS 0)
  17. zephyr_linker_section(NAME .line ADDRESS 0)
  18. # GNU DWARF 1 extensions
  19. zephyr_linker_section(NAME .debug_srcinfo ADDRESS 0)
  20. zephyr_linker_section(NAME .debug_sfnames ADDRESS 0)
  21. # DWARF 1.1 and DWARF 2
  22. zephyr_linker_section(NAME .debug_aranges ADDRESS 0)
  23. zephyr_linker_section(NAME .debug_pubnames ADDRESS 0)
  24. # DWARF 2
  25. zephyr_linker_section(NAME .debug_info ADDRESS 0)
  26. zephyr_linker_section_configure(SECTION .debug_info INPUT ".gnu.linkonce.wi.*")
  27. zephyr_linker_section(NAME .debug_abbrev ADDRESS 0)
  28. zephyr_linker_section(NAME .debug_line ADDRESS 0)
  29. zephyr_linker_section_configure(SECTION .debug_line INPUT ".debug_line_end")
  30. zephyr_linker_section(NAME .debug_frame ADDRESS 0)
  31. zephyr_linker_section(NAME .debug_str ADDRESS 0)
  32. zephyr_linker_section(NAME .debug_loc ADDRESS 0)
  33. zephyr_linker_section(NAME .debug_macinfo ADDRESS 0)
  34. #SGI/MIPS DWARF 2 extensions
  35. zephyr_linker_section(NAME .debug_weaknames ADDRESS 0)
  36. zephyr_linker_section(NAME .debug_funcnames ADDRESS 0)
  37. zephyr_linker_section(NAME .debug_typenames ADDRESS 0)
  38. zephyr_linker_section(NAME .debug_varnames ADDRESS 0)
  39. # DWARF 3
  40. zephyr_linker_section(NAME .debug_pubtypes ADDRESS 0)
  41. zephyr_linker_section(NAME .debug_ranges ADDRESS 0)
  42. # DWARF Extension.
  43. zephyr_linker_section(NAME .debug_macro ADDRESS 0)