Sebastian Bøe | ee9af86 | 2018-06-04 11:47:45 +0200 | [diff] [blame] | 1 | if(NOT DEFINED ZEPHYR_BINARY_DIR) |
| 2 | message(FATAL_ERROR "A user error has occured. |
| 3 | cmake was invoked with '${CMAKE_CURRENT_LIST_DIR}' specified as the source directory, |
| 4 | but it must be invoked with an application source directory, |
| 5 | such as '${CMAKE_CURRENT_LIST_DIR}/samples/hello_world'. |
| 6 | Debug variables: |
| 7 | CMAKE_CACHEFILE_DIR: ${CMAKE_CACHEFILE_DIR} |
| 8 | ") |
| 9 | endif() |
| 10 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 11 | project(Zephyr-Kernel VERSION ${PROJECT_VERSION}) |
| 12 | enable_language(C CXX ASM) |
| 13 | |
| 14 | # *DOCUMENTATION* |
| 15 | # |
| 16 | # Note that this is *NOT* the top-level CMakeLists.txt. That's in the |
| 17 | # application. See the Application Development Primer documentation |
| 18 | # for details. |
| 19 | # |
| 20 | # To see a list of typical targets execute "make usage" |
| 21 | # More info can be located in ./README.rst |
| 22 | # Comments in this file are targeted only to the developer, do not |
| 23 | # expect to learn how to build the kernel reading this file. |
| 24 | |
| 25 | # Verify that the toolchain can compile a dummy file, if it is not we |
| 26 | # won't be able to test for compatiblity with certain C flags. |
| 27 | check_c_compiler_flag("" toolchain_is_ok) |
| 28 | assert(toolchain_is_ok "The toolchain is unable to build a dummy C file. See CMakeError.log.") |
| 29 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 30 | set(CMAKE_EXECUTABLE_SUFFIX .elf) |
| 31 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 32 | if(NOT PROPERTY_LINKER_SCRIPT_DEFINES) |
| 33 | set_property(GLOBAL PROPERTY PROPERTY_LINKER_SCRIPT_DEFINES -D__GCC_LINKER_CMD__) |
| 34 | endif() |
| 35 | |
| 36 | define_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT BRIEF_DOCS " " FULL_DOCS " ") |
| 37 | set_property( GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf32-little${ARCH}) |
| 38 | |
| 39 | # zephyr_interface is a source-less library that has all the global |
| 40 | # compiler options needed by all source files. All zephyr libraries, |
| 41 | # including the library named "zephyr" link with this library to |
| 42 | # obtain these flags. |
| 43 | add_library(zephyr_interface INTERFACE) |
| 44 | |
| 45 | # zephyr is a catchall CMake library for source files that can be |
| 46 | # built purely with the include paths, defines, and other compiler |
| 47 | # flags that come with zephyr_interface. |
| 48 | zephyr_library_named(zephyr) |
| 49 | |
| 50 | zephyr_include_directories( |
| 51 | kernel/include |
| 52 | arch/${ARCH}/include |
Anas Nashif | 96455d5 | 2018-09-04 14:34:06 -0500 | [diff] [blame] | 53 | ${SOC_DIR}/${ARCH}/${SOC_PATH} |
| 54 | ${SOC_DIR}/${ARCH}/${SOC_PATH}/include |
| 55 | ${SOC_DIR}/${ARCH}/${SOC_FAMILY}/include |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 56 | ${BOARD_DIR} |
| 57 | include |
| 58 | include/drivers |
| 59 | ${PROJECT_BINARY_DIR}/include/generated |
| 60 | ${USERINCLUDE} |
| 61 | ${STDINCLUDE} |
| 62 | ) |
| 63 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 64 | zephyr_compile_definitions( |
| 65 | KERNEL |
| 66 | __ZEPHYR__=1 |
Anas Nashif | 34aebad | 2018-01-03 12:26:19 -0500 | [diff] [blame] | 67 | ) |
| 68 | |
Thomas Ebert Hansen | 15bc615 | 2018-07-12 12:01:55 +0200 | [diff] [blame] | 69 | if(NOT CONFIG_NO_OPTIMIZATIONS) |
Anas Nashif | 34aebad | 2018-01-03 12:26:19 -0500 | [diff] [blame] | 70 | zephyr_compile_definitions( |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 71 | _FORTIFY_SOURCE=2 |
| 72 | ) |
Anas Nashif | 34aebad | 2018-01-03 12:26:19 -0500 | [diff] [blame] | 73 | endif() |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 74 | |
Anas Nashif | daf7716 | 2018-04-09 21:53:26 -0500 | [diff] [blame] | 75 | if(BUILD_VERSION) |
| 76 | zephyr_compile_definitions( |
| 77 | BUILD_VERSION=${BUILD_VERSION} |
| 78 | ) |
| 79 | endif() |
| 80 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 81 | # We need to set an optimization level. |
| 82 | # Default to -Os |
Alberto Escolar Piedras | f60527a | 2018-01-22 15:35:54 +0100 | [diff] [blame] | 83 | # unless CONFIG_NO_OPTIMIZATIONS is set, then it is -O0 |
| 84 | # or unless CONFIG_DEBUG is set, then it is -Og |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 85 | # |
| 86 | # also, some toolchain's break with -Os, and some toolchain's break |
| 87 | # with -Og so allow them to override what flag to use |
| 88 | # |
| 89 | # Finally, the user can use Kconfig to add compiler options that will |
| 90 | # come after these options and override them |
Alberto Escolar Piedras | f60527a | 2018-01-22 15:35:54 +0100 | [diff] [blame] | 91 | set_ifndef(OPTIMIZE_FOR_NO_OPTIMIZATIONS_FLAG "-O0") |
Sebastian Bøe | 600c8f7 | 2018-01-24 10:40:32 +0100 | [diff] [blame] | 92 | set_ifndef(OPTIMIZE_FOR_DEBUG_FLAG "-Og") |
| 93 | set_ifndef(OPTIMIZE_FOR_SIZE_FLAG "-Os") |
Aurelien Jarno | e8413d1 | 2018-06-16 23:40:04 +0200 | [diff] [blame] | 94 | set_ifndef(OPTIMIZE_FOR_SPEED_FLAG "-O2") |
Sebastian Bøe | 600c8f7 | 2018-01-24 10:40:32 +0100 | [diff] [blame] | 95 | |
Alberto Escolar Piedras | f60527a | 2018-01-22 15:35:54 +0100 | [diff] [blame] | 96 | if(CONFIG_NO_OPTIMIZATIONS) |
Sebastian Bøe | 600c8f7 | 2018-01-24 10:40:32 +0100 | [diff] [blame] | 97 | set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_NO_OPTIMIZATIONS_FLAG}) |
| 98 | elseif(CONFIG_DEBUG_OPTIMIZATIONS) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 99 | set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_DEBUG_FLAG}) |
Aurelien Jarno | e8413d1 | 2018-06-16 23:40:04 +0200 | [diff] [blame] | 100 | elseif(CONFIG_SPEED_OPTIMIZATIONS) |
| 101 | set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_SPEED_FLAG}) |
Sebastian Bøe | 600c8f7 | 2018-01-24 10:40:32 +0100 | [diff] [blame] | 102 | elseif(CONFIG_SIZE_OPTIMIZATIONS) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 103 | set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_SIZE_FLAG}) # Default |
Sebastian Bøe | 600c8f7 | 2018-01-24 10:40:32 +0100 | [diff] [blame] | 104 | else() |
| 105 | assert(0 "Unreachable code. Expected optimization level to have been chosen. See misc/Kconfig.") |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 106 | endif() |
| 107 | |
| 108 | zephyr_compile_options( |
| 109 | ${OPTIMIZATION_FLAG} # Usually -Os |
| 110 | -g # TODO: build configuration enough? |
| 111 | -Wall |
| 112 | -Wformat |
| 113 | -Wformat-security |
| 114 | -Wno-format-zero-length |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 115 | -imacros ${AUTOCONF_H} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 116 | -ffreestanding |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 117 | -Wno-main |
| 118 | ${NOSTDINC_F} |
Rajavardhan Gundi | 08172cd | 2017-12-12 23:29:37 +0530 | [diff] [blame] | 119 | ${TOOLCHAIN_C_FLAGS} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 120 | ) |
| 121 | |
| 122 | zephyr_compile_options( |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 123 | $<$<COMPILE_LANGUAGE:CXX>:-std=c++11> |
| 124 | $<$<COMPILE_LANGUAGE:CXX>:-fcheck-new> |
| 125 | $<$<COMPILE_LANGUAGE:CXX>:-ffunction-sections> |
| 126 | $<$<COMPILE_LANGUAGE:CXX>:-fdata-sections> |
| 127 | $<$<COMPILE_LANGUAGE:CXX>:-fno-rtti> |
| 128 | $<$<COMPILE_LANGUAGE:CXX>:-fno-exceptions> |
| 129 | |
| 130 | $<$<COMPILE_LANGUAGE:ASM>:-xassembler-with-cpp> |
| 131 | $<$<COMPILE_LANGUAGE:ASM>:-D_ASMLANGUAGE> |
| 132 | ) |
| 133 | |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 134 | if(NOT CONFIG_NATIVE_APPLICATION) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 135 | zephyr_ld_options( |
| 136 | -nostartfiles |
| 137 | -nodefaultlibs |
| 138 | -nostdlib |
| 139 | -static |
| 140 | -no-pie |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 141 | ) |
| 142 | endif() |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 143 | |
| 144 | # ========================================================================== |
| 145 | # |
| 146 | # cmake -DW=... settings |
| 147 | # |
| 148 | # W=1 - warnings that may be relevant and does not occur too often |
| 149 | # W=2 - warnings that occur quite often but may still be relevant |
| 150 | # W=3 - the more obscure warnings, can most likely be ignored |
| 151 | # ========================================================================== |
| 152 | if(W MATCHES "1") |
| 153 | zephyr_compile_options( |
| 154 | -Wextra |
| 155 | -Wunused |
| 156 | -Wno-unused-parameter |
| 157 | -Wmissing-declarations |
| 158 | -Wmissing-format-attribute |
| 159 | -Wold-style-definition |
| 160 | ) |
| 161 | zephyr_cc_option( |
| 162 | -Wmissing-prototypes |
| 163 | -Wmissing-include-dirs |
| 164 | -Wunused-but-set-variable |
| 165 | -Wno-missing-field-initializers |
| 166 | ) |
| 167 | endif() |
| 168 | |
| 169 | if(W MATCHES "2") |
| 170 | zephyr_compile_options( |
| 171 | -Waggregate-return |
| 172 | -Wcast-align |
| 173 | -Wdisabled-optimization |
| 174 | -Wnested-externs |
| 175 | -Wshadow |
| 176 | ) |
| 177 | zephyr_cc_option( |
| 178 | -Wlogical-op |
| 179 | -Wmissing-field-initializers |
| 180 | ) |
| 181 | endif() |
| 182 | |
| 183 | if(W MATCHES "3") |
| 184 | zephyr_compile_options( |
| 185 | -Wbad-function-cast |
| 186 | -Wcast-qual |
| 187 | -Wconversion |
| 188 | -Wpacked |
| 189 | -Wpadded |
| 190 | -Wpointer-arith |
| 191 | -Wredundant-decls |
| 192 | -Wswitch-default |
| 193 | ) |
| 194 | zephyr_cc_option( |
| 195 | -Wpacked-bitfield-compat |
| 196 | -Wvla |
| 197 | ) |
| 198 | endif() |
| 199 | |
| 200 | # Allow the user to inject options when calling cmake, e.g. |
| 201 | # 'cmake -DEXTRA_CFLAGS="-Werror -Wno-deprecated-declarations" ..' |
Sebastian Bøe | 9f59045 | 2017-11-10 12:22:23 +0100 | [diff] [blame] | 202 | include(cmake/extra_flags.cmake) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 203 | |
| 204 | if(CONFIG_READABLE_ASM) |
| 205 | zephyr_cc_option(-fno-reorder-blocks) |
| 206 | zephyr_cc_option(-fno-ipa-cp-clone) |
| 207 | zephyr_cc_option(-fno-partial-inlining) |
| 208 | endif() |
| 209 | |
| 210 | zephyr_cc_option(-fno-asynchronous-unwind-tables) |
| 211 | zephyr_cc_option(-fno-pie) |
| 212 | zephyr_cc_option(-fno-pic) |
| 213 | zephyr_cc_option(-fno-strict-overflow) |
| 214 | zephyr_cc_option(-Wno-pointer-sign) |
| 215 | |
Sebastian Bøe | 703dc59 | 2017-11-29 10:19:50 +0100 | [diff] [blame] | 216 | zephyr_compile_options_ifdef(CONFIG_STACK_CANARIES -fstack-protector-all) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 217 | |
| 218 | if(CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT) |
| 219 | if(CONFIG_OMIT_FRAME_POINTER) |
| 220 | zephyr_cc_option(-fomit-frame-pointer) |
| 221 | else() |
| 222 | zephyr_cc_option(-fno-omit-frame-pointer) |
| 223 | endif() |
| 224 | endif() |
| 225 | |
Aurelien Jarno | 92a6898 | 2018-06-16 23:40:04 +0200 | [diff] [blame] | 226 | separate_arguments(CONFIG_COMPILER_OPT_AS_LIST UNIX_COMMAND ${CONFIG_COMPILER_OPT}) |
| 227 | zephyr_compile_options(${CONFIG_COMPILER_OPT_AS_LIST}) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 228 | |
| 229 | # TODO: Include arch compiler options at this point. |
| 230 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 231 | if(CMAKE_C_COMPILER_ID STREQUAL "Clang") |
| 232 | zephyr_cc_option( |
Anas Nashif | 72edc4e | 2018-05-02 00:09:31 -0500 | [diff] [blame] | 233 | #FIXME: need to fix all of those |
| 234 | -Wno-sometimes-uninitialized |
| 235 | -Wno-shift-overflow |
| 236 | -Wno-missing-braces |
| 237 | -Wno-self-assign |
| 238 | -Wno-address-of-packed-member |
| 239 | -Wno-unused-function |
| 240 | -Wno-initializer-overrides |
| 241 | -Wno-section |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 242 | -Wno-unknown-warning-option |
| 243 | -Wno-unused-variable |
| 244 | -Wno-format-invalid-specifier |
| 245 | -Wno-gnu |
| 246 | # comparison of unsigned expression < 0 is always false |
| 247 | -Wno-tautological-compare |
| 248 | ) |
| 249 | else() # GCC assumed |
| 250 | zephyr_cc_option( |
| 251 | -Wno-unused-but-set-variable |
| 252 | -fno-reorder-functions |
| 253 | ) |
Rajavardhan Gundi | 08172cd | 2017-12-12 23:29:37 +0530 | [diff] [blame] | 254 | |
Anas Nashif | 7ee8bb9 | 2018-02-11 14:36:21 -0600 | [diff] [blame] | 255 | if(NOT ${ZEPHYR_TOOLCHAIN_VARIANT} STREQUAL "xcc") |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 256 | zephyr_cc_option(-fno-defer-pop) |
| 257 | endif() |
| 258 | endif() |
| 259 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 260 | zephyr_cc_option_ifdef(CONFIG_STACK_USAGE -fstack-usage) |
| 261 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 262 | zephyr_system_include_directories(${NOSTDINC}) |
| 263 | |
| 264 | # Force an error when things like SYS_INIT(foo, ...) occur with a missing header. |
| 265 | zephyr_cc_option(-Werror=implicit-int) |
| 266 | |
| 267 | # Prohibit date/time macros, which would make the build non-deterministic |
| 268 | # cc-option(-Werror=date-time) |
| 269 | |
| 270 | # TODO: Archiver arguments |
| 271 | # ar_option(D) |
| 272 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 273 | set_ifndef(LINKERFLAGPREFIX -Wl) |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 274 | |
| 275 | if(NOT CONFIG_NATIVE_APPLICATION) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 276 | zephyr_ld_options( |
| 277 | ${LINKERFLAGPREFIX},-X |
| 278 | ${LINKERFLAGPREFIX},-N |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 279 | ) |
| 280 | endif() |
| 281 | |
| 282 | zephyr_ld_options( |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 283 | ${LINKERFLAGPREFIX},--gc-sections |
| 284 | ${LINKERFLAGPREFIX},--build-id=none |
| 285 | ) |
| 286 | |
| 287 | if(CONFIG_HAVE_CUSTOM_LINKER_SCRIPT) |
| 288 | set(LINKER_SCRIPT ${APPLICATION_SOURCE_DIR}/${CONFIG_CUSTOM_LINKER_SCRIPT}) |
Sebastian Bøe | c1aa9d1 | 2018-04-12 14:48:05 +0200 | [diff] [blame] | 289 | if(NOT EXISTS ${LINKER_SCRIPT}) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 290 | set(LINKER_SCRIPT ${CONFIG_CUSTOM_LINKER_SCRIPT}) |
Sebastian Bøe | c1aa9d1 | 2018-04-12 14:48:05 +0200 | [diff] [blame] | 291 | assert_exists(CONFIG_CUSTOM_LINKER_SCRIPT) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 292 | endif() |
| 293 | else() |
| 294 | # Try a board specific linker file |
| 295 | set(LINKER_SCRIPT ${BOARD_DIR}/linker.ld) |
| 296 | if(NOT EXISTS ${LINKER_SCRIPT}) |
| 297 | # If not available, try an SoC specific linker file |
Anas Nashif | 96455d5 | 2018-09-04 14:34:06 -0500 | [diff] [blame] | 298 | set(LINKER_SCRIPT ${SOC_DIR}/${ARCH}/${SOC_PATH}/linker.ld) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 299 | endif() |
| 300 | endif() |
| 301 | |
| 302 | if(NOT EXISTS ${LINKER_SCRIPT}) |
| 303 | message(FATAL_ERROR "Could not find linker script: '${LINKER_SCRIPT}'. Corrupted configuration?") |
| 304 | endif() |
| 305 | |
Kristian Klomsten Skordal | 0225e95 | 2018-01-30 11:26:42 +0100 | [diff] [blame] | 306 | # Custom section support in linker scripts requires that the application source |
| 307 | # directory is in the preprocessor search path, in order to find the custom |
| 308 | # linker script fragments. |
| 309 | if(CONFIG_CUSTOM_RODATA_LD OR CONFIG_CUSTOM_RWDATA_LD OR CONFIG_CUSTOM_SECTIONS_LD) |
| 310 | zephyr_include_directories(${APPLICATION_SOURCE_DIR}) |
| 311 | endif() |
| 312 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 313 | configure_file(version.h.in ${PROJECT_BINARY_DIR}/include/generated/version.h) |
| 314 | |
Sebastian Bøe | 6f946e2 | 2018-01-09 10:52:57 +0100 | [diff] [blame] | 315 | # Unfortunately, the order in which CMakeLists.txt code is processed |
| 316 | # matters so we need to be careful about how we order the processing |
| 317 | # of subdirectories. One example is "Compiler flags added late in the |
| 318 | # build are not exported to external build systems #5605"; when we |
| 319 | # integrate with an external build system we read out all compiler |
| 320 | # flags when the external project is created. So an external project |
| 321 | # defined in subsys or ext will not get global flags added by drivers/ |
| 322 | # or tests/ as the subdirectories are ordered now. |
| 323 | # |
| 324 | # Another example of when the order matters is the reading and writing |
| 325 | # of global properties such as ZEPHYR_LIBS or |
| 326 | # GENERATED_KERNEL_OBJECT_FILES. |
| 327 | # |
| 328 | # Arch is placed early because it defines important compiler flags |
| 329 | # that must be exported to external build systems defined in |
| 330 | # e.g. subsys/. |
| 331 | add_subdirectory(arch) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 332 | add_subdirectory(lib) |
| 333 | add_subdirectory(misc) |
| 334 | # We use include instead of add_subdirectory to avoid creating a new directory scope. |
| 335 | # This is because source file properties are directory scoped, including the GENERATED |
| 336 | # property which is set implicitly for custom command outputs |
| 337 | include(misc/generated/CMakeLists.txt) |
Anas Nashif | 3d1252f | 2018-09-03 15:20:14 -0500 | [diff] [blame] | 338 | |
Erwan Gouriou | ba31cb5 | 2018-09-13 16:25:53 +0200 | [diff] [blame] | 339 | if(EXISTS ${SOC_DIR}/${ARCH}/CMakeLists.txt) |
Anas Nashif | 96455d5 | 2018-09-04 14:34:06 -0500 | [diff] [blame] | 340 | add_subdirectory(${SOC_DIR}/${ARCH} soc/${ARCH}) |
Anas Nashif | 3d1252f | 2018-09-03 15:20:14 -0500 | [diff] [blame] | 341 | else() |
Anas Nashif | 96455d5 | 2018-09-04 14:34:06 -0500 | [diff] [blame] | 342 | add_subdirectory(${SOC_DIR}/${ARCH}/${SOC_PATH} soc/${ARCH}/${SOC_PATH}) |
Anas Nashif | 3d1252f | 2018-09-03 15:20:14 -0500 | [diff] [blame] | 343 | endif() |
| 344 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 345 | add_subdirectory(boards) |
| 346 | add_subdirectory(ext) |
| 347 | add_subdirectory(subsys) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 348 | add_subdirectory(drivers) |
| 349 | add_subdirectory(tests) |
| 350 | |
Sebastian Bøe | 2ead15d | 2017-11-29 17:46:37 +0100 | [diff] [blame] | 351 | set(syscall_macros_h ${ZEPHYR_BINARY_DIR}/include/generated/syscall_macros.h) |
| 352 | |
| 353 | add_custom_target(syscall_macros_h_target DEPENDS ${syscall_macros_h}) |
| 354 | add_custom_command( OUTPUT ${syscall_macros_h} |
| 355 | COMMAND |
| 356 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 357 | ${ZEPHYR_BASE}/scripts/gen_syscall_header.py |
Sebastian Bøe | 2ead15d | 2017-11-29 17:46:37 +0100 | [diff] [blame] | 358 | > ${syscall_macros_h} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 359 | DEPENDS ${ZEPHYR_BASE}/scripts/gen_syscall_header.py |
Sebastian Bøe | 2ead15d | 2017-11-29 17:46:37 +0100 | [diff] [blame] | 360 | ) |
| 361 | |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 362 | |
| 363 | set(syscall_list_h ${CMAKE_CURRENT_BINARY_DIR}/include/generated/syscall_list.h) |
| 364 | set(syscalls_json ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls.json) |
| 365 | |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 366 | # The syscalls subdirs txt file is constructed by python containing a list of folders to use for |
| 367 | # dependency handling, including empty folders. |
| 368 | # Windows: The list is used to specify DIRECTORY list with CMAKE_CONFIGURE_DEPENDS attribute. |
| 369 | # Other OS: The list will update whenever a file is added/removed/modified and ensure a re-build. |
| 370 | set(syscalls_subdirs_txt ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_subdirs.txt) |
| 371 | |
| 372 | # As syscalls_subdirs_txt is updated whenever a file is modified, this file can not be used for |
| 373 | # monitoring of added / removed folders. A trigger file is thus used for correct dependency |
| 374 | # handling. The trigger file will update when a folder is added / removed. |
| 375 | set(syscalls_subdirs_trigger ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_subdirs.trigger) |
| 376 | |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 377 | if(NOT (${CMAKE_HOST_SYSTEM_NAME} STREQUAL Windows)) |
| 378 | set(syscalls_links --create-links ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_links) |
| 379 | endif() |
| 380 | |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 381 | # When running CMake it must be ensured that all dependencies are correctly acquired. |
| 382 | execute_process( |
| 383 | COMMAND |
| 384 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 385 | ${ZEPHYR_BASE}/scripts/subfolder_list.py |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 386 | --directory ${ZEPHYR_BASE}/include # Walk this directory |
| 387 | --out-file ${syscalls_subdirs_txt} # Write file with discovered folder |
| 388 | --trigger ${syscalls_subdirs_trigger} # Trigger file that is used for json generation |
| 389 | ${syscalls_links} # If defined, create symlinks for dependencies |
| 390 | ) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 391 | file(STRINGS ${syscalls_subdirs_txt} PARSE_SYSCALLS_PATHS_DEPENDS) |
| 392 | |
| 393 | if(${CMAKE_HOST_SYSTEM_NAME} STREQUAL Windows) |
| 394 | # On windows only adding/removing files or folders will be reflected in depends. |
| 395 | # Hence adding a file requires CMake to re-run to add this file to the file list. |
| 396 | set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${PARSE_SYSCALLS_PATHS_DEPENDS}) |
| 397 | |
| 398 | # Also On Windows each header file must be monitored as file modifications are not reflected |
| 399 | # on directory level. |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 400 | file(GLOB_RECURSE PARSE_SYSCALLS_HEADER_DEPENDS ${ZEPHYR_BASE}/include/*.h) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 401 | else() |
| 402 | # The syscall parsing depends on the folders in order to detect add/removed/modified files. |
| 403 | # When a folder is removed, CMake will try to find a target that creates that dependency. |
| 404 | # This command sets up the target for CMake to find. |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 405 | # Without this code, CMake will fail with the following error: |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 406 | # <folder> needed by '<target>', missing and no known rule to make it |
| 407 | # when a folder is removed. |
| 408 | add_custom_command(OUTPUT ${PARSE_SYSCALLS_PATHS_DEPENDS} |
| 409 | COMMAND ${CMAKE_COMMAND} -E echo "" |
| 410 | COMMENT "Preparing syscall dependency handling" |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 411 | ) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 412 | |
| 413 | add_custom_command( |
| 414 | OUTPUT |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 415 | ${syscalls_subdirs_trigger} |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 416 | COMMAND |
| 417 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 418 | ${ZEPHYR_BASE}/scripts/subfolder_list.py |
| 419 | --directory ${ZEPHYR_BASE}/include # Walk this directory |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 420 | --out-file ${syscalls_subdirs_txt} # Write file with discovered folder |
| 421 | --trigger ${syscalls_subdirs_trigger} # Trigger file that is used for json generation |
| 422 | ${syscalls_links} # If defined, create symlinks for dependencies |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 423 | DEPENDS ${PARSE_SYSCALLS_PATHS_DEPENDS} |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 424 | ) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 425 | |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 426 | # Ensure subdir file always exists when specifying CMake dependency. |
| 427 | if(NOT EXISTS ${syscalls_subdirs_txt}) |
| 428 | file(WRITE ${syscalls_subdirs_txt} "") |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 429 | endif() |
| 430 | |
| 431 | # On other OS'es, modifying a file is reflected on the folder timestamp and hence detected |
| 432 | # when using depend on directory level. |
| 433 | # Thus CMake only needs to re-run when sub-directories are added / removed, which is indicated |
| 434 | # using a trigger file. |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 435 | set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${syscalls_subdirs_txt}) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 436 | endif() |
| 437 | |
Adithya Baglody | e67720b | 2018-07-02 14:59:19 +0530 | [diff] [blame] | 438 | # SYSCALL_INCLUDE_DIRECTORY will include the directories that needs to be |
| 439 | # searched for syscall declarations if CONFIG_APPLICATION_DEFINED_SYSCALL is set |
| 440 | if(CONFIG_APPLICATION_DEFINED_SYSCALL) |
| 441 | set(SYSCALL_INCLUDE_DIRECTORY --include ${APPLICATION_SOURCE_DIR}) |
| 442 | endif() |
| 443 | |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 444 | add_custom_command( |
| 445 | OUTPUT |
| 446 | ${syscalls_json} |
| 447 | COMMAND |
| 448 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 449 | ${ZEPHYR_BASE}/scripts/parse_syscalls.py |
Adithya Baglody | e67720b | 2018-07-02 14:59:19 +0530 | [diff] [blame] | 450 | --include ${ZEPHYR_BASE}/include # Read files from this dir |
| 451 | ${SYSCALL_INCLUDE_DIRECTORY} |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 452 | --json-file ${syscalls_json} # Write this file |
| 453 | DEPENDS ${syscalls_subdirs_trigger} ${PARSE_SYSCALLS_HEADER_DEPENDS} |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 454 | ) |
| 455 | |
| 456 | add_custom_target(syscall_list_h_target DEPENDS ${syscall_list_h}) |
| 457 | add_custom_command(OUTPUT include/generated/syscall_dispatch.c ${syscall_list_h} |
| 458 | # Also, some files are written to include/generated/syscalls/ |
| 459 | COMMAND |
| 460 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 461 | ${ZEPHYR_BASE}/scripts/gen_syscalls.py |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 462 | --json-file ${syscalls_json} # Read this file |
| 463 | --base-output include/generated/syscalls # Write to this dir |
| 464 | --syscall-dispatch include/generated/syscall_dispatch.c # Write this file |
Andrew Boie | 353acf4 | 2018-07-23 18:10:15 -0700 | [diff] [blame] | 465 | --syscall-list ${syscall_list_h} |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 466 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 467 | DEPENDS ${syscalls_json} |
| 468 | ) |
| 469 | |
Leandro Pereira | c200367 | 2018-04-04 13:50:32 -0700 | [diff] [blame] | 470 | set(DRV_VALIDATION ${PROJECT_BINARY_DIR}/include/generated/driver-validation.h) |
| 471 | add_custom_command( |
| 472 | OUTPUT ${DRV_VALIDATION} |
| 473 | COMMAND |
| 474 | ${PYTHON_EXECUTABLE} |
| 475 | ${ZEPHYR_BASE}/scripts/gen_kobject_list.py |
| 476 | --validation-output ${DRV_VALIDATION} |
| 477 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
| 478 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 479 | ) |
| 480 | add_custom_target(driver_validation_h_target DEPENDS ${DRV_VALIDATION}) |
| 481 | |
Leandro Pereira | 39dc7d0 | 2018-04-05 13:59:33 -0700 | [diff] [blame] | 482 | include($ENV{ZEPHYR_BASE}/cmake/kobj.cmake) |
| 483 | gen_kobj(KOBJ_INCLUDE_PATH) |
Leandro Pereira | c200367 | 2018-04-04 13:50:32 -0700 | [diff] [blame] | 484 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 485 | # Generate offsets.c.obj from offsets.c |
| 486 | # Generate offsets.h from offsets.c.obj |
| 487 | |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 488 | set(OFFSETS_C_PATH ${ZEPHYR_BASE}/arch/${ARCH}/core/offsets/offsets.c) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 489 | set(OFFSETS_O_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/offsets.dir/arch/${ARCH}/core/offsets/offsets.c.obj) |
| 490 | set(OFFSETS_H_PATH ${PROJECT_BINARY_DIR}/include/generated/offsets.h) |
| 491 | |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 492 | add_library( offsets STATIC ${OFFSETS_C_PATH}) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 493 | target_link_libraries(offsets zephyr_interface) |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 494 | add_dependencies( offsets |
| 495 | syscall_list_h_target |
| 496 | syscall_macros_h_target |
Leandro Pereira | c200367 | 2018-04-04 13:50:32 -0700 | [diff] [blame] | 497 | driver_validation_h_target |
Leandro Pereira | 39dc7d0 | 2018-04-05 13:59:33 -0700 | [diff] [blame] | 498 | kobj_types_h_target |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 499 | ) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 500 | |
| 501 | add_custom_command( |
| 502 | OUTPUT ${OFFSETS_H_PATH} |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 503 | COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/gen_offset_header.py |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 504 | -i ${OFFSETS_O_PATH} |
| 505 | -o ${OFFSETS_H_PATH} |
| 506 | DEPENDS offsets |
| 507 | ) |
| 508 | add_custom_target(offsets_h DEPENDS ${OFFSETS_H_PATH}) |
| 509 | |
| 510 | zephyr_include_directories(${TOOLCHAIN_INCLUDES}) |
| 511 | |
Sebastian Bøe | 89516fb | 2017-12-01 15:25:06 +0100 | [diff] [blame] | 512 | zephyr_get_include_directories_for_lang(C ZEPHYR_INCLUDES) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 513 | |
| 514 | add_subdirectory(kernel) |
| 515 | |
| 516 | # Read list content |
| 517 | get_property(ZEPHYR_LIBS_PROPERTY GLOBAL PROPERTY ZEPHYR_LIBS) |
| 518 | |
| 519 | foreach(zephyr_lib ${ZEPHYR_LIBS_PROPERTY}) |
| 520 | # TODO: Could this become an INTERFACE property of zephyr_interface? |
| 521 | add_dependencies(${zephyr_lib} offsets_h) |
Sebastian Bøe | 4ece94d | 2017-12-05 13:22:19 +0100 | [diff] [blame] | 522 | |
Sebastian Bøe | 64edbaf | 2018-01-09 12:45:19 +0100 | [diff] [blame] | 523 | # Verify that all (non-imported) libraries have source |
| 524 | # files. Libraries without source files are not supported because |
| 525 | # they are an indication that something has been misconfigured. |
| 526 | get_target_property(lib_imported ${zephyr_lib} IMPORTED) |
| 527 | get_target_property(lib_sources ${zephyr_lib} SOURCES) |
Sebastian Bøe | 4ece94d | 2017-12-05 13:22:19 +0100 | [diff] [blame] | 528 | if(lib_sources STREQUAL lib_sources-NOTFOUND |
| 529 | AND (NOT (${zephyr_lib} STREQUAL app)) |
Sebastian Bøe | 64edbaf | 2018-01-09 12:45:19 +0100 | [diff] [blame] | 530 | AND (NOT lib_imported) |
Sebastian Bøe | 4ece94d | 2017-12-05 13:22:19 +0100 | [diff] [blame] | 531 | ) |
| 532 | # app is not checked because it's sources are added to it after |
| 533 | # this CMakeLists.txt file has been processed |
| 534 | message(FATAL_ERROR "\ |
| 535 | The Zephyr library '${zephyr_lib}' was created without source files. \ |
Sebastian Bøe | 64edbaf | 2018-01-09 12:45:19 +0100 | [diff] [blame] | 536 | Empty (non-imported) libraries are not supported. \ |
Sebastian Bøe | 4ece94d | 2017-12-05 13:22:19 +0100 | [diff] [blame] | 537 | Either make sure that the library has the sources it should have, \ |
| 538 | or make sure it is not created when it has no source files.") |
| 539 | endif() |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 540 | endforeach() |
| 541 | |
| 542 | get_property(OUTPUT_FORMAT GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT) |
| 543 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 544 | get_property(LINKER_SCRIPT_DEFINES GLOBAL PROPERTY PROPERTY_LINKER_SCRIPT_DEFINES) |
| 545 | |
| 546 | if(CONFIG_APPLICATION_MEMORY) |
| 547 | # Objects default to being in kernel space, and then we exclude |
| 548 | # certain items. |
| 549 | set(kernel_object_file_list |
| 550 | ${ZEPHYR_LIBS_PROPERTY} |
| 551 | kernel |
| 552 | ) |
| 553 | list( |
| 554 | REMOVE_ITEM |
| 555 | kernel_object_file_list |
| 556 | app |
| 557 | ) |
| 558 | |
| 559 | # The zephyr libraries in zephyr/lib/ and zephyr/test/ belong in |
| 560 | # userspace. |
| 561 | |
| 562 | # NB: The business logic for determing what source files are in |
| 563 | # kernel space and what source files are in user space is |
| 564 | # fragile. Fix ASAP. |
| 565 | # |
| 566 | # The intended design is that certain directories are designated as |
| 567 | # containing userspace code and others for kernel space code. The |
| 568 | # implementation we have however is not working on directories of |
| 569 | # code, it is working on zephyr libraries. It is exploiting the fact |
| 570 | # that zephyr libraries follow a naming scheme as described in |
| 571 | # extensions.cmake:zephyr_library_get_current_dir_lib_name |
| 572 | # |
| 573 | # But code from test/ and lib/ that is placed in the "zephyr" |
| 574 | # library (with zephyr_sources()) will not be in a library that is |
| 575 | # prefixed with lib__ or test__ and will end up in the wrong address |
| 576 | # space. |
| 577 | set(application_space_dirs |
| 578 | lib |
| 579 | tests |
| 580 | ) |
| 581 | foreach(f ${kernel_object_file_list}) |
| 582 | foreach(app_dir ${application_space_dirs}) |
| 583 | if(${f} MATCHES "^${app_dir}__") # Begins with ${app_dir}__, e.g. lib__libc |
| 584 | list( |
| 585 | REMOVE_ITEM |
| 586 | kernel_object_file_list |
| 587 | ${f} |
| 588 | ) |
| 589 | endif() |
| 590 | endforeach() |
| 591 | endforeach() |
| 592 | |
| 593 | # Create a list ks, with relative paths to kernel space libs. |
| 594 | foreach(f ${kernel_object_file_list}) |
| 595 | get_target_property(target_name ${f} NAME) |
| 596 | get_target_property(target_binary_dir ${f} BINARY_DIR) |
| 597 | |
| 598 | string(REPLACE |
| 599 | ${PROJECT_BINARY_DIR} |
| 600 | "" |
| 601 | fixed_path |
| 602 | ${target_binary_dir} |
| 603 | ) |
| 604 | |
| 605 | # Append / if not empty |
| 606 | if(fixed_path) |
| 607 | set(fixed_path "${fixed_path}/") |
| 608 | endif() |
| 609 | |
| 610 | # Cut off leading / if present |
| 611 | if(fixed_path MATCHES "^/.+") |
| 612 | string(SUBSTRING ${fixed_path} 1 -1 fixed_path) |
| 613 | endif() |
| 614 | |
Sebastian Bøe | 1c2de10 | 2018-01-02 15:54:16 +0100 | [diff] [blame] | 615 | set(fixed_path "${fixed_path}lib${target_name}.a") |
| 616 | |
| 617 | if(CMAKE_GENERATOR STREQUAL "Ninja") |
| 618 | # Ninja invokes the linker from the root of the build directory |
| 619 | # (APPLICATION_BINARY_DIR) instead of from the build/zephyr |
| 620 | # directory (PROJECT_BINARY_DIR). So for linker-defs.h to get |
| 621 | # the correct path we need to prefix with zephyr/. |
| 622 | set(fixed_path "zephyr/${fixed_path}") |
| 623 | endif() |
| 624 | |
| 625 | list(APPEND ks ${fixed_path}) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 626 | endforeach() |
| 627 | |
Sebastian Bøe | cbe7b4f | 2018-08-03 16:15:05 +0200 | [diff] [blame] | 628 | # We are done constructing kernel_object_file_list, now we inject |
| 629 | # this list into the linker script through the define |
| 630 | # KERNELSPACE_OBJECT_FILES |
| 631 | set(def -DKERNELSPACE_OBJECT_FILES=) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 632 | foreach(f ${ks}) |
Sebastian Bøe | cbe7b4f | 2018-08-03 16:15:05 +0200 | [diff] [blame] | 633 | set(def "${def} ${f}") |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 634 | endforeach() |
Sebastian Bøe | cbe7b4f | 2018-08-03 16:15:05 +0200 | [diff] [blame] | 635 | list(APPEND LINKER_SCRIPT_DEFINES ${def}) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 636 | endif() # CONFIG_APPLICATION_MEMORY |
| 637 | |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 638 | # Declare MPU userspace dependencies before the linker scripts to make |
| 639 | # sure the order of dependencies are met |
| 640 | if(CONFIG_CPU_HAS_MPU AND CONFIG_USERSPACE) |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame] | 641 | if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APP_SHARED_MEM ) |
| 642 | set(APP_SMEM_DEP app_smem_linker) |
| 643 | endif() |
Andy Gross | e1fc5c2 | 2018-02-15 08:07:17 -0600 | [diff] [blame] | 644 | if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APPLICATION_MEMORY) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 645 | set(ALIGN_SIZING_DEP app_sizing_prebuilt linker_app_sizing_script) |
| 646 | endif() |
Wayne Ren | 5a0ba2f | 2018-02-12 19:17:04 +0800 | [diff] [blame] | 647 | if(CONFIG_ARM) |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 648 | set(PRIV_STACK_DEP priv_stacks_prebuilt) |
Wayne Ren | 5a0ba2f | 2018-02-12 19:17:04 +0800 | [diff] [blame] | 649 | endif() |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 650 | endif() |
| 651 | |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 652 | function(construct_add_custom_command_for_linker_pass linker_output_name output_variable) |
| 653 | set(linker_cmd_file_name ${linker_output_name}.cmd) |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 654 | |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 655 | if (${linker_output_name} MATCHES "^linker_pass_final$") |
| 656 | set(LINKER_PASS_DEFINE -DLINKER_PASS2) |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 657 | else() |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 658 | set(LINKER_PASS_DEFINE "") |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 659 | endif() |
| 660 | |
Sebastian Bøe | a0b9129 | 2017-12-31 10:56:32 +0100 | [diff] [blame] | 661 | # Different generators deal with depfiles differently. |
| 662 | if(CMAKE_GENERATOR STREQUAL "Unix Makefiles") |
| 663 | # Note that the IMPLICIT_DEPENDS option is currently supported only |
| 664 | # for Makefile generators and will be ignored by other generators. |
| 665 | set(LINKER_SCRIPT_DEP IMPLICIT_DEPENDS C ${LINKER_SCRIPT}) |
| 666 | elseif(CMAKE_GENERATOR STREQUAL "Ninja") |
| 667 | # Using DEPFILE with other generators than Ninja is an error. |
| 668 | set(LINKER_SCRIPT_DEP DEPFILE ${PROJECT_BINARY_DIR}/${linker_cmd_file_name}.dep) |
| 669 | else() |
| 670 | # TODO: How would the linker script dependencies work for non-linker |
| 671 | # script generators. |
| 672 | message(STATUS "Warning; this generator is not well supported. The |
| 673 | Linker script may not be regenerated when it should.") |
| 674 | set(LINKER_SCRIPT_DEP "") |
| 675 | endif() |
| 676 | |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 677 | set(${output_variable} |
| 678 | OUTPUT ${linker_cmd_file_name} |
| 679 | DEPENDS ${LINKER_SCRIPT} |
| 680 | ${LINKER_SCRIPT_DEP} |
| 681 | COMMAND ${CMAKE_C_COMPILER} |
| 682 | -x assembler-with-cpp |
| 683 | ${NOSTDINC_F} |
| 684 | -undef |
| 685 | -MD -MF ${linker_cmd_file_name}.dep -MT ${BASE_NAME}/${linker_cmd_file_name} |
| 686 | ${ZEPHYR_INCLUDES} |
| 687 | ${LINKER_SCRIPT_DEFINES} |
| 688 | ${LINKER_PASS_DEFINE} |
Sebastian Bøe | 8062a88 | 2018-01-03 16:02:49 +0100 | [diff] [blame] | 689 | -E ${LINKER_SCRIPT} |
| 690 | -P # Prevent generation of debug `#line' directives. |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 691 | -o ${linker_cmd_file_name} |
| 692 | VERBATIM |
| 693 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR} |
| 694 | |
| 695 | PARENT_SCOPE |
| 696 | ) |
| 697 | endfunction() |
| 698 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 699 | get_filename_component(BASE_NAME ${CMAKE_CURRENT_BINARY_DIR} NAME) |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 700 | construct_add_custom_command_for_linker_pass(linker custom_command) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 701 | add_custom_command( |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 702 | ${custom_command} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 703 | ) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 704 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 705 | add_custom_target( |
| 706 | linker_script |
| 707 | DEPENDS |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 708 | ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} |
Adithya Baglody | c69fb0d | 2018-08-04 19:48:52 +0530 | [diff] [blame] | 709 | ${APP_SMEM_DEP} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 710 | linker.cmd |
| 711 | offsets_h |
Sebastian Bøe | b1ab501 | 2017-12-14 13:03:23 +0100 | [diff] [blame] | 712 | ) |
| 713 | |
| 714 | # Give the 'linker_script' target all of the include directories so |
| 715 | # that cmake can successfully find the linker_script's header |
| 716 | # dependencies. |
| 717 | zephyr_get_include_directories_for_lang(C |
| 718 | ZEPHYR_INCLUDE_DIRS |
| 719 | STRIP_PREFIX # Don't use a -I prefix |
| 720 | ) |
| 721 | set_property(TARGET |
| 722 | linker_script |
| 723 | PROPERTY INCLUDE_DIRECTORIES |
| 724 | ${ZEPHYR_INCLUDE_DIRS} |
| 725 | ) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 726 | |
| 727 | set(zephyr_lnk |
| 728 | ${LINKERFLAGPREFIX},-Map=${PROJECT_BINARY_DIR}/${KERNEL_MAP_NAME} |
| 729 | -u_OffsetAbsSyms |
| 730 | -u_ConfigAbsSyms |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 731 | ${LINKERFLAGPREFIX},--whole-archive |
| 732 | ${ZEPHYR_LIBS_PROPERTY} |
| 733 | ${LINKERFLAGPREFIX},--no-whole-archive |
| 734 | kernel |
| 735 | ${OFFSETS_O_PATH} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 736 | ${LIB_INCLUDE_DIR} |
| 737 | -L${PROJECT_BINARY_DIR} |
| 738 | ${TOOLCHAIN_LIBS} |
| 739 | ) |
| 740 | |
| 741 | if(CONFIG_GEN_ISR_TABLES) |
Rajavardhan Gundi | 08172cd | 2017-12-12 23:29:37 +0530 | [diff] [blame] | 742 | if(CONFIG_GEN_SW_ISR_TABLE) |
| 743 | list(APPEND GEN_ISR_TABLE_EXTRA_ARG --sw-isr-table) |
| 744 | endif() |
| 745 | |
| 746 | if(CONFIG_GEN_IRQ_VECTOR_TABLE) |
| 747 | list(APPEND GEN_ISR_TABLE_EXTRA_ARG --vector-table) |
| 748 | endif() |
| 749 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 750 | # isr_tables.c is generated from zephyr_prebuilt by |
| 751 | # gen_isr_tables.py |
| 752 | add_custom_command( |
| 753 | OUTPUT isr_tables.c |
| 754 | COMMAND ${CMAKE_OBJCOPY} |
| 755 | -I ${OUTPUT_FORMAT} |
| 756 | -O binary |
| 757 | --only-section=.intList |
| 758 | $<TARGET_FILE:zephyr_prebuilt> |
| 759 | isrList.bin |
| 760 | COMMAND ${PYTHON_EXECUTABLE} |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 761 | ${ZEPHYR_BASE}/arch/common/gen_isr_tables.py |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 762 | --output-source isr_tables.c |
Rajavardhan Gundi | 1e6adba | 2017-12-24 15:18:57 +0530 | [diff] [blame] | 763 | --kernel $<TARGET_FILE:zephyr_prebuilt> |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 764 | --intlist isrList.bin |
Sebastian Bøe | a55279a | 2018-01-04 14:08:39 +0100 | [diff] [blame] | 765 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--debug> |
Rajavardhan Gundi | 08172cd | 2017-12-12 23:29:37 +0530 | [diff] [blame] | 766 | ${GEN_ISR_TABLE_EXTRA_ARG} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 767 | DEPENDS zephyr_prebuilt |
| 768 | ) |
| 769 | set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_SOURCE_FILES isr_tables.c) |
| 770 | endif() |
| 771 | |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 772 | if(CONFIG_ARM AND CONFIG_USERSPACE) |
| 773 | set(GEN_PRIV_STACKS $ENV{ZEPHYR_BASE}/scripts/gen_priv_stacks.py) |
| 774 | set(PROCESS_PRIV_STACKS_GPERF $ENV{ZEPHYR_BASE}/scripts/process_gperf.py) |
| 775 | |
| 776 | set(PRIV_STACKS priv_stacks_hash.gperf) |
| 777 | set(PRIV_STACKS_OUTPUT_SRC_PRE priv_stacks_hash_preprocessed.c) |
| 778 | set(PRIV_STACKS_OUTPUT_SRC priv_stacks_hash.c) |
| 779 | set(PRIV_STACKS_OUTPUT_OBJ priv_stacks_hash.c.obj) |
| 780 | set(PRIV_STACKS_OUTPUT_OBJ_RENAMED priv_stacks_hash_renamed.o) |
| 781 | |
| 782 | # Essentially what we are doing here is extracting some information |
| 783 | # out of the nearly finished elf file, generating the source code |
| 784 | # for a hash table based on that information, and then compiling and |
| 785 | # linking the hash table back into a now even more nearly finished |
| 786 | # elf file. |
| 787 | |
| 788 | # Use the script GEN_PRIV_STACKS to scan the kernel binary's |
| 789 | # (zephyr_prebuilt) DWARF information to produce a table of kernel |
| 790 | # objects (PRIV_STACKS) which we will then pass to gperf |
| 791 | add_custom_command( |
| 792 | OUTPUT ${PRIV_STACKS} |
| 793 | COMMAND |
| 794 | ${PYTHON_EXECUTABLE} |
| 795 | ${GEN_PRIV_STACKS} |
| 796 | --kernel $<TARGET_FILE:priv_stacks_prebuilt> |
| 797 | --output ${PRIV_STACKS} |
| 798 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
| 799 | DEPENDS priv_stacks_prebuilt |
| 800 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 801 | ) |
| 802 | add_custom_target(priv_stacks DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS}) |
| 803 | |
| 804 | # Use gperf to generate C code (PRIV_STACKS_OUTPUT_SRC_PRE) which implements a |
| 805 | # perfect hashtable based on PRIV_STACKS |
| 806 | add_custom_command( |
| 807 | OUTPUT ${PRIV_STACKS_OUTPUT_SRC_PRE} |
| 808 | COMMAND |
| 809 | ${GPERF} -C |
| 810 | --output-file ${PRIV_STACKS_OUTPUT_SRC_PRE} |
| 811 | ${PRIV_STACKS} |
Andy Gross | 878f39c | 2018-05-01 01:10:26 -0500 | [diff] [blame] | 812 | DEPENDS priv_stacks ${PRIV_STACKS} |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 813 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 814 | ) |
| 815 | add_custom_target(priv_stacks_output_src_pre DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_SRC_PRE}) |
| 816 | |
| 817 | # For our purposes the code/data generated by gperf is not optimal. |
| 818 | # |
| 819 | # The script PROCESS_GPERF creates a new c file OUTPUT_SRC based on |
| 820 | # OUTPUT_SRC_PRE to greatly reduce the amount of code/data generated |
| 821 | # since we know we are always working with pointer values |
| 822 | add_custom_command( |
| 823 | OUTPUT ${PRIV_STACKS_OUTPUT_SRC} |
| 824 | COMMAND |
Sebastian Bøe | 1b60070 | 2018-06-21 14:34:42 +0200 | [diff] [blame] | 825 | ${PYTHON_EXECUTABLE} |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 826 | ${PROCESS_PRIV_STACKS_GPERF} |
| 827 | -i ${PRIV_STACKS_OUTPUT_SRC_PRE} |
| 828 | -o ${PRIV_STACKS_OUTPUT_SRC} |
| 829 | -p "struct _k_priv_stack_map" |
| 830 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
Andy Gross | 878f39c | 2018-05-01 01:10:26 -0500 | [diff] [blame] | 831 | DEPENDS priv_stacks_output_src_pre ${PRIV_STACKS_OUTPUT_SRC_PRE} |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 832 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 833 | ) |
| 834 | add_custom_target(priv_stacks_output_src DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_SRC}) |
| 835 | |
| 836 | # We need precise control of where generated text/data ends up in the final |
| 837 | # kernel image. Disable function/data sections and use objcopy to move |
| 838 | # generated data into special section names |
| 839 | add_library(priv_stacks_output_lib STATIC |
| 840 | ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_SRC} |
| 841 | ) |
| 842 | |
| 843 | target_link_libraries(priv_stacks_output_lib zephyr_interface) |
| 844 | |
| 845 | # Turn off -ffunction-sections, etc. |
| 846 | # NB: Using a library instead of target_compile_options(priv_stacks_output_lib |
| 847 | # [...]) because a library's options have precedence |
| 848 | add_library(priv_stacks_output_lib_interface INTERFACE) |
| 849 | target_compile_options(priv_stacks_output_lib_interface INTERFACE |
| 850 | -fno-function-sections |
| 851 | -fno-data-sections |
| 852 | ) |
| 853 | target_link_libraries(priv_stacks_output_lib priv_stacks_output_lib_interface) |
| 854 | |
| 855 | set(PRIV_STACKS_OUTPUT_OBJ_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/priv_stacks_output_lib.dir/${PRIV_STACKS_OUTPUT_OBJ}) |
| 856 | |
| 857 | add_custom_command( |
| 858 | OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_OBJ_RENAMED} |
| 859 | COMMAND |
| 860 | ${CMAKE_OBJCOPY} |
| 861 | --rename-section .bss=.priv_stacks.noinit |
| 862 | --rename-section .data=.priv_stacks.data |
| 863 | --rename-section .text=.priv_stacks.text |
| 864 | --rename-section .rodata=.priv_stacks.rodata |
| 865 | ${PRIV_STACKS_OUTPUT_OBJ_PATH} |
| 866 | ${PRIV_STACKS_OUTPUT_OBJ_RENAMED} |
| 867 | DEPENDS priv_stacks_output_lib |
| 868 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 869 | ) |
| 870 | add_custom_target(priv_stacks_output_obj_renamed DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_OBJ_RENAMED}) |
| 871 | |
| 872 | add_library(priv_stacks_output_obj_renamed_lib STATIC IMPORTED GLOBAL) |
| 873 | set_property( |
| 874 | TARGET priv_stacks_output_obj_renamed_lib |
| 875 | PROPERTY |
| 876 | IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_OBJ_RENAMED} |
| 877 | ) |
| 878 | add_dependencies( |
| 879 | priv_stacks_output_obj_renamed_lib |
| 880 | priv_stacks_output_obj_renamed |
| 881 | ) |
| 882 | |
| 883 | set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_OBJECT_FILES priv_stacks_output_obj_renamed_lib) |
| 884 | endif() |
| 885 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 886 | if(CONFIG_USERSPACE) |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 887 | set(GEN_KOBJ_LIST ${ZEPHYR_BASE}/scripts/gen_kobject_list.py) |
| 888 | set(PROCESS_GPERF ${ZEPHYR_BASE}/scripts/process_gperf.py) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 889 | |
| 890 | set(OBJ_LIST kobject_hash.gperf) |
| 891 | set(OUTPUT_SRC_PRE kobject_hash_preprocessed.c) |
| 892 | set(OUTPUT_SRC kobject_hash.c) |
| 893 | set(OUTPUT_OBJ kobject_hash.c.obj) |
| 894 | set(OUTPUT_OBJ_RENAMED kobject_hash_renamed.o) |
| 895 | |
| 896 | # Essentially what we are doing here is extracting some information |
| 897 | # out of the nearly finished elf file, generating the source code |
| 898 | # for a hash table based on that information, and then compiling and |
| 899 | # linking the hash table back into a now even more nearly finished |
| 900 | # elf file. |
| 901 | |
| 902 | # Use the script GEN_KOBJ_LIST to scan the kernel binary's |
| 903 | # (zephyr_prebuilt) DWARF information to produce a table of kernel |
| 904 | # objects (OBJ_LIST) which we will then pass to gperf |
| 905 | add_custom_command( |
| 906 | OUTPUT ${OBJ_LIST} |
| 907 | COMMAND |
| 908 | ${PYTHON_EXECUTABLE} |
| 909 | ${GEN_KOBJ_LIST} |
| 910 | --kernel $<TARGET_FILE:zephyr_prebuilt> |
Leandro Pereira | c200367 | 2018-04-04 13:50:32 -0700 | [diff] [blame] | 911 | --gperf-output ${OBJ_LIST} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 912 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
| 913 | DEPENDS zephyr_prebuilt |
| 914 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 915 | ) |
| 916 | add_custom_target(obj_list DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OBJ_LIST}) |
| 917 | |
| 918 | # Use gperf to generate C code (OUTPUT_SRC_PRE) which implements a |
| 919 | # perfect hashtable based on OBJ_LIST |
| 920 | add_custom_command( |
| 921 | OUTPUT ${OUTPUT_SRC_PRE} |
| 922 | COMMAND |
| 923 | ${GPERF} |
| 924 | --output-file ${OUTPUT_SRC_PRE} |
| 925 | ${OBJ_LIST} |
Sebastian Bøe | f5758b5 | 2018-01-31 10:42:46 +0100 | [diff] [blame] | 926 | DEPENDS obj_list ${OBJ_LIST} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 927 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 928 | ) |
| 929 | add_custom_target(output_src_pre DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_SRC_PRE}) |
| 930 | |
| 931 | # For our purposes the code/data generated by gperf is not optimal. |
| 932 | # |
| 933 | # The script PROCESS_GPERF creates a new c file OUTPUT_SRC based on |
| 934 | # OUTPUT_SRC_PRE to greatly reduce the amount of code/data generated |
| 935 | # since we know we are always working with pointer values |
| 936 | add_custom_command( |
| 937 | OUTPUT ${OUTPUT_SRC} |
| 938 | COMMAND |
Sebastian Bøe | 1b60070 | 2018-06-21 14:34:42 +0200 | [diff] [blame] | 939 | ${PYTHON_EXECUTABLE} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 940 | ${PROCESS_GPERF} |
| 941 | -i ${OUTPUT_SRC_PRE} |
| 942 | -o ${OUTPUT_SRC} |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 943 | -p "struct _k_object" |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 944 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
Sebastian Bøe | f5758b5 | 2018-01-31 10:42:46 +0100 | [diff] [blame] | 945 | DEPENDS output_src_pre ${OUTPUT_SRC_PRE} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 946 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 947 | ) |
| 948 | add_custom_target(output_src DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_SRC}) |
| 949 | |
| 950 | # We need precise control of where generated text/data ends up in the final |
| 951 | # kernel image. Disable function/data sections and use objcopy to move |
| 952 | # generated data into special section names |
| 953 | add_library(output_lib STATIC |
| 954 | ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_SRC} |
| 955 | ) |
| 956 | |
Adithya Baglody | ce9a5a2 | 2018-01-29 15:58:51 +0530 | [diff] [blame] | 957 | # always compile kobject_hash.c at optimization -Os |
| 958 | set_source_files_properties(${OUTPUT_SRC} PROPERTIES COMPILE_FLAGS -Os) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 959 | target_link_libraries(output_lib zephyr_interface) |
| 960 | |
| 961 | # Turn off -ffunction-sections, etc. |
| 962 | # NB: Using a library instead of target_compile_options(output_lib |
| 963 | # [...]) because a library's options have precedence |
| 964 | add_library(output_lib_interface INTERFACE) |
| 965 | target_compile_options(output_lib_interface INTERFACE |
| 966 | -fno-function-sections |
| 967 | -fno-data-sections |
| 968 | ) |
| 969 | target_link_libraries(output_lib output_lib_interface) |
| 970 | |
| 971 | set(OUTPUT_OBJ_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/output_lib.dir/${OUTPUT_OBJ}) |
| 972 | |
| 973 | add_custom_command( |
| 974 | OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_OBJ_RENAMED} |
| 975 | COMMAND |
| 976 | ${CMAKE_OBJCOPY} |
| 977 | --rename-section .data=.kobject_data.data |
| 978 | --rename-section .text=.kobject_data.text |
| 979 | --rename-section .rodata=.kobject_data.rodata |
| 980 | ${OUTPUT_OBJ_PATH} |
| 981 | ${OUTPUT_OBJ_RENAMED} |
| 982 | DEPENDS output_lib |
| 983 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 984 | ) |
| 985 | add_custom_target(output_obj_renamed DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_OBJ_RENAMED}) |
| 986 | |
| 987 | add_library(output_obj_renamed_lib STATIC IMPORTED GLOBAL) |
| 988 | set_property( |
| 989 | TARGET output_obj_renamed_lib |
| 990 | PROPERTY |
| 991 | IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_OBJ_RENAMED} |
| 992 | ) |
| 993 | add_dependencies( |
| 994 | output_obj_renamed_lib |
| 995 | output_obj_renamed |
| 996 | ) |
| 997 | |
| 998 | set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_OBJECT_FILES output_obj_renamed_lib) |
| 999 | endif() |
| 1000 | |
| 1001 | # Read global variables into local variables |
| 1002 | get_property(GKOF GLOBAL PROPERTY GENERATED_KERNEL_OBJECT_FILES) |
| 1003 | get_property(GKSF GLOBAL PROPERTY GENERATED_KERNEL_SOURCE_FILES) |
| 1004 | |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 1005 | get_property(TOPT GLOBAL PROPERTY TOPT) |
| 1006 | set_ifndef( TOPT -T) |
| 1007 | |
Alberto Escolar Piedras | c288241 | 2018-07-05 10:51:03 +0200 | [diff] [blame] | 1008 | get_property(CSTD GLOBAL PROPERTY CSTD) |
| 1009 | set_ifndef(CSTD c99) |
| 1010 | |
| 1011 | zephyr_compile_options( |
| 1012 | $<$<COMPILE_LANGUAGE:C>:-std=${CSTD}> |
| 1013 | ) |
| 1014 | |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1015 | configure_file( |
| 1016 | $ENV{ZEPHYR_BASE}/include/arch/arm/cortex_m/scripts/app_data_alignment.ld |
| 1017 | ${PROJECT_BINARY_DIR}/include/generated/app_data_alignment.ld) |
| 1018 | |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame] | 1019 | configure_file( |
| 1020 | $ENV{ZEPHYR_BASE}/include/arch/arm/cortex_m/scripts/app_smem.ld |
| 1021 | ${PROJECT_BINARY_DIR}/include/generated/app_smem.ld) |
| 1022 | |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1023 | if(CONFIG_CPU_HAS_MPU AND CONFIG_USERSPACE) |
| 1024 | |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame] | 1025 | if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APP_SHARED_MEM) |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame] | 1026 | set(APP_SMEM_LD "${PROJECT_BINARY_DIR}/include/generated/app_smem.ld") |
| 1027 | set(OBJ_FILE_DIR "${PROJECT_BINARY_DIR}/../") |
| 1028 | |
| 1029 | add_custom_target( |
| 1030 | ${APP_SMEM_DEP} ALL |
Adithya Baglody | c69fb0d | 2018-08-04 19:48:52 +0530 | [diff] [blame] | 1031 | DEPENDS app |
Adithya Baglody | c764e02 | 2018-09-19 11:28:27 +0530 | [diff] [blame^] | 1032 | kernel |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame] | 1033 | ) |
| 1034 | |
| 1035 | add_custom_command( |
| 1036 | TARGET ${APP_SMEM_DEP} |
Adithya Baglody | c69fb0d | 2018-08-04 19:48:52 +0530 | [diff] [blame] | 1037 | COMMAND ${PYTHON_EXECUTABLE} |
| 1038 | ${ZEPHYR_BASE}/scripts/gen_app_partitions.py |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame] | 1039 | -d ${OBJ_FILE_DIR} |
| 1040 | -o ${APP_SMEM_LD} |
Adithya Baglody | c69fb0d | 2018-08-04 19:48:52 +0530 | [diff] [blame] | 1041 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame] | 1042 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/ |
| 1043 | COMMENT "Generating power of 2 aligned app_smem linker section" |
| 1044 | ) |
| 1045 | endif() |
| 1046 | |
| 1047 | |
Andy Gross | e1fc5c2 | 2018-02-15 08:07:17 -0600 | [diff] [blame] | 1048 | if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APPLICATION_MEMORY) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1049 | |
| 1050 | construct_add_custom_command_for_linker_pass(linker_app_sizing custom_command) |
| 1051 | add_custom_command( |
| 1052 | ${custom_command} |
| 1053 | ) |
| 1054 | |
| 1055 | add_custom_target( |
| 1056 | linker_app_sizing_script |
| 1057 | DEPENDS |
| 1058 | linker_app_sizing.cmd |
| 1059 | offsets_h |
Adithya Baglody | c764e02 | 2018-09-19 11:28:27 +0530 | [diff] [blame^] | 1060 | ${APP_SMEM_DEP} |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1061 | ) |
| 1062 | |
| 1063 | set_property(TARGET |
| 1064 | linker_app_sizing_script |
| 1065 | PROPERTY INCLUDE_DIRECTORIES |
| 1066 | ${ZEPHYR_INCLUDE_DIRS} |
| 1067 | ) |
| 1068 | |
| 1069 | # For systems with MPUs, the size of the application data section must |
| 1070 | # be determined so that MPU alignment requirements can be met. |
| 1071 | # Create a app_sizing_prebuilt target so we can do this before the |
| 1072 | # other ELF files are built |
| 1073 | set(GEN_APP_ALIGN $ENV{ZEPHYR_BASE}/scripts/gen_alignment_script.py) |
| 1074 | add_executable( app_sizing_prebuilt misc/empty_file.c) |
| 1075 | target_link_libraries(app_sizing_prebuilt ${TOPT} ${PROJECT_BINARY_DIR}/linker_app_sizing.cmd ${zephyr_lnk}) |
| 1076 | set_property(TARGET app_sizing_prebuilt PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_app_sizing.cmd) |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame] | 1077 | add_dependencies( app_sizing_prebuilt linker_app_sizing_script offsets ) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1078 | |
| 1079 | add_custom_command( |
| 1080 | TARGET app_sizing_prebuilt |
| 1081 | POST_BUILD |
| 1082 | COMMAND ${PYTHON_EXECUTABLE} ${GEN_APP_ALIGN} |
| 1083 | --output ./include/generated/app_data_alignment.ld |
| 1084 | --kernel $<TARGET_FILE:app_sizing_prebuilt> |
| 1085 | VERBATIM |
| 1086 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/ |
| 1087 | ) |
| 1088 | endif() |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1089 | |
Wayne Ren | 5a0ba2f | 2018-02-12 19:17:04 +0800 | [diff] [blame] | 1090 | if(CONFIG_ARM) |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1091 | construct_add_custom_command_for_linker_pass(linker_priv_stacks custom_command) |
| 1092 | add_custom_command( |
| 1093 | ${custom_command} |
| 1094 | ) |
| 1095 | |
| 1096 | add_custom_target( |
| 1097 | linker_priv_stacks_script |
| 1098 | DEPENDS |
Adithya Baglody | d4b5ab6 | 2018-09-18 11:52:52 +0530 | [diff] [blame] | 1099 | ${ALIGN_SIZING_DEP} ${APP_SMEM_DEP} |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1100 | linker_priv_stacks.cmd |
| 1101 | offsets_h |
| 1102 | ) |
| 1103 | |
| 1104 | set_property(TARGET |
| 1105 | linker_priv_stacks_script |
| 1106 | PROPERTY INCLUDE_DIRECTORIES |
| 1107 | ${ZEPHYR_INCLUDE_DIRS} |
| 1108 | ) |
| 1109 | |
| 1110 | set(PRIV_STACK_LIB priv_stacks_output_obj_renamed_lib) |
| 1111 | add_executable( priv_stacks_prebuilt misc/empty_file.c) |
| 1112 | target_link_libraries(priv_stacks_prebuilt ${TOPT} ${PROJECT_BINARY_DIR}/linker_priv_stacks.cmd ${zephyr_lnk}) |
| 1113 | set_property(TARGET priv_stacks_prebuilt PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_priv_stacks.cmd) |
| 1114 | add_dependencies( priv_stacks_prebuilt ${ALIGN_SIZING_DEP} linker_priv_stacks_script offsets) |
Wayne Ren | 5a0ba2f | 2018-02-12 19:17:04 +0800 | [diff] [blame] | 1115 | endif() |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1116 | |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1117 | endif() |
| 1118 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1119 | # FIXME: Is there any way to get rid of empty_file.c? |
| 1120 | add_executable( zephyr_prebuilt misc/empty_file.c) |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1121 | target_link_libraries(zephyr_prebuilt ${TOPT} ${PROJECT_BINARY_DIR}/linker.cmd ${PRIV_STACK_LIB} ${zephyr_lnk}) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1122 | set_property(TARGET zephyr_prebuilt PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker.cmd) |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1123 | add_dependencies( zephyr_prebuilt ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} linker_script offsets) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1124 | |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 1125 | |
| 1126 | if(NOT CONFIG_NATIVE_APPLICATION) |
| 1127 | set(NOSTDINC_F -nostdinc) |
| 1128 | endif() |
| 1129 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1130 | if(GKOF OR GKSF) |
| 1131 | set(logical_target_for_zephyr_elf kernel_elf) |
| 1132 | |
| 1133 | # The second linker pass uses the same source linker script of the |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 1134 | # first pass (LINKER_SCRIPT), but this time with a different output |
| 1135 | # file and preprocessed with the define LINKER_PASS2. |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1136 | construct_add_custom_command_for_linker_pass(linker_pass_final custom_command) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1137 | add_custom_command( |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 1138 | ${custom_command} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1139 | ) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1140 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1141 | add_custom_target( |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1142 | linker_pass_final_script |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1143 | DEPENDS |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1144 | ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1145 | zephyr_prebuilt |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1146 | linker_pass_final.cmd |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1147 | offsets_h |
| 1148 | ) |
Sebastian Bøe | b1ab501 | 2017-12-14 13:03:23 +0100 | [diff] [blame] | 1149 | set_property(TARGET |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1150 | linker_pass_final_script |
Sebastian Bøe | b1ab501 | 2017-12-14 13:03:23 +0100 | [diff] [blame] | 1151 | PROPERTY INCLUDE_DIRECTORIES |
| 1152 | ${ZEPHYR_INCLUDE_DIRS} |
| 1153 | ) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1154 | |
| 1155 | add_executable( kernel_elf misc/empty_file.c ${GKSF}) |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1156 | target_link_libraries(kernel_elf ${GKOF} ${TOPT} ${PROJECT_BINARY_DIR}/linker_pass_final.cmd ${zephyr_lnk}) |
| 1157 | set_property(TARGET kernel_elf PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_pass_final.cmd) |
Adithya Baglody | c69fb0d | 2018-08-04 19:48:52 +0530 | [diff] [blame] | 1158 | add_dependencies( kernel_elf ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} linker_pass_final_script) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1159 | else() |
| 1160 | set(logical_target_for_zephyr_elf zephyr_prebuilt) |
| 1161 | # Use the prebuilt elf as the final elf since we don't have a |
| 1162 | # generation stage. |
| 1163 | endif() |
| 1164 | |
| 1165 | # To avoid having the same logical target name for the zephyr lib and |
| 1166 | # the zephyr elf, we set the kernel_elf file name to zephyr.elf. |
| 1167 | set_target_properties(${logical_target_for_zephyr_elf} PROPERTIES OUTPUT_NAME ${KERNEL_NAME}) |
| 1168 | |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1169 | set(post_build_commands "") |
| 1170 | |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1171 | list_append_ifdef(CONFIG_CHECK_LINK_MAP |
| 1172 | post_build_commands |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 1173 | COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/check_link_map.py ${KERNEL_MAP_NAME} |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1174 | ) |
| 1175 | |
| 1176 | list_append_ifdef( |
| 1177 | CONFIG_BUILD_OUTPUT_HEX |
| 1178 | post_build_commands |
Walter Xie | 6b836d6 | 2018-07-10 11:39:52 +0800 | [diff] [blame] | 1179 | COMMAND ${CMAKE_OBJCOPY} -S -Oihex --gap-fill 0xFF -R .comment -R COMMON -R .eh_frame ${KERNEL_ELF_NAME} ${KERNEL_HEX_NAME} |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1180 | ) |
| 1181 | |
| 1182 | list_append_ifdef( |
| 1183 | CONFIG_BUILD_OUTPUT_BIN |
| 1184 | post_build_commands |
Walter Xie | 6b836d6 | 2018-07-10 11:39:52 +0800 | [diff] [blame] | 1185 | COMMAND ${CMAKE_OBJCOPY} -S -Obinary --gap-fill 0xFF -R .comment -R COMMON -R .eh_frame ${KERNEL_ELF_NAME} ${KERNEL_BIN_NAME} |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1186 | ) |
Anas Nashif | 4592ff2 | 2017-11-23 07:54:26 -0500 | [diff] [blame] | 1187 | |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1188 | list_append_ifdef( |
| 1189 | CONFIG_BUILD_OUTPUT_S19 |
| 1190 | post_build_commands |
Walter Xie | 6b836d6 | 2018-07-10 11:39:52 +0800 | [diff] [blame] | 1191 | COMMAND ${CMAKE_OBJCOPY} --gap-fill 0xFF --srec-len 1 --output-target=srec ${KERNEL_ELF_NAME} ${KERNEL_S19_NAME} |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1192 | ) |
| 1193 | |
| 1194 | list_append_ifdef( |
Anas Nashif | 1f1143a | 2017-11-22 13:03:53 -0500 | [diff] [blame] | 1195 | CONFIG_OUTPUT_DISASSEMBLY |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1196 | post_build_commands |
| 1197 | COMMAND ${CMAKE_OBJDUMP} -S ${KERNEL_ELF_NAME} > ${KERNEL_LST_NAME} |
| 1198 | ) |
| 1199 | |
| 1200 | list_append_ifdef( |
Anas Nashif | 1f1143a | 2017-11-22 13:03:53 -0500 | [diff] [blame] | 1201 | CONFIG_OUTPUT_STAT |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1202 | post_build_commands |
| 1203 | COMMAND ${CMAKE_READELF} -e ${KERNEL_ELF_NAME} > ${KERNEL_STAT_NAME} |
| 1204 | ) |
| 1205 | |
| 1206 | list_append_ifdef( |
| 1207 | CONFIG_BUILD_OUTPUT_STRIPPED |
| 1208 | post_build_commands |
| 1209 | COMMAND ${CMAKE_STRIP} --strip-all ${KERNEL_ELF_NAME} -o ${KERNEL_STRIP_NAME} |
| 1210 | ) |
| 1211 | |
Anas Nashif | 4592ff2 | 2017-11-23 07:54:26 -0500 | [diff] [blame] | 1212 | list_append_ifdef( |
| 1213 | CONFIG_BUILD_OUTPUT_EXE |
| 1214 | post_build_commands |
| 1215 | COMMAND ${CMAKE_COMMAND} -E rename ${KERNEL_ELF_NAME} ${KERNEL_EXE_NAME} |
| 1216 | ) |
| 1217 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1218 | add_custom_command( |
| 1219 | TARGET ${logical_target_for_zephyr_elf} |
| 1220 | POST_BUILD |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1221 | ${post_build_commands} |
| 1222 | COMMENT "Generating files from zephyr.elf for board: ${BOARD}" |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1223 | # NB: COMMENT only works for some CMake-Generators |
| 1224 | ) |
| 1225 | |
Sebastian Bøe | dbdd722 | 2017-12-19 13:20:10 +0100 | [diff] [blame] | 1226 | if(CONFIG_OUTPUT_PRINT_MEMORY_USAGE) |
| 1227 | # Use --print-memory-usage with the first link. |
| 1228 | # |
| 1229 | # Don't use this option with the second link because seeing it twice |
| 1230 | # could confuse users and using it on the second link would suppress |
| 1231 | # it when the first link has a ram/flash-usage issue. |
| 1232 | set(option ${LINKERFLAGPREFIX},--print-memory-usage) |
| 1233 | string(MAKE_C_IDENTIFIER check${option} check) |
Sebastian Bøe | ba0b283 | 2017-12-21 10:16:43 +0100 | [diff] [blame] | 1234 | |
Sebastian Bøe | c34b7a3 | 2017-12-27 15:21:54 +0100 | [diff] [blame] | 1235 | set(SAVED_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
Sebastian Bøe | ba0b283 | 2017-12-21 10:16:43 +0100 | [diff] [blame] | 1236 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${option}") |
Sebastian Bøe | 71b849f | 2018-04-17 15:08:58 +0200 | [diff] [blame] | 1237 | zephyr_check_compiler_flag(C "" ${check}) |
Sebastian Bøe | c34b7a3 | 2017-12-27 15:21:54 +0100 | [diff] [blame] | 1238 | set(CMAKE_REQUIRED_FLAGS ${SAVED_CMAKE_REQUIRED_FLAGS}) |
Sebastian Bøe | ba0b283 | 2017-12-21 10:16:43 +0100 | [diff] [blame] | 1239 | |
Sebastian Bøe | dbdd722 | 2017-12-19 13:20:10 +0100 | [diff] [blame] | 1240 | target_link_libraries_ifdef(${check} zephyr_prebuilt ${option}) |
| 1241 | endif() |
| 1242 | |
Anas Nashif | c15d3c9 | 2017-11-21 18:54:55 -0500 | [diff] [blame] | 1243 | if(EMU_PLATFORM) |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 1244 | include(${ZEPHYR_BASE}/cmake/emu/${EMU_PLATFORM}.cmake) |
Anas Nashif | fd276ae | 2017-12-21 16:45:45 -0500 | [diff] [blame] | 1245 | else() |
| 1246 | add_custom_target(run |
| 1247 | COMMAND |
| 1248 | ${CMAKE_COMMAND} -E echo |
| 1249 | "===================================================" |
| 1250 | "Emulation/Simulation not supported with this board." |
| 1251 | "===================================================" |
| 1252 | ) |
Anas Nashif | c15d3c9 | 2017-11-21 18:54:55 -0500 | [diff] [blame] | 1253 | endif() |
| 1254 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1255 | add_subdirectory(cmake/flash) |
| 1256 | |
| 1257 | add_subdirectory(cmake/usage) |
| 1258 | add_subdirectory(cmake/reports) |
| 1259 | |
Andrew Boie | 411686f | 2018-05-24 13:18:36 -0700 | [diff] [blame] | 1260 | if(CONFIG_ASSERT AND (NOT CONFIG_FORCE_NO_ASSERT)) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1261 | message(WARNING " |
| 1262 | ------------------------------------------------------------ |
| 1263 | --- WARNING: __ASSERT() statements are globally ENABLED --- |
Ioannis Glaropoulos | f90416c | 2018-05-31 11:05:12 +0200 | [diff] [blame] | 1264 | --- The kernel will run more slowly and use more memory --- |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1265 | ------------------------------------------------------------" |
| 1266 | ) |
| 1267 | endif() |
| 1268 | |
| 1269 | if(CONFIG_BOARD_DEPRECATED) |
| 1270 | message(WARNING " |
| 1271 | WARNING: The board '${BOARD}' is deprecated and will be |
| 1272 | removed in version ${CONFIG_BOARD_DEPRECATED}" |
| 1273 | ) |
| 1274 | endif() |
Andrew Boie | df48e11 | 2018-01-12 09:54:24 -0800 | [diff] [blame] | 1275 | |
| 1276 | if(CONFIG_X86 AND CONFIG_USERSPACE AND NOT CONFIG_X86_NO_MELTDOWN) |
| 1277 | message(WARNING " |
| 1278 | WARNING: You have enabled CONFIG_USERSPACE on an x86-based target. |
| 1279 | If your CPU is vulnerable to the Meltdown CPU bug, security of |
| 1280 | supervisor-only memory pages is not guaranteed. This version of Zephyr |
| 1281 | does not contain a fix for this issue." |
| 1282 | ) |
| 1283 | endif() |