CMakeLists.txt 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. # SPDX-License-Identifier: Apache-2.0
  2. # kernel is a normal CMake library and not a zephyr_library because it
  3. # should not be --whole-archive'd
  4. # If a pre-built static library containing kernel code exists in
  5. # this directory, libkernel.a, link it with the application code
  6. # instead of building from source.
  7. zephyr_library_get_current_dir_lib_name(${ZEPHYR_BASE} libkernel_stem)
  8. set(libkernel ${CMAKE_CURRENT_SOURCE_DIR}/lib${libkernel_stem}${CMAKE_STATIC_LIBRARY_SUFFIX})
  9. unset(libkernel_stem)
  10. if(EXISTS ${libkernel})
  11. add_library(kernel INTERFACE)
  12. target_link_libraries(kernel INTERFACE ${libkernel})
  13. else()
  14. list(APPEND kernel_files
  15. main_weak.c
  16. banner.c
  17. device.c
  18. errno.c
  19. fatal.c
  20. init.c
  21. kheap.c
  22. mem_slab.c
  23. thread.c
  24. version.c
  25. )
  26. if(CONFIG_MULTITHREADING)
  27. list(APPEND kernel_files
  28. idle.c
  29. mailbox.c
  30. msg_q.c
  31. mutex.c
  32. pipes.c
  33. queue.c
  34. sem.c
  35. stack.c
  36. system_work_q.c
  37. work.c
  38. sched.c
  39. condvar.c
  40. )
  41. if(CONFIG_SMP)
  42. list(APPEND kernel_files
  43. smp.c)
  44. endif()
  45. endif()
  46. if(CONFIG_XIP)
  47. list(APPEND kernel_files
  48. xip.c)
  49. endif()
  50. if(CONFIG_DEMAND_PAGING_STATS)
  51. list(APPEND kernel_files
  52. paging/statistics.c)
  53. endif()
  54. add_library(kernel ${kernel_files})
  55. # Kernel files has the macro __ZEPHYR_SUPERVISOR__ set so that it
  56. # optimizes the code when userspace is enabled.
  57. set_target_properties(
  58. kernel
  59. PROPERTIES
  60. COMPILE_DEFINITIONS
  61. __ZEPHYR_SUPERVISOR__
  62. )
  63. target_sources_ifdef(CONFIG_STACK_CANARIES kernel PRIVATE compiler_stack_protect.c)
  64. target_sources_ifdef(CONFIG_SYS_CLOCK_EXISTS kernel PRIVATE timeout.c timer.c)
  65. target_sources_ifdef(CONFIG_ATOMIC_OPERATIONS_C kernel PRIVATE atomic_c.c)
  66. target_sources_ifdef(CONFIG_MMU kernel PRIVATE mmu.c)
  67. target_sources_ifdef(CONFIG_POLL kernel PRIVATE poll.c)
  68. target_sources_ifdef(CONFIG_KALLSYMS kernel PRIVATE kallsyms.c)
  69. target_sources_ifdef(CONFIG_THREAD_RUNTIME_STATS kernel PRIVATE cpuload_stat.c)
  70. target_sources_ifdef(CONFIG_SECTION_OVERLAY kernel PRIVATE section_overlay.c)
  71. if(${CONFIG_KERNEL_MEM_POOL})
  72. target_sources(kernel PRIVATE mempool.c)
  73. endif()
  74. target_sources_ifdef(CONFIG_THREAD_TIMER kernel PRIVATE thread_timer.c)
  75. if(NOT CONFIG_MULTITHREADING)
  76. message(WARNING "Single threaded mode (CONFIG_MULTITHREADING=n) is deprecated")
  77. endif()
  78. # The last 2 files inside the target_sources_ifdef should be
  79. # userspace_handler.c and userspace.c. If not the linker would complain.
  80. # This order has to be maintained. Any new file should be placed
  81. # above these 2 files.
  82. target_sources_ifdef(
  83. CONFIG_USERSPACE
  84. kernel PRIVATE
  85. futex.c
  86. mem_domain.c
  87. userspace_handler.c
  88. userspace.c
  89. )
  90. if(CONFIG_CACHE_MANAGEMENT AND CONFIG_USERSPACE)
  91. target_sources(kernel PRIVATE cache_handlers.c)
  92. endif()
  93. target_include_directories(kernel PRIVATE
  94. ${ZEPHYR_BASE}/kernel/include
  95. ${ARCH_DIR}/${ARCH}/include
  96. )
  97. target_link_libraries(kernel zephyr_interface)
  98. endif()
  99. add_dependencies(kernel zephyr_generated_headers)
  100. unset(libkernel)