CMakeLists.txt 63 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726
  1. # SPDX-License-Identifier: Apache-2.0
  2. # *DOCUMENTATION*
  3. #
  4. # Note that this is *NOT* the top-level CMakeLists.txt. That's in the
  5. # application. See the Application Development Primer documentation
  6. # for details.
  7. #
  8. # To see a list of typical targets execute "make usage"
  9. # More info can be located in ./README.rst
  10. # Comments in this file are targeted only to the developer, do not
  11. # expect to learn how to build the kernel reading this file.
  12. if(NOT DEFINED ZEPHYR_BINARY_DIR)
  13. message(FATAL_ERROR "A user error has occurred.
  14. cmake was invoked with '${CMAKE_CURRENT_LIST_DIR}' specified as the source directory,
  15. but it must be invoked with an application source directory,
  16. such as '${CMAKE_CURRENT_LIST_DIR}/samples/hello_world'.
  17. Debug variables:
  18. CMAKE_CACHEFILE_DIR: ${CMAKE_CACHEFILE_DIR}
  19. ")
  20. endif()
  21. # See https://gitlab.kitware.com/cmake/cmake/issues/16228
  22. # and https://cmake.org/pipermail/cmake/2019-May/thread.html#69496
  23. if(NOT ZEPHYR_BASE STREQUAL CMAKE_CURRENT_SOURCE_DIR)
  24. message(WARNING "ZEPHYR_BASE doesn't match CMAKE_CURRENT_SOURCE_DIR
  25. ZEPHYR_BASE = ${ZEPHYR_BASE}
  26. PWD = $ENV{PWD}
  27. CMAKE_CURRENT_SOURCE_DIR = ${CMAKE_CURRENT_SOURCE_DIR}
  28. You may be using a mix of symbolic links and real paths which causes \
  29. subtle and hard to debug CMake issues.")
  30. endif()
  31. # For Zephyr more specifically this breaks (at least)
  32. # -fmacro-prefix-map=${ZEPHYR_BASE}=
  33. # Verify that the toolchain can compile a dummy file, if it is not we
  34. # won't be able to test for compatibility with certain C flags.
  35. zephyr_check_compiler_flag(C "" toolchain_is_ok)
  36. assert(toolchain_is_ok "The toolchain is unable to build a dummy C file. See CMakeError.log.")
  37. # In some cases the "final" things are not used at all and "_prebuilt"
  38. # is the last station. See "logical_target_for_zephyr_elf" below for
  39. # details.
  40. set(CMAKE_EXECUTABLE_SUFFIX .elf)
  41. set(ZEPHYR_PREBUILT_EXECUTABLE zephyr_prebuilt)
  42. set(ZEPHYR_FINAL_EXECUTABLE zephyr_final)
  43. # Set some phony targets to collect dependencies
  44. set(OFFSETS_H_TARGET offsets_h)
  45. set(SYSCALL_LIST_H_TARGET syscall_list_h_target)
  46. set(DRIVER_VALIDATION_H_TARGET driver_validation_h_target)
  47. set(KOBJ_TYPES_H_TARGET kobj_types_h_target)
  48. set(PARSE_SYSCALLS_TARGET parse_syscalls_target)
  49. define_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT BRIEF_DOCS " " FULL_DOCS " ")
  50. set_property( GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf32-little${ARCH}) # BFD format
  51. # "zephyr_interface" is a source-less library that encapsulates all the global
  52. # compiler options needed by all source files. All zephyr libraries,
  53. # including the library named "zephyr" link with this library to
  54. # obtain these flags.
  55. # https://cmake.org/cmake/help/latest/manual/cmake-buildsystem.7.html#interface-libraries
  56. add_library(zephyr_interface INTERFACE)
  57. # "zephyr" is a catch-all CMake library for source files that can be
  58. # built purely with the include paths, defines, and other compiler
  59. # flags that come with zephyr_interface.
  60. zephyr_library_named(zephyr)
  61. zephyr_include_directories(
  62. include
  63. ${PROJECT_BINARY_DIR}/include/generated
  64. ${USERINCLUDE}
  65. ${STDINCLUDE}
  66. )
  67. include(${ZEPHYR_BASE}/cmake/linker_script/${ARCH}/linker.cmake OPTIONAL)
  68. # Don't add non-existing include directories, it creates noise and
  69. # warnings in some tooling
  70. foreach(optional_include_dir
  71. ${SOC_DIR}/${ARCH}/${SOC_PATH}
  72. ${SOC_DIR}/${ARCH}/${SOC_PATH}/include
  73. ${SOC_DIR}/${ARCH}/${SOC_FAMILY}/include
  74. ${SOC_DIR}/${ARCH}/${SOC_FAMILY}/common/include
  75. )
  76. if(EXISTS ${optional_include_dir})
  77. zephyr_include_directories(${optional_include_dir})
  78. endif()
  79. endforeach()
  80. zephyr_compile_definitions(
  81. KERNEL
  82. __ZEPHYR__=1
  83. )
  84. # Ensure that include/toolchain.h includes toolchain/other.h for all off-tree toolchains
  85. if(TOOLCHAIN_USE_CUSTOM)
  86. zephyr_compile_definitions(__TOOLCHAIN_CUSTOM__)
  87. endif()
  88. # @Intent: Set compiler flags to enable buffer overflow checks in libc functions
  89. # @config in CONFIG_NO_OPTIMIZATIONS optional : Optimizations may affect security
  90. zephyr_compile_definitions($<TARGET_PROPERTY:compiler,security_fortify> )
  91. # @Intent: Set compiler flags to detect general stack overflows across all functions
  92. if(CONFIG_STACK_CANARIES)
  93. zephyr_compile_options($<TARGET_PROPERTY:compiler,security_canaries>)
  94. endif()
  95. if(BUILD_VERSION)
  96. zephyr_compile_definitions(
  97. BUILD_VERSION=${BUILD_VERSION}
  98. )
  99. endif()
  100. # @Intent: Obtain compiler optimizations flags and store in variables
  101. # @details:
  102. # Kconfig.zephyr "Optimization level" is a kconfig choice, ensuring
  103. # only *one* of CONFIG_{NO,DEBUG,SPEED,SIZE}_OPTIMIZATIONS is set.
  104. # Refer to Kconfig.zephyr for selection logic and description of these choices.
  105. # toolchain_cc_optimize_*() macros must provide the mapping from these kconfigs
  106. # to compiler flags. Each macro will store the flags in a CMake variable, whose
  107. # name is passed as argument (somewhat like by reference).
  108. #
  109. # If the user wants to tweak the optimizations, there are two ways:
  110. # 1) Using EXTRA_CFLAGS which is applied regardless of kconfig choice, or
  111. # 2) Rely on override support being implemented by your toolchain_cc_optimize_*()
  112. #
  113. get_property(OPTIMIZE_FOR_NO_OPTIMIZATIONS_FLAG TARGET compiler PROPERTY no_optimization)
  114. get_property(OPTIMIZE_FOR_DEBUG_FLAG TARGET compiler PROPERTY optimization_debug)
  115. get_property(OPTIMIZE_FOR_SPEED_FLAG TARGET compiler PROPERTY optimization_speed)
  116. get_property(OPTIMIZE_FOR_SIZE_FLAG TARGET compiler PROPERTY optimization_size)
  117. # From kconfig choice, pick the actual OPTIMIZATION_FLAG to use.
  118. # Kconfig choice ensures only one of these CONFIG_*_OPTIMIZATIONS is set.
  119. if(CONFIG_NO_OPTIMIZATIONS)
  120. set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_NO_OPTIMIZATIONS_FLAG})
  121. elseif(CONFIG_DEBUG_OPTIMIZATIONS)
  122. set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_DEBUG_FLAG})
  123. elseif(CONFIG_SPEED_OPTIMIZATIONS)
  124. set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_SPEED_FLAG})
  125. elseif(CONFIG_SIZE_OPTIMIZATIONS)
  126. set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_SIZE_FLAG}) # Default in kconfig
  127. else()
  128. assert(0 "Unreachable code. Expected optimization level to have been chosen. See Kconfig.zephyr")
  129. endif()
  130. if(NOT CONFIG_ARCH_IS_SET)
  131. message(WARNING "\
  132. None of the CONFIG_<arch> (e.g. CONFIG_X86) symbols are set. \
  133. Select one of them from the SOC_SERIES_* symbol or, lacking that, from the \
  134. SOC_* symbol.")
  135. endif()
  136. # Apply the final optimization flag(s)
  137. zephyr_compile_options(${OPTIMIZATION_FLAG})
  138. # @Intent: Obtain compiler specific flags related to C++ that are not influenced by kconfig
  139. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,required>>)
  140. # @Intent: Obtain compiler specific flags for compiling under different ISO standards of C++
  141. if(CONFIG_CPLUSPLUS)
  142. # From kconfig choice, pick a single dialect.
  143. # Kconfig choice ensures only one of these CONFIG_STD_CPP* is set.
  144. if(CONFIG_STD_CPP98)
  145. set(STD_CPP_DIALECT_FLAGS $<TARGET_PROPERTY:compiler-cpp,dialect_cpp98>)
  146. elseif(CONFIG_STD_CPP11)
  147. set(STD_CPP_DIALECT_FLAGS $<TARGET_PROPERTY:compiler-cpp,dialect_cpp11>) # Default in kconfig
  148. elseif(CONFIG_STD_CPP14)
  149. set(STD_CPP_DIALECT_FLAGS $<TARGET_PROPERTY:compiler-cpp,dialect_cpp14>)
  150. elseif(CONFIG_STD_CPP17)
  151. set(STD_CPP_DIALECT_FLAGS $<TARGET_PROPERTY:compiler-cpp,dialect_cpp17>)
  152. elseif(CONFIG_STD_CPP2A)
  153. set(STD_CPP_DIALECT_FLAGS $<TARGET_PROPERTY:compiler-cpp,dialect_cpp2a>)
  154. elseif(CONFIG_STD_CPP20)
  155. set(STD_CPP_DIALECT_FLAGS $<TARGET_PROPERTY:compiler-cpp,dialect_cpp20>)
  156. elseif(CONFIG_STD_CPP2B)
  157. set(STD_CPP_DIALECT_FLAGS $<TARGET_PROPERTY:compiler-cpp,dialect_cpp2b>)
  158. else()
  159. assert(0 "Unreachable code. Expected C++ standard to have been chosen. See Kconfig.zephyr.")
  160. endif()
  161. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:${STD_CPP_DIALECT_FLAGS}>)
  162. endif()
  163. if(NOT CONFIG_EXCEPTIONS)
  164. # @Intent: Obtain compiler specific flags related to C++ Exceptions
  165. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,no_exceptions>>)
  166. endif()
  167. if(NOT CONFIG_RTTI)
  168. # @Intent: Obtain compiler specific flags related to C++ Run Time Type Information
  169. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,no_rtti>>)
  170. endif()
  171. if(CONFIG_MISRA_SANE)
  172. # @Intent: Obtain toolchain compiler flags relating to MISRA.
  173. zephyr_compile_options($<$<COMPILE_LANGUAGE:C>:$<TARGET_PROPERTY:compiler,warning_error_misra_sane>>)
  174. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,warning_error_misra_sane>>)
  175. endif()
  176. # This is intend to be temporary. Once we have fixed the violations that
  177. # prevents build Zephyr, these flags shall be part of the default flags.
  178. if(CONFIG_CODING_GUIDELINE_CHECK)
  179. # @Intent: Obtain toolchain compiler flags relating to coding guideline
  180. zephyr_compile_options($<$<COMPILE_LANGUAGE:C>:$<TARGET_PROPERTY:compiler,warning_error_coding_guideline>>)
  181. endif()
  182. # @Intent: Set compiler specific macro inclusion of AUTOCONF_H
  183. zephyr_compile_options("SHELL: $<TARGET_PROPERTY:compiler,imacros> ${AUTOCONF_H}")
  184. # @Intent: Set compiler specific flag for bare metal freestanding option
  185. zephyr_compile_options($<TARGET_PROPERTY:compiler,freestanding>)
  186. # @Intent: Set compiler specific flag for tentative definitions, no-common
  187. zephyr_compile_options($<TARGET_PROPERTY:compiler,no_common>)
  188. # @Intent: Set compiler specific flag for production of debug information
  189. zephyr_compile_options($<TARGET_PROPERTY:compiler,debug>)
  190. if(CONFIG_COMPILER_COLOR_DIAGNOSTICS)
  191. # @Intent: Set compiler specific flag for diagnostic messages
  192. zephyr_compile_options($<TARGET_PROPERTY:compiler,diagnostic>)
  193. endif()
  194. zephyr_compile_options(
  195. ${TOOLCHAIN_C_FLAGS}
  196. )
  197. # @Intent: Obtain compiler specific flags related to assembly
  198. # ToDo: Remember to get feedback from Oticon on this, as they might use the `ASM_BASE_FLAG` since this is done this way.
  199. zephyr_compile_options($<$<COMPILE_LANGUAGE:ASM>:$<TARGET_PROPERTY:asm,required>>)
  200. # @Intent: Enforce standard integer type correspondance to match Zephyr usage.
  201. # (must be after compiler specific flags)
  202. if(NOT CONFIG_ARCH_POSIX)
  203. # `zephyr_stdint.h` is not included for the POSIX (native) arch because it
  204. # compiles with the host toolchain/headers and there can be conflicts if we
  205. # arbitrarily redefine our own type system (see #37718).
  206. zephyr_compile_options("SHELL: $<TARGET_PROPERTY:compiler,imacros> ${ZEPHYR_BASE}/include/toolchain/zephyr_stdint.h")
  207. endif()
  208. # Common toolchain-agnostic assembly flags
  209. zephyr_compile_options(
  210. $<$<COMPILE_LANGUAGE:ASM>:-D_ASMLANGUAGE>
  211. )
  212. # @Intent: Set fundamental linker specific flags
  213. toolchain_ld_base()
  214. toolchain_ld_force_undefined_symbols(
  215. _OffsetAbsSyms
  216. _ConfigAbsSyms
  217. )
  218. if(NOT CONFIG_NATIVE_APPLICATION)
  219. # @Intent: Set linker specific flags for bare metal target
  220. toolchain_ld_baremetal()
  221. endif()
  222. if(CONFIG_LIB_CPLUSPLUS)
  223. # @Intent: Set linker specific flags for C++
  224. toolchain_ld_cpp()
  225. endif()
  226. # @Intent: Add the basic toolchain warning flags
  227. zephyr_compile_options($<$<COMPILE_LANGUAGE:C>:$<TARGET_PROPERTY:compiler,warning_base>>)
  228. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,warning_base>>)
  229. # ==========================================================================
  230. #
  231. # cmake -DW=... settings
  232. #
  233. # W=1 - warnings that may be relevant and does not occur too often
  234. # W=2 - warnings that occur quite often but may still be relevant
  235. # W=3 - the more obscure warnings, can most likely be ignored
  236. # ==========================================================================
  237. # @Intent: Add cmake -DW toolchain supported warnings, if any
  238. if(W MATCHES "1")
  239. zephyr_compile_options($<$<COMPILE_LANGUAGE:C>:$<TARGET_PROPERTY:compiler,warning_dw_1>>)
  240. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,warning_dw_1>>)
  241. endif()
  242. if(W MATCHES "2")
  243. zephyr_compile_options($<$<COMPILE_LANGUAGE:C>:$<TARGET_PROPERTY:compiler,warning_dw_2>>)
  244. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,warning_dw_2>>)
  245. endif()
  246. if(W MATCHES "3")
  247. zephyr_compile_options($<$<COMPILE_LANGUAGE:C>:$<TARGET_PROPERTY:compiler,warning_dw_3>>)
  248. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,warning_dw_3>>)
  249. endif()
  250. # @Intent: Add extended, more specific, toolchain warning flags
  251. zephyr_compile_options($<TARGET_PROPERTY:compiler,warning_extended>)
  252. # @Intent: Trigger an error when a declaration does not specify a type
  253. zephyr_compile_options($<$<COMPILE_LANGUAGE:C>:$<TARGET_PROPERTY:compiler,warning_error_implicit_int>>)
  254. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,warning_error_implicit_int>>)
  255. # Allow the user to inject options when calling cmake, e.g.
  256. # 'cmake -DEXTRA_CFLAGS="-Werror -Wno-deprecated-declarations" ..'
  257. include(cmake/extra_flags.cmake)
  258. zephyr_cc_option(-fno-asynchronous-unwind-tables)
  259. zephyr_cc_option(-fno-pie)
  260. zephyr_cc_option(-fno-pic)
  261. zephyr_cc_option(-fno-strict-overflow)
  262. if(CONFIG_THREAD_LOCAL_STORAGE)
  263. # Only support local exec TLS model at this point.
  264. zephyr_cc_option(-ftls-model=local-exec)
  265. endif()
  266. if(CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT)
  267. if(CONFIG_OMIT_FRAME_POINTER)
  268. zephyr_cc_option(-fomit-frame-pointer)
  269. else()
  270. zephyr_cc_option(-fno-omit-frame-pointer)
  271. endif()
  272. endif()
  273. separate_arguments(COMPILER_OPT_AS_LIST UNIX_COMMAND ${CONFIG_COMPILER_OPT})
  274. zephyr_compile_options(${COMPILER_OPT_AS_LIST})
  275. # TODO: Include arch compiler options at this point.
  276. if(NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
  277. # GCC assumed
  278. zephyr_cc_option(-fno-reorder-functions)
  279. if(NOT ${ZEPHYR_TOOLCHAIN_VARIANT} STREQUAL "xcc")
  280. zephyr_cc_option(-fno-defer-pop)
  281. endif()
  282. endif()
  283. zephyr_cc_option_ifdef(CONFIG_STACK_USAGE -fstack-usage)
  284. # If the compiler supports it, strip the ${ZEPHYR_BASE} prefix from the
  285. # __FILE__ macro used in __ASSERT*, in the
  286. # .noinit."/home/joe/zephyr/fu/bar.c" section names and in any
  287. # application code. This saves some memory, stops leaking user locations
  288. # in binaries, makes failure logs more deterministic and most
  289. # importantly makes builds more deterministic
  290. # If several match then the last one wins. This matters for instances
  291. # like tests/ and samples/: they're inside all of them! Then let's
  292. # strip as little as possible.
  293. zephyr_cc_option(-fmacro-prefix-map=${CMAKE_SOURCE_DIR}=CMAKE_SOURCE_DIR)
  294. zephyr_cc_option(-fmacro-prefix-map=${ZEPHYR_BASE}=ZEPHYR_BASE)
  295. if(WEST_TOPDIR)
  296. zephyr_cc_option(-fmacro-prefix-map=${WEST_TOPDIR}=WEST_TOPDIR)
  297. endif()
  298. # TODO: Archiver arguments
  299. # ar_option(D)
  300. # Declare MPU userspace dependencies before the linker scripts to make
  301. # sure the order of dependencies are met
  302. if(CONFIG_USERSPACE)
  303. add_custom_target(app_smem)
  304. set(APP_SMEM_ALIGNED_DEP app_smem_aligned_linker)
  305. set(APP_SMEM_UNALIGNED_DEP app_smem_unaligned_linker)
  306. endif()
  307. if(CONFIG_USERSPACE)
  308. set(KOBJECT_LINKER_DEP kobject_linker)
  309. endif()
  310. get_property(TOPT GLOBAL PROPERTY TOPT)
  311. set_ifndef( TOPT -Wl,-T) # clang doesn't pick -T for some reason and complains,
  312. # while -Wl,-T works for both, gcc and clang
  313. if(CONFIG_HAVE_CUSTOM_LINKER_SCRIPT)
  314. set(LINKER_SCRIPT ${APPLICATION_SOURCE_DIR}/${CONFIG_CUSTOM_LINKER_SCRIPT})
  315. if(NOT EXISTS ${LINKER_SCRIPT})
  316. set(LINKER_SCRIPT ${CONFIG_CUSTOM_LINKER_SCRIPT})
  317. assert_exists(CONFIG_CUSTOM_LINKER_SCRIPT)
  318. endif()
  319. else()
  320. # Try a board specific linker file
  321. set(LINKER_SCRIPT ${BOARD_DIR}/linker.ld)
  322. if(NOT EXISTS ${LINKER_SCRIPT})
  323. # If not available, try an SoC specific linker file
  324. set(LINKER_SCRIPT ${SOC_DIR}/${ARCH}/${SOC_PATH}/linker.ld)
  325. endif()
  326. endif()
  327. if(NOT EXISTS ${LINKER_SCRIPT})
  328. message(FATAL_ERROR "Could not find linker script: '${LINKER_SCRIPT}'. Corrupted configuration?")
  329. endif()
  330. configure_file(version.h.in ${PROJECT_BINARY_DIR}/include/generated/version.h)
  331. # Error-out when the deprecated naming convention is found (until
  332. # after 1.14.0 has been released)
  333. foreach(path
  334. ${BOARD_DIR}/dts.fixup
  335. ${PROJECT_SOURCE_DIR}/soc/${ARCH}/${SOC_PATH}/dts.fixup
  336. ${APPLICATION_SOURCE_DIR}/dts.fixup
  337. )
  338. if(EXISTS ${path})
  339. message(FATAL_ERROR
  340. "A deprecated filename has been detected. Porting is required."
  341. "The file '${path}' exists, but it should be named dts_fixup.h instead."
  342. "See https://github.com/zephyrproject-rtos/zephyr/pull/10352 for more details"
  343. )
  344. endif()
  345. endforeach()
  346. set_ifndef( DTS_BOARD_FIXUP_FILE ${BOARD_DIR}/dts_fixup.h)
  347. set_ifndef( DTS_SOC_FIXUP_FILE ${SOC_DIR}/${ARCH}/${SOC_PATH}/dts_fixup.h)
  348. set( DTS_APP_FIXUP_FILE ${APPLICATION_SOURCE_DIR}/dts_fixup.h)
  349. set_ifndef(DTS_CAT_OF_FIXUP_FILES ${ZEPHYR_BINARY_DIR}/include/generated/devicetree_fixups.h)
  350. # Concatenate the fixups into a single header file for easy
  351. # #include'ing
  352. file(WRITE ${DTS_CAT_OF_FIXUP_FILES} "/* May only be included by devicetree.h */\n\n")
  353. set(DISCOVERED_FIXUP_FILES)
  354. foreach(fixup_file
  355. ${DTS_BOARD_FIXUP_FILE}
  356. ${DTS_SOC_FIXUP_FILE}
  357. ${DTS_APP_FIXUP_FILE}
  358. ${shield_dts_fixups}
  359. )
  360. if(EXISTS ${fixup_file})
  361. file(READ ${fixup_file} contents)
  362. file(APPEND ${DTS_CAT_OF_FIXUP_FILES} "${contents}")
  363. string(APPEND DISCOVERED_FIXUP_FILES "- ${fixup_file}\n")
  364. endif()
  365. endforeach()
  366. if (DISCOVERED_FIXUP_FILES)
  367. message(WARNING "One or more dts_fixup.h files detected:\n${DISCOVERED_FIXUP_FILES}Use of these files is deprecated; use the devicetree.h API instead.")
  368. endif()
  369. # Unfortunately, the order in which CMakeLists.txt code is processed
  370. # matters so we need to be careful about how we order the processing
  371. # of subdirectories. One example is "Compiler flags added late in the
  372. # build are not exported to external build systems #5605"; when we
  373. # integrate with an external build system we read out all compiler
  374. # flags when the external project is created. So an external project
  375. # defined in subsys or ext will not get global flags added by drivers/
  376. # or tests/ as the subdirectories are ordered now.
  377. #
  378. # Another example of when the order matters is the reading and writing
  379. # of global properties such as ZEPHYR_LIBS or
  380. # GENERATED_KERNEL_OBJECT_FILES.
  381. #
  382. # Arch is placed early because it defines important compiler flags
  383. # that must be exported to external build systems defined in
  384. # e.g. subsys/.
  385. add_subdirectory(arch)
  386. add_subdirectory(lib)
  387. # We use include instead of add_subdirectory to avoid creating a new directory scope.
  388. # This is because source file properties are directory scoped, including the GENERATED
  389. # property which is set implicitly for custom command outputs
  390. include(misc/generated/CMakeLists.txt)
  391. if(EXISTS ${SOC_DIR}/${ARCH}/CMakeLists.txt)
  392. add_subdirectory(${SOC_DIR}/${ARCH} soc/${ARCH})
  393. else()
  394. add_subdirectory(${SOC_DIR}/${ARCH}/${SOC_PATH} soc/${ARCH}/${SOC_PATH})
  395. endif()
  396. add_subdirectory(boards)
  397. add_subdirectory(subsys)
  398. add_subdirectory(drivers)
  399. # Include zephyr modules generated CMake file.
  400. foreach(module_name ${ZEPHYR_MODULE_NAMES})
  401. # Note the second, binary_dir parameter requires the added
  402. # subdirectory to have its own, local cmake target(s). If not then
  403. # this binary_dir is created but stays empty. Object files land in
  404. # the main binary dir instead.
  405. # https://cmake.org/pipermail/cmake/2019-June/069547.html
  406. zephyr_string(SANITIZE TOUPPER MODULE_NAME_UPPER ${module_name})
  407. if(NOT ${ZEPHYR_${MODULE_NAME_UPPER}_CMAKE_DIR} STREQUAL "")
  408. set(ZEPHYR_CURRENT_MODULE_DIR ${ZEPHYR_${MODULE_NAME_UPPER}_MODULE_DIR})
  409. set(ZEPHYR_CURRENT_CMAKE_DIR ${ZEPHYR_${MODULE_NAME_UPPER}_CMAKE_DIR})
  410. add_subdirectory(${ZEPHYR_CURRENT_CMAKE_DIR} ${CMAKE_BINARY_DIR}/modules/${module_name})
  411. endif()
  412. endforeach()
  413. # Done processing modules, clear ZEPHYR_CURRENT_MODULE_DIR and ZEPHYR_CURRENT_CMAKE_DIR.
  414. set(ZEPHYR_CURRENT_MODULE_DIR)
  415. set(ZEPHYR_CURRENT_CMAKE_DIR)
  416. set(syscall_list_h ${CMAKE_CURRENT_BINARY_DIR}/include/generated/syscall_list.h)
  417. set(syscalls_json ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls.json)
  418. set(struct_tags_json ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/struct_tags.json)
  419. # The syscalls subdirs txt file is constructed by python containing a list of folders to use for
  420. # dependency handling, including empty folders.
  421. # Windows: The list is used to specify DIRECTORY list with CMAKE_CONFIGURE_DEPENDS attribute.
  422. # Other OS: The list will update whenever a file is added/removed/modified and ensure a re-build.
  423. set(syscalls_subdirs_txt ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_subdirs.txt)
  424. # As syscalls_subdirs_txt is updated whenever a file is modified, this file can not be used for
  425. # monitoring of added / removed folders. A trigger file is thus used for correct dependency
  426. # handling. The trigger file will update when a folder is added / removed.
  427. set(syscalls_subdirs_trigger ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_subdirs.trigger)
  428. if(NOT (${CMAKE_HOST_SYSTEM_NAME} STREQUAL Windows))
  429. set(syscalls_links --create-links ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_links)
  430. endif()
  431. # When running CMake it must be ensured that all dependencies are correctly acquired.
  432. execute_process(
  433. COMMAND
  434. ${PYTHON_EXECUTABLE}
  435. ${ZEPHYR_BASE}/scripts/subfolder_list.py
  436. --directory ${ZEPHYR_BASE}/include # Walk this directory
  437. --out-file ${syscalls_subdirs_txt} # Write file with discovered folder
  438. --trigger ${syscalls_subdirs_trigger} # Trigger file that is used for json generation
  439. ${syscalls_links} # If defined, create symlinks for dependencies
  440. )
  441. file(STRINGS ${syscalls_subdirs_txt} PARSE_SYSCALLS_PATHS_DEPENDS ENCODING UTF-8)
  442. if(${CMAKE_HOST_SYSTEM_NAME} STREQUAL Windows)
  443. # On windows only adding/removing files or folders will be reflected in depends.
  444. # Hence adding a file requires CMake to re-run to add this file to the file list.
  445. set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${PARSE_SYSCALLS_PATHS_DEPENDS})
  446. # Also On Windows each header file must be monitored as file modifications are not reflected
  447. # on directory level.
  448. file(GLOB_RECURSE PARSE_SYSCALLS_HEADER_DEPENDS ${ZEPHYR_BASE}/include/*.h)
  449. else()
  450. # The syscall parsing depends on the folders in order to detect add/removed/modified files.
  451. # When a folder is removed, CMake will try to find a target that creates that dependency.
  452. # This command sets up the target for CMake to find.
  453. # Without this code, CMake will fail with the following error:
  454. # <folder> needed by '<target>', missing and no known rule to make it
  455. # when a folder is removed.
  456. add_custom_command(OUTPUT ${PARSE_SYSCALLS_PATHS_DEPENDS}
  457. COMMAND ${CMAKE_COMMAND} -E echo ""
  458. COMMENT "Preparing syscall dependency handling"
  459. )
  460. add_custom_command(
  461. OUTPUT
  462. ${syscalls_subdirs_trigger}
  463. COMMAND
  464. ${PYTHON_EXECUTABLE}
  465. ${ZEPHYR_BASE}/scripts/subfolder_list.py
  466. --directory ${ZEPHYR_BASE}/include # Walk this directory
  467. --out-file ${syscalls_subdirs_txt} # Write file with discovered folder
  468. --trigger ${syscalls_subdirs_trigger} # Trigger file that is used for json generation
  469. ${syscalls_links} # If defined, create symlinks for dependencies
  470. DEPENDS ${PARSE_SYSCALLS_PATHS_DEPENDS}
  471. )
  472. # Ensure subdir file always exists when specifying CMake dependency.
  473. if(NOT EXISTS ${syscalls_subdirs_txt})
  474. file(WRITE ${syscalls_subdirs_txt} "")
  475. endif()
  476. # On other OS'es, modifying a file is reflected on the folder timestamp and hence detected
  477. # when using depend on directory level.
  478. # Thus CMake only needs to re-run when sub-directories are added / removed, which is indicated
  479. # using a trigger file.
  480. set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${syscalls_subdirs_txt})
  481. endif()
  482. # syscall declarations are searched for in the SYSCALL_INCLUDE_DIRS
  483. if(CONFIG_APPLICATION_DEFINED_SYSCALL)
  484. list(APPEND SYSCALL_INCLUDE_DIRS ${APPLICATION_SOURCE_DIR})
  485. endif()
  486. if(CONFIG_ZTEST)
  487. list(APPEND SYSCALL_INCLUDE_DIRS ${ZEPHYR_BASE}/subsys/testsuite/ztest/include)
  488. endif()
  489. foreach(d ${SYSCALL_INCLUDE_DIRS})
  490. list(APPEND parse_syscalls_include_args
  491. --include ${d}
  492. )
  493. endforeach()
  494. add_custom_command(
  495. OUTPUT
  496. ${syscalls_json}
  497. ${struct_tags_json}
  498. COMMAND
  499. ${PYTHON_EXECUTABLE}
  500. ${ZEPHYR_BASE}/scripts/parse_syscalls.py
  501. --include ${ZEPHYR_BASE}/include # Read files from this dir
  502. --include ${ZEPHYR_BASE}/drivers # For net sockets
  503. --include ${ZEPHYR_BASE}/subsys/net # More net sockets
  504. ${parse_syscalls_include_args} # Read files from these dirs also
  505. --json-file ${syscalls_json} # Write this file
  506. --tag-struct-file ${struct_tags_json} # Write subsystem list to this file
  507. DEPENDS ${syscalls_subdirs_trigger} ${PARSE_SYSCALLS_HEADER_DEPENDS}
  508. )
  509. add_custom_target(${SYSCALL_LIST_H_TARGET} DEPENDS ${syscall_list_h})
  510. set_property(TARGET ${SYSCALL_LIST_H_TARGET}
  511. APPEND PROPERTY
  512. ADDITIONAL_CLEAN_FILES
  513. ${CMAKE_CURRENT_BINARY_DIR}/include/generated/syscalls
  514. )
  515. add_custom_target(${PARSE_SYSCALLS_TARGET}
  516. DEPENDS
  517. ${syscalls_json}
  518. ${struct_tags_json}
  519. )
  520. # 64-bit systems do not require special handling of 64-bit system call
  521. # parameters or return values, indicate this to the system call boilerplate
  522. # generation script.
  523. if(CONFIG_64BIT)
  524. set(SYSCALL_LONG_REGISTERS_ARG --long-registers)
  525. endif()
  526. if(CONFIG_TIMEOUT_64BIT)
  527. set(SYSCALL_SPLIT_TIMEOUT_ARG --split-type k_timeout_t)
  528. endif()
  529. add_custom_command(OUTPUT include/generated/syscall_dispatch.c ${syscall_list_h}
  530. # Also, some files are written to include/generated/syscalls/
  531. COMMAND
  532. ${PYTHON_EXECUTABLE}
  533. ${ZEPHYR_BASE}/scripts/gen_syscalls.py
  534. --json-file ${syscalls_json} # Read this file
  535. --base-output include/generated/syscalls # Write to this dir
  536. --syscall-dispatch include/generated/syscall_dispatch.c # Write this file
  537. --syscall-list ${syscall_list_h}
  538. ${SYSCALL_LONG_REGISTERS_ARG}
  539. ${SYSCALL_SPLIT_TIMEOUT_ARG}
  540. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  541. DEPENDS ${PARSE_SYSCALLS_TARGET}
  542. )
  543. # This is passed into all calls to the gen_kobject_list.py script.
  544. set(gen_kobject_list_include_args --include ${struct_tags_json})
  545. set(DRV_VALIDATION ${PROJECT_BINARY_DIR}/include/generated/driver-validation.h)
  546. add_custom_command(
  547. OUTPUT ${DRV_VALIDATION}
  548. COMMAND
  549. ${PYTHON_EXECUTABLE}
  550. ${ZEPHYR_BASE}/scripts/gen_kobject_list.py
  551. --validation-output ${DRV_VALIDATION}
  552. ${gen_kobject_list_include_args}
  553. $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
  554. DEPENDS
  555. ${ZEPHYR_BASE}/scripts/gen_kobject_list.py
  556. ${PARSE_SYSCALLS_TARGET}
  557. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  558. )
  559. add_custom_target(${DRIVER_VALIDATION_H_TARGET} DEPENDS ${DRV_VALIDATION})
  560. include(${ZEPHYR_BASE}/cmake/kobj.cmake)
  561. gen_kobj(KOBJ_INCLUDE_PATH)
  562. # Add a pseudo-target that is up-to-date when all generated headers
  563. # are up-to-date.
  564. add_custom_target(zephyr_generated_headers)
  565. add_dependencies(zephyr_generated_headers
  566. offsets_h
  567. )
  568. # Generate offsets.c.obj from offsets.c
  569. # Generate offsets.h from offsets.c.obj
  570. set(OFFSETS_LIB offsets)
  571. set(OFFSETS_C_PATH ${ARCH_DIR}/${ARCH}/core/offsets/offsets.c)
  572. set(OFFSETS_H_PATH ${PROJECT_BINARY_DIR}/include/generated/offsets.h)
  573. add_library( ${OFFSETS_LIB} OBJECT ${OFFSETS_C_PATH})
  574. target_include_directories(${OFFSETS_LIB} PRIVATE
  575. kernel/include
  576. ${ARCH_DIR}/${ARCH}/include
  577. )
  578. target_link_libraries(${OFFSETS_LIB} zephyr_interface)
  579. add_dependencies(zephyr_interface
  580. ${SYSCALL_LIST_H_TARGET}
  581. ${DRIVER_VALIDATION_H_TARGET}
  582. ${KOBJ_TYPES_H_TARGET}
  583. )
  584. add_custom_command(
  585. OUTPUT ${OFFSETS_H_PATH}
  586. COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/gen_offset_header.py
  587. -i $<TARGET_OBJECTS:${OFFSETS_LIB}>
  588. -o ${OFFSETS_H_PATH}
  589. DEPENDS
  590. ${OFFSETS_LIB}
  591. $<TARGET_OBJECTS:${OFFSETS_LIB}>
  592. )
  593. add_custom_target(${OFFSETS_H_TARGET} DEPENDS ${OFFSETS_H_PATH})
  594. zephyr_get_include_directories_for_lang(C ZEPHYR_INCLUDES)
  595. add_subdirectory(kernel)
  596. # Read list content
  597. get_property(ZEPHYR_LIBS_PROPERTY GLOBAL PROPERTY ZEPHYR_LIBS)
  598. foreach(zephyr_lib ${ZEPHYR_LIBS_PROPERTY})
  599. get_property(lib_type TARGET ${zephyr_lib} PROPERTY TYPE)
  600. # To prevent CMake failure when a driver is enabled, for example: REGULATOR=y
  601. # we disable any Zephyr libraries without sources and adds the `empty_file.c`.
  602. if(${lib_type} STREQUAL STATIC_LIBRARY
  603. AND NOT ${zephyr_lib} STREQUAL app
  604. )
  605. get_property(source_list TARGET ${zephyr_lib} PROPERTY SOURCES)
  606. get_property(lib_imported TARGET ${zephyr_lib} PROPERTY IMPORTED)
  607. if(NOT source_list
  608. AND NOT ${lib_imported}
  609. )
  610. get_property(allow_empty TARGET ${zephyr_lib} PROPERTY ALLOW_EMPTY)
  611. if(NOT "${allow_empty}")
  612. message(WARNING
  613. "No SOURCES given to Zephyr library: ${zephyr_lib}\nExcluding target from build."
  614. )
  615. endif()
  616. target_sources(${zephyr_lib} PRIVATE ${ZEPHYR_BASE}/misc/empty_file.c)
  617. set_property(TARGET ${zephyr_lib} PROPERTY EXCLUDE_FROM_ALL TRUE)
  618. list(REMOVE_ITEM ZEPHYR_LIBS_PROPERTY ${zephyr_lib})
  619. continue()
  620. endif()
  621. endif()
  622. # TODO: Could this become an INTERFACE property of zephyr_interface?
  623. add_dependencies(${zephyr_lib} zephyr_generated_headers)
  624. endforeach()
  625. get_property(OUTPUT_FORMAT GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT)
  626. if (CONFIG_CODE_DATA_RELOCATION)
  627. set(CODE_RELOCATION_DEP code_relocation_source_lib)
  628. endif() # CONFIG_CODE_DATA_RELOCATION
  629. # Give the linker script targets all of the include directories so
  630. # that cmake can successfully find the linker scripts' header
  631. # dependencies.
  632. zephyr_get_include_directories_for_lang(C
  633. ZEPHYR_INCLUDE_DIRS
  634. STRIP_PREFIX # Don't use a -I prefix
  635. )
  636. if(CONFIG_GEN_ISR_TABLES)
  637. if(CONFIG_GEN_SW_ISR_TABLE)
  638. list(APPEND GEN_ISR_TABLE_EXTRA_ARG --sw-isr-table)
  639. endif()
  640. if(CONFIG_GEN_IRQ_VECTOR_TABLE)
  641. list(APPEND GEN_ISR_TABLE_EXTRA_ARG --vector-table)
  642. endif()
  643. # isr_tables.c is generated from ${ZEPHYR_PREBUILT_EXECUTABLE} by
  644. # gen_isr_tables.py
  645. add_custom_command(
  646. OUTPUT isr_tables.c isrList.bin
  647. COMMAND $<TARGET_PROPERTY:bintools,elfconvert_command>
  648. $<TARGET_PROPERTY:bintools,elfconvert_flag>
  649. $<TARGET_PROPERTY:bintools,elfconvert_flag_intarget>${OUTPUT_FORMAT}
  650. $<TARGET_PROPERTY:bintools,elfconvert_flag_outtarget>binary
  651. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_only>.intList
  652. $<TARGET_PROPERTY:bintools,elfconvert_flag_infile>$<TARGET_FILE:${ZEPHYR_PREBUILT_EXECUTABLE}>
  653. $<TARGET_PROPERTY:bintools,elfconvert_flag_outfile>isrList.bin
  654. $<TARGET_PROPERTY:bintools,elfconvert_flag_final>
  655. COMMAND ${PYTHON_EXECUTABLE}
  656. ${ZEPHYR_BASE}/arch/common/gen_isr_tables.py
  657. --output-source isr_tables.c
  658. --kernel $<TARGET_FILE:${ZEPHYR_PREBUILT_EXECUTABLE}>
  659. --intlist isrList.bin
  660. $<$<BOOL:${CONFIG_BIG_ENDIAN}>:--big-endian>
  661. $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--debug>
  662. ${GEN_ISR_TABLE_EXTRA_ARG}
  663. DEPENDS ${ZEPHYR_PREBUILT_EXECUTABLE}
  664. COMMAND_EXPAND_LISTS
  665. )
  666. set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_SOURCE_FILES isr_tables.c)
  667. endif()
  668. if(CONFIG_KALLSYMS)
  669. set(KALLSYMS_PARAM --fbin=ksym.bin)
  670. if(CONFIG_KALLSYMS_NO_NAME)
  671. set(KALLSYMS_PARAM --no_symbols_name)
  672. endif()
  673. if(CMAKE_HOST_SYSTEM_NAME MATCHES "Windows")
  674. MESSAGE(STATUS "operation system is Windows")
  675. set(KALLSYMS_APP ${ZEPHYR_BASE}/scripts/kallsyms_win.exe)
  676. else()
  677. MESSAGE(STATUS "operation system is linux ")
  678. set(KALLSYMS_APP ${ZEPHYR_BASE}/scripts/kallsyms)
  679. endif()
  680. add_custom_command(
  681. OUTPUT ksyms.S
  682. POST_BUILD
  683. COMMAND ${CMAKE_NM}
  684. -n
  685. ${ZEPHYR_PREBUILT_EXECUTABLE}.elf
  686. > k_syms.map
  687. COMMAND ${KALLSYMS_APP}
  688. ${KALLSYMS_PARAM}
  689. < k_syms.map
  690. > ksyms.S
  691. DEPENDS ${ZEPHYR_PREBUILT_EXECUTABLE}
  692. COMMAND_EXPAND_LISTS
  693. )
  694. add_custom_target(output_ksyms DEPENDS ksyms.S)
  695. set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_SOURCE_FILES ksyms.S)
  696. endif()
  697. # if(CONFIG_HAS_DTS)
  698. # # dev_handles.c is generated from ${ZEPHYR_PREBUILT_EXECUTABLE} by
  699. # # gen_handles.py
  700. # add_custom_command(
  701. # OUTPUT dev_handles.c
  702. # COMMAND
  703. # ${PYTHON_EXECUTABLE}
  704. # ${ZEPHYR_BASE}/scripts/gen_handles.py
  705. # --output-source dev_handles.c
  706. # --kernel $<TARGET_FILE:${ZEPHYR_PREBUILT_EXECUTABLE}>
  707. # --zephyr-base ${ZEPHYR_BASE}
  708. # --start-symbol "$<TARGET_PROPERTY:linker,devices_start_symbol>"
  709. # DEPENDS ${ZEPHYR_PREBUILT_EXECUTABLE}
  710. # )
  711. # set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_SOURCE_FILES dev_handles.c)
  712. # endif()
  713. if(CONFIG_CODE_DATA_RELOCATION)
  714. # @Intent: Linker script to relocate .text, data and .bss sections
  715. toolchain_ld_relocation()
  716. endif()
  717. if(CONFIG_USERSPACE)
  718. zephyr_get_compile_options_for_lang_as_string(C compiler_flags_priv)
  719. string(REPLACE "$<TARGET_PROPERTY:compiler,coverage>" ""
  720. NO_COVERAGE_FLAGS "${compiler_flags_priv}"
  721. )
  722. get_property(include_dir_in_interface TARGET zephyr_interface
  723. PROPERTY INTERFACE_INCLUDE_DIRECTORIES)
  724. get_property(sys_include_dir_in_interface TARGET zephyr_interface
  725. PROPERTY INTERFACE_SYSTEM_INCLUDE_DIRECTORIES)
  726. get_property(compile_definitions_interface TARGET zephyr_interface
  727. PROPERTY INTERFACE_COMPILE_DEFINITIONS)
  728. set(GEN_KOBJ_LIST ${ZEPHYR_BASE}/scripts/gen_kobject_list.py)
  729. set(PROCESS_GPERF ${ZEPHYR_BASE}/scripts/process_gperf.py)
  730. set(KOBJECT_HASH_LIST kobject_hash.gperf)
  731. set(KOBJECT_HASH_OUTPUT_SRC_PRE kobject_hash_preprocessed.c)
  732. set(KOBJECT_HASH_OUTPUT_SRC kobject_hash.c)
  733. set(KOBJECT_HASH_OUTPUT_OBJ kobject_hash.c.obj)
  734. set(KOBJECT_HASH_OUTPUT_OBJ_RENAMED kobject_hash_renamed.o)
  735. # Essentially what we are doing here is extracting some information
  736. # out of the nearly finished elf file, generating the source code
  737. # for a hash table based on that information, and then compiling and
  738. # linking the hash table back into a now even more nearly finished
  739. # elf file. More information in gen_kobject_list.py --help.
  740. # Use the script GEN_KOBJ_LIST to scan the kernel binary's
  741. # (${ZEPHYR_PREBUILT_EXECUTABLE}) DWARF information to produce a table of kernel
  742. # objects (KOBJECT_HASH_LIST) which we will then pass to gperf
  743. add_custom_command(
  744. OUTPUT ${KOBJECT_HASH_LIST}
  745. COMMAND
  746. ${PYTHON_EXECUTABLE}
  747. ${GEN_KOBJ_LIST}
  748. --kernel $<TARGET_FILE:${ZEPHYR_PREBUILT_EXECUTABLE}>
  749. --gperf-output ${KOBJECT_HASH_LIST}
  750. ${gen_kobject_list_include_args}
  751. $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
  752. DEPENDS
  753. ${ZEPHYR_PREBUILT_EXECUTABLE}
  754. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  755. )
  756. add_custom_target(
  757. kobj_hash_list
  758. DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_HASH_LIST}
  759. )
  760. # Use gperf to generate C code (KOBJECT_HASH_OUTPUT_SRC_PRE) which implements a
  761. # perfect hashtable based on KOBJECT_HASH_LIST
  762. add_custom_command(
  763. OUTPUT ${KOBJECT_HASH_OUTPUT_SRC_PRE}
  764. COMMAND
  765. ${GPERF}
  766. --output-file ${KOBJECT_HASH_OUTPUT_SRC_PRE}
  767. --multiple-iterations 10
  768. ${KOBJECT_HASH_LIST}
  769. DEPENDS kobj_hash_list ${KOBJECT_HASH_LIST}
  770. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  771. )
  772. add_custom_target(
  773. kobj_hash_output_src_pre
  774. DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_HASH_OUTPUT_SRC_PRE}
  775. )
  776. # For our purposes the code/data generated by gperf is not optimal.
  777. #
  778. # The script PROCESS_GPERF creates a new c file KOBJECT_HASH_OUTPUT_SRC based on
  779. # KOBJECT_HASH_OUTPUT_SRC_PRE to greatly reduce the amount of code/data generated
  780. # since we know we are always working with pointer values
  781. add_custom_command(
  782. OUTPUT ${KOBJECT_HASH_OUTPUT_SRC}
  783. COMMAND
  784. ${PYTHON_EXECUTABLE}
  785. ${PROCESS_GPERF}
  786. -i ${KOBJECT_HASH_OUTPUT_SRC_PRE}
  787. -o ${KOBJECT_HASH_OUTPUT_SRC}
  788. -p "struct z_object"
  789. $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
  790. DEPENDS kobj_hash_output_src_pre ${KOBJECT_HASH_OUTPUT_SRC_PRE}
  791. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  792. )
  793. add_custom_target(
  794. kobj_hash_output_src
  795. DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_HASH_OUTPUT_SRC}
  796. )
  797. # We need precise control of where generated text/data ends up in the final
  798. # kernel image. Disable function/data sections and use objcopy to move
  799. # generated data into special section names
  800. add_library(
  801. kobj_hash_output_lib
  802. STATIC ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_HASH_OUTPUT_SRC}
  803. )
  804. set_source_files_properties(${KOBJECT_HASH_OUTPUT_SRC}
  805. PROPERTIES COMPILE_FLAGS
  806. "${NO_COVERAGE_FLAGS} -fno-function-sections -fno-data-sections")
  807. set_source_files_properties(${KOBJECT_HASH_OUTPUT_SRC}
  808. PROPERTIES COMPILE_DEFINITIONS "${compile_definitions_interface}")
  809. # Turn off -ffunction-sections, etc.
  810. # NB: Using a library instead of target_compile_options(kobj_hash_output_lib
  811. # [...]) because a library's options have precedence
  812. add_library(kobj_hash_output_lib_interface INTERFACE)
  813. target_link_libraries(kobj_hash_output_lib kobj_hash_output_lib_interface)
  814. foreach(incl ${include_dir_in_interface})
  815. target_include_directories(kobj_hash_output_lib_interface INTERFACE ${incl})
  816. endforeach()
  817. foreach(incl ${sys_include_dir_in_interface})
  818. target_include_directories(kobj_hash_output_lib_interface SYSTEM INTERFACE ${incl})
  819. endforeach()
  820. set(
  821. KOBJECT_HASH_OUTPUT_OBJ_PATH
  822. ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/kobj_hash_output_lib.dir/${KOBJECT_HASH_OUTPUT_OBJ}
  823. )
  824. add_custom_command(
  825. OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_HASH_OUTPUT_OBJ_RENAMED}
  826. COMMAND $<TARGET_PROPERTY:bintools,elfconvert_command>
  827. $<TARGET_PROPERTY:bintools,elfconvert_flag>
  828. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_rename>.data=.kobject_data.data
  829. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_rename>.sdata=.kobject_data.sdata
  830. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_rename>.text=.kobject_data.text
  831. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_rename>.rodata=.kobject_data.rodata
  832. $<TARGET_PROPERTY:bintools,elfconvert_flag_infile>${KOBJECT_HASH_OUTPUT_OBJ_PATH}
  833. $<TARGET_PROPERTY:bintools,elfconvert_flag_outfile>${KOBJECT_HASH_OUTPUT_OBJ_RENAMED}
  834. $<TARGET_PROPERTY:bintools,elfconvert_flag_final>
  835. DEPENDS kobj_hash_output_lib
  836. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  837. COMMAND_EXPAND_LISTS
  838. )
  839. add_custom_target(
  840. kobj_hash_output_obj_renamed
  841. DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_HASH_OUTPUT_OBJ_RENAMED}
  842. )
  843. add_library(kobj_hash_output_obj_renamed_lib STATIC IMPORTED GLOBAL)
  844. set_property(
  845. TARGET kobj_hash_output_obj_renamed_lib
  846. PROPERTY
  847. IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_HASH_OUTPUT_OBJ_RENAMED}
  848. )
  849. add_dependencies(
  850. kobj_hash_output_obj_renamed_lib
  851. kobj_hash_output_obj_renamed
  852. )
  853. set_property(
  854. GLOBAL APPEND PROPERTY
  855. GENERATED_KERNEL_OBJECT_FILES kobj_hash_output_obj_renamed_lib
  856. )
  857. endif()
  858. # Read global variables into local variables
  859. get_property(GKOF GLOBAL PROPERTY GENERATED_KERNEL_OBJECT_FILES)
  860. get_property(GKSF GLOBAL PROPERTY GENERATED_KERNEL_SOURCE_FILES)
  861. get_property(CSTD GLOBAL PROPERTY CSTD)
  862. set_ifndef(CSTD c99)
  863. # @Intent: Obtain compiler specific flag for specifying the c standard
  864. zephyr_compile_options(
  865. $<$<COMPILE_LANGUAGE:C>:$<TARGET_PROPERTY:compiler,cstd>${CSTD}>
  866. )
  867. # @Intent: Configure linker scripts, i.e. generate linker scripts with variables substituted
  868. toolchain_ld_configure_files()
  869. if(CONFIG_USERSPACE)
  870. set(APP_SMEM_ALIGNED_LD "${PROJECT_BINARY_DIR}/include/generated/app_smem_aligned.ld")
  871. set(APP_SMEM_UNALIGNED_LD "${PROJECT_BINARY_DIR}/include/generated/app_smem_unaligned.ld")
  872. if(CONFIG_LINKER_USE_PINNED_SECTION)
  873. set(APP_SMEM_PINNED_ALIGNED_LD
  874. "${PROJECT_BINARY_DIR}/include/generated/app_smem_pinned_aligned.ld")
  875. set(APP_SMEM_PINNED_UNALIGNED_LD
  876. "${PROJECT_BINARY_DIR}/include/generated/app_smem_pinned_unaligned.ld")
  877. if(NOT CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT)
  878. # The libc partition may hold symbols that are required during boot process,
  879. # for example, stack guard (if enabled). So the libc partition must be pinned
  880. # if not sections are in physical memory at boot, as the paging mechanism is
  881. # only initialized post-kernel.
  882. set_property(TARGET app_smem APPEND PROPERTY pinned_partitions "z_libc_partition")
  883. endif()
  884. get_property(APP_SMEM_PINNED_PARTITION_LIST TARGET app_smem PROPERTY pinned_partitions)
  885. if(APP_SMEM_PINNED_PARTITION_LIST)
  886. list(JOIN APP_SMEM_PINNED_PARTITION_LIST "," APP_SMEM_PINNED_PARTITION_LIST_ARG_CSL)
  887. set(APP_SMEM_PINNED_PARTITION_LIST_ARG "--pinpartitions=${APP_SMEM_PINNED_PARTITION_LIST_ARG_CSL}")
  888. endif()
  889. endif()
  890. set(OBJ_FILE_DIR "${PROJECT_BINARY_DIR}/../")
  891. add_custom_target(
  892. ${APP_SMEM_ALIGNED_DEP}
  893. DEPENDS
  894. ${APP_SMEM_ALIGNED_LD}
  895. ${APP_SMEM_PINNED_ALIGNED_LD}
  896. )
  897. add_custom_target(
  898. ${APP_SMEM_UNALIGNED_DEP}
  899. DEPENDS
  900. ${APP_SMEM_UNALIGNED_LD}
  901. ${APP_SMEM_PINNED_UNALIGNED_LD}
  902. )
  903. if(CONFIG_NEWLIB_LIBC)
  904. set(NEWLIB_PART -l libc.a z_libc_partition)
  905. endif()
  906. if(CONFIG_NEWLIB_LIBC_NANO)
  907. set(NEWLIB_PART -l libc_nano.a z_libc_partition)
  908. endif()
  909. add_custom_command(
  910. OUTPUT ${APP_SMEM_UNALIGNED_LD} ${APP_SMEM_PINNED_UNALIGNED_LD}
  911. COMMAND ${PYTHON_EXECUTABLE}
  912. ${ZEPHYR_BASE}/scripts/gen_app_partitions.py
  913. -d ${OBJ_FILE_DIR}
  914. -o ${APP_SMEM_UNALIGNED_LD}
  915. $<$<BOOL:${APP_SMEM_PINNED_UNALIGNED_LD}>:--pinoutput=${APP_SMEM_PINNED_UNALIGNED_LD}>
  916. ${APP_SMEM_PINNED_PARTITION_LIST_ARG}
  917. ${NEWLIB_PART}
  918. $<TARGET_PROPERTY:zephyr_property_target,COMPILE_OPTIONS>
  919. $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
  920. DEPENDS
  921. kernel
  922. ${ZEPHYR_LIBS_PROPERTY}
  923. WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/
  924. COMMAND_EXPAND_LISTS
  925. COMMENT "Generating app_smem_unaligned linker section"
  926. )
  927. configure_linker_script(
  928. linker_app_smem_unaligned.cmd
  929. "-DLINKER_APP_SMEM_UNALIGNED"
  930. ${CODE_RELOCATION_DEP}
  931. ${APP_SMEM_UNALIGNED_DEP}
  932. ${APP_SMEM_UNALIGNED_LD}
  933. ${APP_SMEM_PINNED_UNALIGNED_LD}
  934. zephyr_generated_headers
  935. )
  936. add_custom_target(
  937. linker_app_smem_unaligned_script
  938. DEPENDS
  939. linker_app_smem_unaligned.cmd
  940. )
  941. set_property(TARGET
  942. linker_app_smem_unaligned_script
  943. PROPERTY INCLUDE_DIRECTORIES
  944. ${ZEPHYR_INCLUDE_DIRS}
  945. )
  946. set(APP_SMEM_UNALIGNED_LIB app_smem_unaligned_output_obj_renamed_lib)
  947. add_executable( app_smem_unaligned_prebuilt misc/empty_file.c)
  948. toolchain_ld_link_elf(
  949. TARGET_ELF app_smem_unaligned_prebuilt
  950. OUTPUT_MAP ${PROJECT_BINARY_DIR}/app_smem_unaligned_prebuilt.map
  951. LIBRARIES_PRE_SCRIPT ""
  952. LINKER_SCRIPT ${PROJECT_BINARY_DIR}/linker_app_smem_unaligned.cmd
  953. LIBRARIES_POST_SCRIPT ""
  954. DEPENDENCIES ${CODE_RELOCATION_DEP}
  955. )
  956. target_byproducts(TARGET app_smem_unaligned_prebuilt
  957. BYPRODUCTS ${PROJECT_BINARY_DIR}/app_smem_unaligned_prebuilt.map
  958. )
  959. set_property(TARGET app_smem_unaligned_prebuilt PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_app_smem_unaligned.cmd)
  960. add_dependencies( app_smem_unaligned_prebuilt linker_app_smem_unaligned_script ${OFFSETS_LIB})
  961. add_custom_command(
  962. OUTPUT ${APP_SMEM_ALIGNED_LD} ${APP_SMEM_PINNED_ALIGNED_LD}
  963. COMMAND ${PYTHON_EXECUTABLE}
  964. ${ZEPHYR_BASE}/scripts/gen_app_partitions.py
  965. -e $<TARGET_FILE:app_smem_unaligned_prebuilt>
  966. -o ${APP_SMEM_ALIGNED_LD}
  967. $<$<BOOL:${APP_SMEM_PINNED_ALIGNED_LD}>:--pinoutput=${APP_SMEM_PINNED_ALIGNED_LD}>
  968. ${APP_SMEM_PINNED_PARTITION_LIST_ARG}
  969. ${NEWLIB_PART}
  970. $<TARGET_PROPERTY:zephyr_property_target,COMPILE_OPTIONS>
  971. $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
  972. DEPENDS
  973. kernel
  974. ${ZEPHYR_LIBS_PROPERTY}
  975. app_smem_unaligned_prebuilt
  976. WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/
  977. COMMAND_EXPAND_LISTS
  978. COMMENT "Generating app_smem_aligned linker section"
  979. )
  980. endif()
  981. if(CONFIG_USERSPACE)
  982. # This CONFIG_USERSPACE block is to create place holders to reserve space
  983. # for the gperf generated structures for zephyr_prebuilt.elf.
  984. # These place holders are there so that the placement of kobjects would be
  985. # the same between linking zephyr_prebuilt.elf and zephyr.elf, as
  986. # the gperf hash table is hashed on the addresses of kobjects.
  987. # The placeholders are generated from app_smem_unaligned_prebuilt.elf.
  988. set(KOBJECT_PREBUILT_HASH_LIST kobject_prebuilt_hash.gperf)
  989. set(KOBJECT_PREBUILT_HASH_OUTPUT_SRC_PRE kobject_prebuilt_hash_preprocessed.c)
  990. set(KOBJECT_PREBUILT_HASH_OUTPUT_SRC kobject_prebuilt_hash.c)
  991. set(KOBJECT_PREBUILT_HASH_OUTPUT_OBJ kobject_prebuilt_hash.c.obj)
  992. add_custom_command(
  993. OUTPUT ${KOBJECT_PREBUILT_HASH_LIST}
  994. COMMAND
  995. ${PYTHON_EXECUTABLE}
  996. ${GEN_KOBJ_LIST}
  997. --kernel $<TARGET_FILE:app_smem_unaligned_prebuilt>
  998. --gperf-output ${KOBJECT_PREBUILT_HASH_LIST}
  999. ${gen_kobject_list_include_args}
  1000. $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
  1001. DEPENDS
  1002. app_smem_unaligned_prebuilt
  1003. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  1004. )
  1005. add_custom_target(
  1006. kobj_prebuilt_hash_list
  1007. DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_PREBUILT_HASH_LIST}
  1008. )
  1009. add_custom_command(
  1010. OUTPUT ${KOBJECT_PREBUILT_HASH_OUTPUT_SRC_PRE}
  1011. COMMAND
  1012. ${GPERF}
  1013. --output-file ${KOBJECT_PREBUILT_HASH_OUTPUT_SRC_PRE}
  1014. --multiple-iterations 10
  1015. ${KOBJECT_PREBUILT_HASH_LIST}
  1016. DEPENDS kobj_prebuilt_hash_list ${KOBJECT_PREBUILT_HASH_LIST}
  1017. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  1018. )
  1019. add_custom_target(
  1020. kobj_prebuilt_hash_output_src_pre
  1021. DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_PREBUILT_HASH_OUTPUT_SRC_PRE}
  1022. )
  1023. add_custom_command(
  1024. OUTPUT ${KOBJECT_PREBUILT_HASH_OUTPUT_SRC}
  1025. COMMAND
  1026. ${PYTHON_EXECUTABLE}
  1027. ${PROCESS_GPERF}
  1028. -i ${KOBJECT_PREBUILT_HASH_OUTPUT_SRC_PRE}
  1029. -o ${KOBJECT_PREBUILT_HASH_OUTPUT_SRC}
  1030. -p "struct z_object"
  1031. $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
  1032. DEPENDS kobj_prebuilt_hash_output_src_pre ${KOBJECT_PREBUILT_HASH_OUTPUT_SRC_PRE}
  1033. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  1034. )
  1035. add_custom_target(
  1036. kobj_prebuilt_hash_output_src
  1037. DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_PREBUILT_HASH_OUTPUT_SRC}
  1038. )
  1039. add_library(
  1040. kobj_prebuilt_hash_output_lib
  1041. STATIC ${CMAKE_CURRENT_BINARY_DIR}/${KOBJECT_PREBUILT_HASH_OUTPUT_SRC}
  1042. )
  1043. set_source_files_properties(${KOBJECT_PREBUILT_HASH_OUTPUT_SRC}
  1044. PROPERTIES COMPILE_FLAGS
  1045. "${NO_COVERAGE_FLAGS} -fno-function-sections -fno-data-sections")
  1046. set_source_files_properties(${KOBJECT_PREBUILT_HASH_OUTPUT_SRC}
  1047. PROPERTIES COMPILE_DEFINITIONS "${compile_definitions_interface}")
  1048. add_library(kobj_prebuilt_hash_output_lib_interface INTERFACE)
  1049. target_link_libraries(
  1050. kobj_prebuilt_hash_output_lib
  1051. kobj_prebuilt_hash_output_lib_interface
  1052. )
  1053. foreach(incl ${include_dir_in_interface})
  1054. target_include_directories(
  1055. kobj_prebuilt_hash_output_lib_interface
  1056. INTERFACE ${incl}
  1057. )
  1058. endforeach()
  1059. foreach(incl ${sys_include_dir_in_interface})
  1060. target_include_directories(
  1061. kobj_prebuilt_hash_output_lib_interface
  1062. SYSTEM INTERFACE ${incl}
  1063. )
  1064. endforeach()
  1065. set(
  1066. KOBJECT_PREBUILT_HASH_OUTPUT_OBJ_PATH
  1067. ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/kobj_prebuilt_hash_output_lib.dir/${KOBJECT_PREBUILT_HASH_OUTPUT_OBJ}
  1068. )
  1069. set(KOBJECT_LINKER_HEADER_DATA "${PROJECT_BINARY_DIR}/include/generated/linker-kobject-prebuilt-data.h")
  1070. add_custom_command(
  1071. OUTPUT ${KOBJECT_LINKER_HEADER_DATA}
  1072. COMMAND
  1073. ${PYTHON_EXECUTABLE}
  1074. ${ZEPHYR_BASE}/scripts/gen_kobject_placeholders.py
  1075. --object ${KOBJECT_PREBUILT_HASH_OUTPUT_OBJ_PATH}
  1076. --outdir ${PROJECT_BINARY_DIR}/include/generated
  1077. --datapct ${CONFIG_KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT}
  1078. --rodata ${CONFIG_KOBJECT_RODATA_AREA_EXTRA_BYTES}
  1079. $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
  1080. DEPENDS
  1081. kobj_prebuilt_hash_output_lib
  1082. ${KOBJECT_PREBUILT_HASH_OUTPUT_OBJ_PATH}
  1083. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  1084. )
  1085. add_custom_target(
  1086. ${KOBJECT_LINKER_DEP}
  1087. DEPENDS
  1088. ${KOBJECT_LINKER_HEADER_DATA}
  1089. )
  1090. endif()
  1091. configure_linker_script(
  1092. linker_zephyr_prebuilt.cmd
  1093. "-DLINKER_ZEPHYR_PREBUILT"
  1094. ${APP_SMEM_ALIGNED_DEP}
  1095. ${KOBJECT_LINKER_DEP}
  1096. ${CODE_RELOCATION_DEP}
  1097. zephyr_generated_headers
  1098. )
  1099. add_custom_target(
  1100. linker_zephyr_prebuilt_script_target
  1101. DEPENDS
  1102. linker_zephyr_prebuilt.cmd
  1103. )
  1104. set_property(TARGET
  1105. linker_zephyr_prebuilt_script_target
  1106. PROPERTY INCLUDE_DIRECTORIES
  1107. ${ZEPHYR_INCLUDE_DIRS}
  1108. )
  1109. # FIXME: Is there any way to get rid of empty_file.c?
  1110. add_executable( ${ZEPHYR_PREBUILT_EXECUTABLE} misc/empty_file.c)
  1111. toolchain_ld_link_elf(
  1112. TARGET_ELF ${ZEPHYR_PREBUILT_EXECUTABLE}
  1113. OUTPUT_MAP ${PROJECT_BINARY_DIR}/${ZEPHYR_PREBUILT_EXECUTABLE}.map
  1114. LIBRARIES_PRE_SCRIPT ""
  1115. LINKER_SCRIPT ${PROJECT_BINARY_DIR}/linker_zephyr_prebuilt.cmd
  1116. DEPENDENCIES ${CODE_RELOCATION_DEP}
  1117. )
  1118. target_byproducts(TARGET ${ZEPHYR_PREBUILT_EXECUTABLE}
  1119. BYPRODUCTS ${PROJECT_BINARY_DIR}/${ZEPHYR_PREBUILT_EXECUTABLE}.map
  1120. )
  1121. set_property(TARGET
  1122. ${ZEPHYR_PREBUILT_EXECUTABLE}
  1123. PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_zephyr_prebuilt.cmd
  1124. )
  1125. add_dependencies(
  1126. ${ZEPHYR_PREBUILT_EXECUTABLE}
  1127. linker_zephyr_prebuilt_script_target
  1128. ${OFFSETS_LIB}
  1129. )
  1130. set(generated_kernel_files ${GKSF} ${GKOF})
  1131. if(NOT generated_kernel_files)
  1132. # Use the prebuilt elf as the final elf since we don't have a
  1133. # generation stage.
  1134. set(logical_target_for_zephyr_elf ${ZEPHYR_PREBUILT_EXECUTABLE})
  1135. else()
  1136. # The final linker pass uses the same source linker script of the
  1137. # previous passes, but this time with a different output
  1138. # file and preprocessed with the define LINKER_ZEPHYR_FINAL.
  1139. #
  1140. # LINKER_PASS2 is deprecated but being kept to avoid breaking
  1141. # external projects. It will be removed in the future.
  1142. configure_linker_script(
  1143. linker.cmd
  1144. "-DLINKER_ZEPHYR_FINAL;-DLINKER_PASS2"
  1145. ${CODE_RELOCATION_DEP}
  1146. ${ZEPHYR_PREBUILT_EXECUTABLE}
  1147. zephyr_generated_headers
  1148. )
  1149. add_custom_target(
  1150. linker_zephyr_final_script_target
  1151. DEPENDS
  1152. linker.cmd
  1153. )
  1154. set_property(TARGET
  1155. linker_zephyr_final_script_target
  1156. PROPERTY INCLUDE_DIRECTORIES
  1157. ${ZEPHYR_INCLUDE_DIRS}
  1158. )
  1159. add_executable( ${ZEPHYR_FINAL_EXECUTABLE} misc/empty_file.c ${GKSF})
  1160. toolchain_ld_link_elf(
  1161. TARGET_ELF ${ZEPHYR_FINAL_EXECUTABLE}
  1162. OUTPUT_MAP ${PROJECT_BINARY_DIR}/${ZEPHYR_FINAL_EXECUTABLE}.map
  1163. LIBRARIES_PRE_SCRIPT ${GKOF}
  1164. LINKER_SCRIPT ${PROJECT_BINARY_DIR}/linker.cmd
  1165. LIBRARIES_POST_SCRIPT ""
  1166. DEPENDENCIES ${CODE_RELOCATION_DEP}
  1167. )
  1168. set_property(TARGET ${ZEPHYR_FINAL_EXECUTABLE} PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker.cmd)
  1169. add_dependencies( ${ZEPHYR_FINAL_EXECUTABLE} linker_zephyr_final_script_target)
  1170. # Use the pass2 elf as the final elf
  1171. set(logical_target_for_zephyr_elf ${ZEPHYR_FINAL_EXECUTABLE})
  1172. endif()
  1173. # Export the variable to the application's scope to allow the
  1174. # application to know what the name of the final elf target is.
  1175. set(logical_target_for_zephyr_elf ${logical_target_for_zephyr_elf} PARENT_SCOPE)
  1176. # Override the base name of the last, "logical" .elf output (and last .map) so:
  1177. # 1. it doesn't depend on the number of passes above and the
  1178. # post_build_commands below can always find it no matter which is it;
  1179. # 2. it can be defined in Kconfig
  1180. set_target_properties(${logical_target_for_zephyr_elf} PROPERTIES OUTPUT_NAME ${KERNEL_NAME})
  1181. set(post_build_commands "")
  1182. set(post_build_byproducts "")
  1183. list(APPEND
  1184. post_build_commands
  1185. COMMAND
  1186. ${CMAKE_COMMAND} -E rename ${logical_target_for_zephyr_elf}.map ${KERNEL_MAP_NAME}
  1187. )
  1188. list(APPEND post_build_byproducts ${KERNEL_MAP_NAME})
  1189. if(NOT CONFIG_BUILD_NO_GAP_FILL)
  1190. # Use ';' as separator to get proper space in resulting command.
  1191. set(GAP_FILL "$<TARGET_PROPERTY:bintools,elfconvert_flag_gapfill>0xff")
  1192. endif()
  1193. if(CONFIG_OUTPUT_PRINT_MEMORY_USAGE)
  1194. target_link_libraries(${logical_target_for_zephyr_elf} $<TARGET_PROPERTY:linker,memusage>)
  1195. get_property(memusage_build_command TARGET bintools PROPERTY memusage_command)
  1196. if(memusage_build_command)
  1197. # Note: The use of generator expressions allows downstream extensions to add/change the post build.
  1198. # Unfortunately, the BYPRODUCTS does not allow for generator expression, so question is if we
  1199. # should remove the downstream ability from start.
  1200. # Or fix the output name, by the use of `get_property`
  1201. list(APPEND
  1202. post_build_commands
  1203. COMMAND $<TARGET_PROPERTY:bintools,memusage_command>
  1204. $<TARGET_PROPERTY:bintools,memusage_flag>
  1205. $<TARGET_PROPERTY:bintools,memusage_infile>${KERNEL_ELF_NAME}
  1206. )
  1207. # For now, the byproduct can only be supported upstream on byproducts name,
  1208. # cause byproduct does not support generator expressions
  1209. get_property(memusage_byproducts TARGET bintools PROPERTY memusage_byproducts)
  1210. list(APPEND
  1211. post_build_byproducts
  1212. ${memusage_byproducts}
  1213. )
  1214. endif()
  1215. endif()
  1216. if(CONFIG_BUILD_OUTPUT_HEX OR BOARD_FLASH_RUNNER STREQUAL openocd)
  1217. get_property(elfconvert_formats TARGET bintools PROPERTY elfconvert_formats)
  1218. if(ihex IN_LIST elfconvert_formats)
  1219. list(APPEND
  1220. post_build_commands
  1221. COMMAND $<TARGET_PROPERTY:bintools,elfconvert_command>
  1222. $<TARGET_PROPERTY:bintools,elfconvert_flag>
  1223. ${GAP_FILL}
  1224. $<TARGET_PROPERTY:bintools,elfconvert_flag_outtarget>ihex
  1225. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_remove>.comment
  1226. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_remove>COMMON
  1227. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_remove>.eh_frame
  1228. $<TARGET_PROPERTY:bintools,elfconvert_flag_infile>${KERNEL_ELF_NAME}
  1229. $<TARGET_PROPERTY:bintools,elfconvert_flag_outfile>${KERNEL_HEX_NAME}
  1230. $<TARGET_PROPERTY:bintools,elfconvert_flag_final>
  1231. )
  1232. list(APPEND
  1233. post_build_byproducts
  1234. ${KERNEL_HEX_NAME}
  1235. # ${out_hex_byprod} # Is this needed ?
  1236. )
  1237. endif()
  1238. endif()
  1239. if(CONFIG_BUILD_OUTPUT_BIN)
  1240. get_property(elfconvert_formats TARGET bintools PROPERTY elfconvert_formats)
  1241. if(binary IN_LIST elfconvert_formats)
  1242. list(APPEND
  1243. post_build_commands
  1244. COMMAND $<TARGET_PROPERTY:bintools,elfconvert_command>
  1245. $<TARGET_PROPERTY:bintools,elfconvert_flag>
  1246. ${GAP_FILL}
  1247. $<TARGET_PROPERTY:bintools,elfconvert_flag_outtarget>binary
  1248. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_remove>.comment
  1249. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_remove>COMMON
  1250. $<TARGET_PROPERTY:bintools,elfconvert_flag_section_remove>.eh_frame
  1251. $<TARGET_PROPERTY:bintools,elfconvert_flag_infile>${KERNEL_ELF_NAME}
  1252. $<TARGET_PROPERTY:bintools,elfconvert_flag_outfile>${KERNEL_BIN_NAME}
  1253. $<TARGET_PROPERTY:bintools,elfconvert_flag_final>
  1254. )
  1255. list(APPEND
  1256. post_build_byproducts
  1257. ${KERNEL_BIN_NAME}
  1258. # ${out_hex_byprod} # Is this needed ?
  1259. )
  1260. endif()
  1261. endif()
  1262. if(CONFIG_BUILD_OUTPUT_BIN AND CONFIG_BUILD_OUTPUT_UF2)
  1263. list(APPEND
  1264. post_build_commands
  1265. COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/uf2conv.py
  1266. -c
  1267. -f ${CONFIG_BUILD_OUTPUT_UF2_FAMILY_ID}
  1268. -b ${CONFIG_FLASH_LOAD_OFFSET}
  1269. -o ${KERNEL_UF2_NAME}
  1270. ${KERNEL_BIN_NAME}
  1271. )
  1272. list(APPEND
  1273. post_build_byproducts
  1274. ${KERNEL_UF2_NAME}
  1275. )
  1276. endif()
  1277. # Cleanup intermediate files
  1278. if(CONFIG_CLEANUP_INTERMEDIATE_FILES)
  1279. list(APPEND
  1280. post_build_commands
  1281. COMMAND
  1282. # This file can be very large in some cases, delete it as we do not need it.
  1283. ${CMAKE_COMMAND} -E remove ${ZEPHYR_PREBUILT_EXECUTABLE}.elf
  1284. )
  1285. endif()
  1286. if(CONFIG_BUILD_OUTPUT_S19)
  1287. get_property(elfconvert_formats TARGET bintools PROPERTY elfconvert_formats)
  1288. if(srec IN_LIST elfconvert_formats)
  1289. # Should we print a warning if case the tools does not support converting to s19 ?
  1290. list(APPEND
  1291. post_build_commands
  1292. COMMAND $<TARGET_PROPERTY:bintools,elfconvert_command>
  1293. $<TARGET_PROPERTY:bintools,elfconvert_flag>
  1294. ${GAP_FILL}
  1295. $<TARGET_PROPERTY:bintools,elfconvert_flag_outtarget>srec
  1296. $<TARGET_PROPERTY:bintools,elfconvert_flag_srec_len>1
  1297. $<TARGET_PROPERTY:bintools,elfconvert_flag_infile>${KERNEL_ELF_NAME}
  1298. $<TARGET_PROPERTY:bintools,elfconvert_flag_outfile>${KERNEL_S19_NAME}
  1299. $<TARGET_PROPERTY:bintools,elfconvert_flag_final>
  1300. )
  1301. list(APPEND
  1302. post_build_byproducts
  1303. ${KERNEL_S19_NAME}
  1304. # ${out_S19_byprod} # Is this needed ?
  1305. )
  1306. endif()
  1307. endif()
  1308. if(CONFIG_OUTPUT_DISASSEMBLY)
  1309. if(CONFIG_OUTPUT_DISASSEMBLE_ALL)
  1310. set(disassembly_type "$<TARGET_PROPERTY:bintools,disassembly_flag_all>")
  1311. else()
  1312. set(disassembly_type "$<TARGET_PROPERTY:bintools,disassembly_flag_inline_source>")
  1313. endif()
  1314. list(APPEND
  1315. post_build_commands
  1316. COMMAND $<TARGET_PROPERTY:bintools,disassembly_command>
  1317. $<TARGET_PROPERTY:bintools,disassembly_flag>
  1318. ${disassembly_type}
  1319. $<TARGET_PROPERTY:bintools,disassembly_flag_infile>${KERNEL_ELF_NAME}
  1320. $<TARGET_PROPERTY:bintools,disassembly_flag_outfile>${KERNEL_LST_NAME}
  1321. $<TARGET_PROPERTY:bintools,disassembly_flag_final>
  1322. )
  1323. list(APPEND
  1324. post_build_byproducts
  1325. ${KERNEL_LST_NAME}
  1326. # ${out_disassembly_byprod} # Needed ??
  1327. )
  1328. endif()
  1329. if(CONFIG_OUTPUT_STAT)
  1330. # zephyr_post_build(TOOLS bintools COMMAND readelf FLAGS headers INFILE file OUTFILE outfile)
  1331. list(APPEND
  1332. post_build_commands
  1333. COMMAND $<TARGET_PROPERTY:bintools,readelf_command>
  1334. $<TARGET_PROPERTY:bintools,readelf_flag>
  1335. $<TARGET_PROPERTY:bintools,readelf_flag_headers>
  1336. $<TARGET_PROPERTY:bintools,readelf_flag_infile>${KERNEL_ELF_NAME}
  1337. $<TARGET_PROPERTY:bintools,readelf_flag_outfile>${KERNEL_STAT_NAME}
  1338. $<TARGET_PROPERTY:bintools,readelf_flag_final>
  1339. )
  1340. list(APPEND
  1341. post_build_byproducts
  1342. ${KERNEL_STAT_NAME}
  1343. )
  1344. endif()
  1345. if(CONFIG_BUILD_OUTPUT_STRIPPED)
  1346. list(APPEND
  1347. post_build_commands
  1348. COMMAND $<TARGET_PROPERTY:bintools,strip_command>
  1349. $<TARGET_PROPERTY:bintools,strip_flag>
  1350. $<TARGET_PROPERTY:bintools,strip_flag_all>
  1351. $<TARGET_PROPERTY:bintools,strip_flag_infile>${KERNEL_ELF_NAME}
  1352. $<TARGET_PROPERTY:bintools,strip_flag_outfile>${KERNEL_STRIP_NAME}
  1353. $<TARGET_PROPERTY:bintools,strip_flag_final>
  1354. )
  1355. list(APPEND
  1356. post_build_byproducts
  1357. ${KERNEL_STRIP_NAME}
  1358. )
  1359. endif()
  1360. if(CONFIG_BUILD_OUTPUT_EXE)
  1361. list(APPEND
  1362. post_build_commands
  1363. COMMAND
  1364. ${CMAKE_COMMAND} -E copy ${KERNEL_ELF_NAME} ${KERNEL_EXE_NAME}
  1365. )
  1366. list(APPEND
  1367. post_build_byproducts
  1368. ${KERNEL_EXE_NAME}
  1369. )
  1370. endif()
  1371. # Generate and use MCUboot related artifacts as needed.
  1372. if(CONFIG_BOOTLOADER_MCUBOOT)
  1373. include(${CMAKE_CURRENT_LIST_DIR}/cmake/mcuboot.cmake)
  1374. endif()
  1375. get_property(extra_post_build_commands
  1376. GLOBAL PROPERTY
  1377. extra_post_build_commands
  1378. )
  1379. list(APPEND
  1380. post_build_commands
  1381. ${extra_post_build_commands}
  1382. )
  1383. get_property(extra_post_build_byproducts
  1384. GLOBAL PROPERTY
  1385. extra_post_build_byproducts
  1386. )
  1387. list(APPEND
  1388. post_build_byproducts
  1389. ${extra_post_build_byproducts}
  1390. )
  1391. if(CONFIG_LOG_DICTIONARY_SUPPORT)
  1392. set(LOG_DICT_DB_NAME ${PROJECT_BINARY_DIR}/log_dictionary.json)
  1393. list(APPEND
  1394. post_build_commands
  1395. COMMAND
  1396. ${PYTHON_EXECUTABLE}
  1397. ${ZEPHYR_BASE}/scripts/logging/dictionary/database_gen.py
  1398. ${KERNEL_ELF_NAME}
  1399. ${LOG_DICT_DB_NAME}
  1400. --build ${BUILD_VERSION}
  1401. )
  1402. list(APPEND
  1403. post_build_byproducts
  1404. ${LOG_DICT_DB_NAME}
  1405. )
  1406. endif()
  1407. # Add post_build_commands to post-process the final .elf file produced by
  1408. # either the ZEPHYR_PREBUILT_EXECUTABLE or the KERNEL_ELF executable
  1409. # targets above.
  1410. add_custom_command(
  1411. TARGET ${logical_target_for_zephyr_elf}
  1412. POST_BUILD
  1413. ${post_build_commands}
  1414. BYPRODUCTS
  1415. ${post_build_byproducts}
  1416. COMMENT "Generating files from ${KERNEL_ELF_NAME} for board: ${BOARD}"
  1417. COMMAND_EXPAND_LISTS
  1418. # NB: COMMENT only works for some CMake-Generators
  1419. )
  1420. # To populate with hex files to merge, do the following:
  1421. # set_property(GLOBAL APPEND PROPERTY HEX_FILES_TO_MERGE ${my_local_list})
  1422. # Note that the zephyr.hex file will not be included automatically.
  1423. get_property(HEX_FILES_TO_MERGE GLOBAL PROPERTY HEX_FILES_TO_MERGE)
  1424. if(HEX_FILES_TO_MERGE)
  1425. # Merge in out-of-tree hex files.
  1426. set(MERGED_HEX_NAME merged.hex)
  1427. add_custom_command(
  1428. OUTPUT ${MERGED_HEX_NAME}
  1429. COMMAND
  1430. ${PYTHON_EXECUTABLE}
  1431. ${ZEPHYR_BASE}/scripts/mergehex.py
  1432. -o ${MERGED_HEX_NAME}
  1433. ${HEX_FILES_TO_MERGE}
  1434. DEPENDS ${HEX_FILES_TO_MERGE} ${logical_target_for_zephyr_elf}
  1435. )
  1436. add_custom_target(mergehex ALL DEPENDS ${MERGED_HEX_NAME})
  1437. list(APPEND RUNNERS_DEPS mergehex)
  1438. message(VERBOSE "Merging hex files: ${HEX_FILES_TO_MERGE}")
  1439. endif()
  1440. if(EMU_PLATFORM)
  1441. include(${ZEPHYR_BASE}/cmake/emu/${EMU_PLATFORM}.cmake)
  1442. else()
  1443. add_custom_target(run
  1444. COMMAND
  1445. ${CMAKE_COMMAND} -E echo
  1446. "==================================================="
  1447. "Emulation/Simulation not supported with this board."
  1448. "==================================================="
  1449. )
  1450. endif()
  1451. add_subdirectory(cmake/flash)
  1452. add_subdirectory(cmake/usage)
  1453. add_subdirectory(cmake/reports)
  1454. if(NOT CONFIG_TEST)
  1455. if(CONFIG_ASSERT AND (NOT CONFIG_FORCE_NO_ASSERT))
  1456. message(WARNING "__ASSERT() statements are globally ENABLED")
  1457. endif()
  1458. endif()
  1459. if(CONFIG_BOARD_DEPRECATED_RELEASE)
  1460. message(WARNING "
  1461. WARNING: The board '${BOARD}' is deprecated and will be
  1462. removed in version ${CONFIG_BOARD_DEPRECATED_RELEASE}"
  1463. )
  1464. endif()
  1465. if(CONFIG_SOC_DEPRECATED_RELEASE)
  1466. message(WARNING "
  1467. WARNING: The SoC '${SOC_NAME}' is deprecated and will be
  1468. removed in version ${CONFIG_SOC_DEPRECATED_RELEASE}"
  1469. )
  1470. endif()
  1471. # In CMake projects, 'CMAKE_BUILD_TYPE' usually determines the
  1472. # optimization flag, but in Zephyr it is determined through
  1473. # Kconfig. Here we give a warning when there is a mismatch between the
  1474. # two in case the user is not aware of this.
  1475. set(build_types None Debug Release RelWithDebInfo MinSizeRel)
  1476. if((CMAKE_BUILD_TYPE IN_LIST build_types) AND (NOT NO_BUILD_TYPE_WARNING))
  1477. string(TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE_uppercase)
  1478. if(NOT (${OPTIMIZATION_FLAG} IN_LIST CMAKE_C_FLAGS_${CMAKE_BUILD_TYPE_uppercase}))
  1479. message(WARNING "
  1480. The CMake build type was set to '${CMAKE_BUILD_TYPE}', but the optimization flag was set to '${OPTIMIZATION_FLAG}'.
  1481. This may be intentional and the warning can be turned off by setting the CMake variable 'NO_BUILD_TYPE_WARNING'"
  1482. )
  1483. endif()
  1484. endif()
  1485. # @Intent: Set compiler specific flags for standard C/C++ includes
  1486. # Done at the very end, so any other system includes which may
  1487. # be added by Zephyr components were first in list.
  1488. # Note, the compile flags are moved, but the system include is still present here.
  1489. zephyr_compile_options($<TARGET_PROPERTY:compiler,nostdinc>)
  1490. target_include_directories(zephyr_interface SYSTEM INTERFACE $<TARGET_PROPERTY:compiler,nostdinc_include>)
  1491. if(NOT CONFIG_LIB_CPLUSPLUS)
  1492. zephyr_compile_options($<$<COMPILE_LANGUAGE:CXX>:$<TARGET_PROPERTY:compiler-cpp,nostdincxx>>)
  1493. endif()
  1494. # Finally export all build flags from Zephyr
  1495. add_subdirectory_ifdef(
  1496. CONFIG_MAKEFILE_EXPORTS
  1497. cmake/makefile_exports
  1498. )
  1499. # Add framework
  1500. add_subdirectory(framework)