CMakeLists.txt 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # SPDX-License-Identifier: Apache-2.0
  2. if(CONFIG_GEN_ISR_TABLES)
  3. zephyr_library()
  4. zephyr_library_sources_ifdef(
  5. CONFIG_GEN_ISR_TABLES
  6. sw_isr_common.c
  7. )
  8. endif()
  9. if(NOT CONFIG_ARCH_HAS_TIMING_FUNCTIONS AND
  10. NOT CONFIG_SOC_HAS_TIMING_FUNCTIONS AND
  11. NOT CONFIG_BOARD_HAS_TIMING_FUNCTIONS)
  12. zephyr_library_sources_ifdef(CONFIG_TIMING_FUNCTIONS timing.c)
  13. endif()
  14. # Put functions and data in their own binary sections so that ld can
  15. # garbage collect them
  16. zephyr_cc_option(-ffunction-sections -fdata-sections)
  17. zephyr_linker_sources_ifdef(CONFIG_GEN_ISR_TABLES
  18. SECTIONS
  19. ${ZEPHYR_BASE}/include/linker/intlist.ld
  20. )
  21. if(CONFIG_GEN_ISR_TABLES)
  22. zephyr_linker_section(NAME .intList VMA IDT_LIST LMA IDT_LIST NOINPUT PASS 1)
  23. zephyr_linker_section_configure(SECTION .intList KEEP INPUT ".irq_info" FIRST)
  24. zephyr_linker_section_configure(SECTION .intList KEEP INPUT ".intList")
  25. zephyr_linker_section_configure(SECTION /DISCARD/ KEEP INPUT ".irq_info" PASS 2)
  26. zephyr_linker_section_configure(SECTION /DISCARD/ KEEP INPUT ".intList" PASS 2)
  27. endif()
  28. zephyr_linker_sources_ifdef(CONFIG_ARCH_HAS_RAMFUNC_SUPPORT
  29. RAM_SECTIONS
  30. ramfunc.ld
  31. )
  32. zephyr_linker_sources_ifdef(CONFIG_NOCACHE_MEMORY
  33. RAM_SECTIONS
  34. nocache.ld
  35. )
  36. # Only ARM, X86 and OPENISA_RV32M1_RISCV32 use ROM_START_OFFSET.
  37. if (DEFINED CONFIG_ARM OR DEFINED CONFIG_X86 OR DEFINED CONFIG_ARM64
  38. OR DEFINED CONFIG_SOC_OPENISA_RV32M1_RISCV32)
  39. zephyr_linker_sources(ROM_START SORT_KEY 0x0 rom_start_offset.ld)
  40. # Handled in ld.cmake
  41. endif()
  42. # isr_tables is a normal CMake library and not a zephyr_library because it
  43. # should not be --whole-archive'd
  44. if (CONFIG_GEN_ISR_TABLES)
  45. add_library(isr_tables
  46. isr_tables.c
  47. )
  48. add_dependencies(isr_tables zephyr_generated_headers)
  49. target_link_libraries(isr_tables zephyr_interface)
  50. zephyr_library_link_libraries(isr_tables)
  51. endif()
  52. if(CONFIG_COVERAGE)
  53. zephyr_compile_options($<TARGET_PROPERTY:compiler,coverage>)
  54. zephyr_link_libraries($<TARGET_PROPERTY:linker,coverage>)
  55. endif()