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 |
| 53 | arch/${ARCH}/soc/${SOC_PATH} |
| 54 | arch/${ARCH}/soc/${SOC_PATH}/include |
| 55 | arch/${ARCH}/soc/${SOC_FAMILY}/include |
| 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 |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 298 | set(LINKER_SCRIPT ${ZEPHYR_BASE}/arch/${ARCH}/soc/${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) |
| 338 | add_subdirectory(boards) |
| 339 | add_subdirectory(ext) |
| 340 | add_subdirectory(subsys) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 341 | add_subdirectory(drivers) |
| 342 | add_subdirectory(tests) |
| 343 | |
Sebastian Bøe | 2ead15d | 2017-11-29 17:46:37 +0100 | [diff] [blame] | 344 | set(syscall_macros_h ${ZEPHYR_BINARY_DIR}/include/generated/syscall_macros.h) |
| 345 | |
| 346 | add_custom_target(syscall_macros_h_target DEPENDS ${syscall_macros_h}) |
| 347 | add_custom_command( OUTPUT ${syscall_macros_h} |
| 348 | COMMAND |
| 349 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 350 | ${ZEPHYR_BASE}/scripts/gen_syscall_header.py |
Sebastian Bøe | 2ead15d | 2017-11-29 17:46:37 +0100 | [diff] [blame] | 351 | > ${syscall_macros_h} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 352 | DEPENDS ${ZEPHYR_BASE}/scripts/gen_syscall_header.py |
Sebastian Bøe | 2ead15d | 2017-11-29 17:46:37 +0100 | [diff] [blame] | 353 | ) |
| 354 | |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 355 | |
| 356 | set(syscall_list_h ${CMAKE_CURRENT_BINARY_DIR}/include/generated/syscall_list.h) |
| 357 | set(syscalls_json ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls.json) |
| 358 | |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 359 | # The syscalls subdirs txt file is constructed by python containing a list of folders to use for |
| 360 | # dependency handling, including empty folders. |
| 361 | # Windows: The list is used to specify DIRECTORY list with CMAKE_CONFIGURE_DEPENDS attribute. |
| 362 | # Other OS: The list will update whenever a file is added/removed/modified and ensure a re-build. |
| 363 | set(syscalls_subdirs_txt ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_subdirs.txt) |
| 364 | |
| 365 | # As syscalls_subdirs_txt is updated whenever a file is modified, this file can not be used for |
| 366 | # monitoring of added / removed folders. A trigger file is thus used for correct dependency |
| 367 | # handling. The trigger file will update when a folder is added / removed. |
| 368 | set(syscalls_subdirs_trigger ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_subdirs.trigger) |
| 369 | |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 370 | if(NOT (${CMAKE_HOST_SYSTEM_NAME} STREQUAL Windows)) |
| 371 | set(syscalls_links --create-links ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_links) |
| 372 | endif() |
| 373 | |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 374 | # When running CMake it must be ensured that all dependencies are correctly acquired. |
| 375 | execute_process( |
| 376 | COMMAND |
| 377 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 378 | ${ZEPHYR_BASE}/scripts/subfolder_list.py |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 379 | --directory ${ZEPHYR_BASE}/include # Walk this directory |
| 380 | --out-file ${syscalls_subdirs_txt} # Write file with discovered folder |
| 381 | --trigger ${syscalls_subdirs_trigger} # Trigger file that is used for json generation |
| 382 | ${syscalls_links} # If defined, create symlinks for dependencies |
| 383 | ) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 384 | file(STRINGS ${syscalls_subdirs_txt} PARSE_SYSCALLS_PATHS_DEPENDS) |
| 385 | |
| 386 | if(${CMAKE_HOST_SYSTEM_NAME} STREQUAL Windows) |
| 387 | # On windows only adding/removing files or folders will be reflected in depends. |
| 388 | # Hence adding a file requires CMake to re-run to add this file to the file list. |
| 389 | set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${PARSE_SYSCALLS_PATHS_DEPENDS}) |
| 390 | |
| 391 | # Also On Windows each header file must be monitored as file modifications are not reflected |
| 392 | # on directory level. |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 393 | file(GLOB_RECURSE PARSE_SYSCALLS_HEADER_DEPENDS ${ZEPHYR_BASE}/include/*.h) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 394 | else() |
| 395 | # The syscall parsing depends on the folders in order to detect add/removed/modified files. |
| 396 | # When a folder is removed, CMake will try to find a target that creates that dependency. |
| 397 | # This command sets up the target for CMake to find. |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 398 | # Without this code, CMake will fail with the following error: |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 399 | # <folder> needed by '<target>', missing and no known rule to make it |
| 400 | # when a folder is removed. |
| 401 | add_custom_command(OUTPUT ${PARSE_SYSCALLS_PATHS_DEPENDS} |
| 402 | COMMAND ${CMAKE_COMMAND} -E echo "" |
| 403 | COMMENT "Preparing syscall dependency handling" |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 404 | ) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 405 | |
| 406 | add_custom_command( |
| 407 | OUTPUT |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 408 | ${syscalls_subdirs_trigger} |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 409 | COMMAND |
| 410 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 411 | ${ZEPHYR_BASE}/scripts/subfolder_list.py |
| 412 | --directory ${ZEPHYR_BASE}/include # Walk this directory |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 413 | --out-file ${syscalls_subdirs_txt} # Write file with discovered folder |
| 414 | --trigger ${syscalls_subdirs_trigger} # Trigger file that is used for json generation |
| 415 | ${syscalls_links} # If defined, create symlinks for dependencies |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 416 | DEPENDS ${PARSE_SYSCALLS_PATHS_DEPENDS} |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 417 | ) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 418 | |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 419 | # Ensure subdir file always exists when specifying CMake dependency. |
| 420 | if(NOT EXISTS ${syscalls_subdirs_txt}) |
| 421 | file(WRITE ${syscalls_subdirs_txt} "") |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 422 | endif() |
| 423 | |
| 424 | # On other OS'es, modifying a file is reflected on the folder timestamp and hence detected |
| 425 | # when using depend on directory level. |
| 426 | # Thus CMake only needs to re-run when sub-directories are added / removed, which is indicated |
| 427 | # using a trigger file. |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 428 | set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${syscalls_subdirs_txt}) |
Torsten Rasmussen | f38e388 | 2018-06-07 15:50:31 +0200 | [diff] [blame] | 429 | endif() |
| 430 | |
Adithya Baglody | e67720b | 2018-07-02 14:59:19 +0530 | [diff] [blame] | 431 | # SYSCALL_INCLUDE_DIRECTORY will include the directories that needs to be |
| 432 | # searched for syscall declarations if CONFIG_APPLICATION_DEFINED_SYSCALL is set |
| 433 | if(CONFIG_APPLICATION_DEFINED_SYSCALL) |
| 434 | set(SYSCALL_INCLUDE_DIRECTORY --include ${APPLICATION_SOURCE_DIR}) |
| 435 | endif() |
| 436 | |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 437 | add_custom_command( |
| 438 | OUTPUT |
| 439 | ${syscalls_json} |
| 440 | COMMAND |
| 441 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 442 | ${ZEPHYR_BASE}/scripts/parse_syscalls.py |
Adithya Baglody | e67720b | 2018-07-02 14:59:19 +0530 | [diff] [blame] | 443 | --include ${ZEPHYR_BASE}/include # Read files from this dir |
| 444 | ${SYSCALL_INCLUDE_DIRECTORY} |
Torsten Rasmussen | 080e32e | 2018-06-14 22:27:17 +0200 | [diff] [blame] | 445 | --json-file ${syscalls_json} # Write this file |
| 446 | DEPENDS ${syscalls_subdirs_trigger} ${PARSE_SYSCALLS_HEADER_DEPENDS} |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 447 | ) |
| 448 | |
| 449 | add_custom_target(syscall_list_h_target DEPENDS ${syscall_list_h}) |
| 450 | add_custom_command(OUTPUT include/generated/syscall_dispatch.c ${syscall_list_h} |
| 451 | # Also, some files are written to include/generated/syscalls/ |
| 452 | COMMAND |
| 453 | ${PYTHON_EXECUTABLE} |
Alex Tereschenko | 3c1a78e | 2018-06-14 20:21:18 +0200 | [diff] [blame] | 454 | ${ZEPHYR_BASE}/scripts/gen_syscalls.py |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 455 | --json-file ${syscalls_json} # Read this file |
| 456 | --base-output include/generated/syscalls # Write to this dir |
| 457 | --syscall-dispatch include/generated/syscall_dispatch.c # Write this file |
| 458 | > ${syscall_list_h} # Write stdout to this file |
| 459 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 460 | DEPENDS ${syscalls_json} |
| 461 | ) |
| 462 | |
Leandro Pereira | c200367 | 2018-04-04 13:50:32 -0700 | [diff] [blame] | 463 | set(DRV_VALIDATION ${PROJECT_BINARY_DIR}/include/generated/driver-validation.h) |
| 464 | add_custom_command( |
| 465 | OUTPUT ${DRV_VALIDATION} |
| 466 | COMMAND |
| 467 | ${PYTHON_EXECUTABLE} |
| 468 | ${ZEPHYR_BASE}/scripts/gen_kobject_list.py |
| 469 | --validation-output ${DRV_VALIDATION} |
| 470 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
| 471 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 472 | ) |
| 473 | add_custom_target(driver_validation_h_target DEPENDS ${DRV_VALIDATION}) |
| 474 | |
Leandro Pereira | 39dc7d0 | 2018-04-05 13:59:33 -0700 | [diff] [blame] | 475 | include($ENV{ZEPHYR_BASE}/cmake/kobj.cmake) |
| 476 | gen_kobj(KOBJ_INCLUDE_PATH) |
Leandro Pereira | c200367 | 2018-04-04 13:50:32 -0700 | [diff] [blame] | 477 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 478 | # Generate offsets.c.obj from offsets.c |
| 479 | # Generate offsets.h from offsets.c.obj |
| 480 | |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 481 | 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] | 482 | set(OFFSETS_O_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/offsets.dir/arch/${ARCH}/core/offsets/offsets.c.obj) |
| 483 | set(OFFSETS_H_PATH ${PROJECT_BINARY_DIR}/include/generated/offsets.h) |
| 484 | |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 485 | add_library( offsets STATIC ${OFFSETS_C_PATH}) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 486 | target_link_libraries(offsets zephyr_interface) |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 487 | add_dependencies( offsets |
| 488 | syscall_list_h_target |
| 489 | syscall_macros_h_target |
Leandro Pereira | c200367 | 2018-04-04 13:50:32 -0700 | [diff] [blame] | 490 | driver_validation_h_target |
Leandro Pereira | 39dc7d0 | 2018-04-05 13:59:33 -0700 | [diff] [blame] | 491 | kobj_types_h_target |
Sebastian Bøe | 13a6840 | 2017-11-20 13:03:55 +0100 | [diff] [blame] | 492 | ) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 493 | |
| 494 | add_custom_command( |
| 495 | OUTPUT ${OFFSETS_H_PATH} |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 496 | COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/gen_offset_header.py |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 497 | -i ${OFFSETS_O_PATH} |
| 498 | -o ${OFFSETS_H_PATH} |
| 499 | DEPENDS offsets |
| 500 | ) |
| 501 | add_custom_target(offsets_h DEPENDS ${OFFSETS_H_PATH}) |
| 502 | |
| 503 | zephyr_include_directories(${TOOLCHAIN_INCLUDES}) |
| 504 | |
Sebastian Bøe | 89516fb | 2017-12-01 15:25:06 +0100 | [diff] [blame] | 505 | zephyr_get_include_directories_for_lang(C ZEPHYR_INCLUDES) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 506 | |
| 507 | add_subdirectory(kernel) |
| 508 | |
| 509 | # Read list content |
| 510 | get_property(ZEPHYR_LIBS_PROPERTY GLOBAL PROPERTY ZEPHYR_LIBS) |
| 511 | |
| 512 | foreach(zephyr_lib ${ZEPHYR_LIBS_PROPERTY}) |
| 513 | # TODO: Could this become an INTERFACE property of zephyr_interface? |
| 514 | add_dependencies(${zephyr_lib} offsets_h) |
Sebastian Bøe | 4ece94d | 2017-12-05 13:22:19 +0100 | [diff] [blame] | 515 | |
Sebastian Bøe | 64edbaf | 2018-01-09 12:45:19 +0100 | [diff] [blame] | 516 | # Verify that all (non-imported) libraries have source |
| 517 | # files. Libraries without source files are not supported because |
| 518 | # they are an indication that something has been misconfigured. |
| 519 | get_target_property(lib_imported ${zephyr_lib} IMPORTED) |
| 520 | get_target_property(lib_sources ${zephyr_lib} SOURCES) |
Sebastian Bøe | 4ece94d | 2017-12-05 13:22:19 +0100 | [diff] [blame] | 521 | if(lib_sources STREQUAL lib_sources-NOTFOUND |
| 522 | AND (NOT (${zephyr_lib} STREQUAL app)) |
Sebastian Bøe | 64edbaf | 2018-01-09 12:45:19 +0100 | [diff] [blame] | 523 | AND (NOT lib_imported) |
Sebastian Bøe | 4ece94d | 2017-12-05 13:22:19 +0100 | [diff] [blame] | 524 | ) |
| 525 | # app is not checked because it's sources are added to it after |
| 526 | # this CMakeLists.txt file has been processed |
| 527 | message(FATAL_ERROR "\ |
| 528 | The Zephyr library '${zephyr_lib}' was created without source files. \ |
Sebastian Bøe | 64edbaf | 2018-01-09 12:45:19 +0100 | [diff] [blame] | 529 | Empty (non-imported) libraries are not supported. \ |
Sebastian Bøe | 4ece94d | 2017-12-05 13:22:19 +0100 | [diff] [blame] | 530 | Either make sure that the library has the sources it should have, \ |
| 531 | or make sure it is not created when it has no source files.") |
| 532 | endif() |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 533 | endforeach() |
| 534 | |
| 535 | get_property(OUTPUT_FORMAT GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT) |
| 536 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 537 | get_property(LINKER_SCRIPT_DEFINES GLOBAL PROPERTY PROPERTY_LINKER_SCRIPT_DEFINES) |
| 538 | |
| 539 | if(CONFIG_APPLICATION_MEMORY) |
| 540 | # Objects default to being in kernel space, and then we exclude |
| 541 | # certain items. |
| 542 | set(kernel_object_file_list |
| 543 | ${ZEPHYR_LIBS_PROPERTY} |
| 544 | kernel |
| 545 | ) |
| 546 | list( |
| 547 | REMOVE_ITEM |
| 548 | kernel_object_file_list |
| 549 | app |
| 550 | ) |
| 551 | |
| 552 | # The zephyr libraries in zephyr/lib/ and zephyr/test/ belong in |
| 553 | # userspace. |
| 554 | |
| 555 | # NB: The business logic for determing what source files are in |
| 556 | # kernel space and what source files are in user space is |
| 557 | # fragile. Fix ASAP. |
| 558 | # |
| 559 | # The intended design is that certain directories are designated as |
| 560 | # containing userspace code and others for kernel space code. The |
| 561 | # implementation we have however is not working on directories of |
| 562 | # code, it is working on zephyr libraries. It is exploiting the fact |
| 563 | # that zephyr libraries follow a naming scheme as described in |
| 564 | # extensions.cmake:zephyr_library_get_current_dir_lib_name |
| 565 | # |
| 566 | # But code from test/ and lib/ that is placed in the "zephyr" |
| 567 | # library (with zephyr_sources()) will not be in a library that is |
| 568 | # prefixed with lib__ or test__ and will end up in the wrong address |
| 569 | # space. |
| 570 | set(application_space_dirs |
| 571 | lib |
| 572 | tests |
| 573 | ) |
| 574 | foreach(f ${kernel_object_file_list}) |
| 575 | foreach(app_dir ${application_space_dirs}) |
| 576 | if(${f} MATCHES "^${app_dir}__") # Begins with ${app_dir}__, e.g. lib__libc |
| 577 | list( |
| 578 | REMOVE_ITEM |
| 579 | kernel_object_file_list |
| 580 | ${f} |
| 581 | ) |
| 582 | endif() |
| 583 | endforeach() |
| 584 | endforeach() |
| 585 | |
| 586 | # Create a list ks, with relative paths to kernel space libs. |
| 587 | foreach(f ${kernel_object_file_list}) |
| 588 | get_target_property(target_name ${f} NAME) |
| 589 | get_target_property(target_binary_dir ${f} BINARY_DIR) |
| 590 | |
| 591 | string(REPLACE |
| 592 | ${PROJECT_BINARY_DIR} |
| 593 | "" |
| 594 | fixed_path |
| 595 | ${target_binary_dir} |
| 596 | ) |
| 597 | |
| 598 | # Append / if not empty |
| 599 | if(fixed_path) |
| 600 | set(fixed_path "${fixed_path}/") |
| 601 | endif() |
| 602 | |
| 603 | # Cut off leading / if present |
| 604 | if(fixed_path MATCHES "^/.+") |
| 605 | string(SUBSTRING ${fixed_path} 1 -1 fixed_path) |
| 606 | endif() |
| 607 | |
Sebastian Bøe | 1c2de10 | 2018-01-02 15:54:16 +0100 | [diff] [blame] | 608 | set(fixed_path "${fixed_path}lib${target_name}.a") |
| 609 | |
| 610 | if(CMAKE_GENERATOR STREQUAL "Ninja") |
| 611 | # Ninja invokes the linker from the root of the build directory |
| 612 | # (APPLICATION_BINARY_DIR) instead of from the build/zephyr |
| 613 | # directory (PROJECT_BINARY_DIR). So for linker-defs.h to get |
| 614 | # the correct path we need to prefix with zephyr/. |
| 615 | set(fixed_path "zephyr/${fixed_path}") |
| 616 | endif() |
| 617 | |
| 618 | list(APPEND ks ${fixed_path}) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 619 | endforeach() |
| 620 | |
| 621 | # We are done constructing kernel_object_file_list, now we inject this |
| 622 | # information into the linker script through -D's |
| 623 | list(LENGTH kernel_object_file_list NUM_KERNEL_OBJECT_FILES) |
| 624 | list(APPEND LINKER_SCRIPT_DEFINES -DNUM_KERNEL_OBJECT_FILES=${NUM_KERNEL_OBJECT_FILES}) |
| 625 | set(i 0) |
| 626 | foreach(f ${ks}) |
| 627 | list(APPEND LINKER_SCRIPT_DEFINES -DKERNEL_OBJECT_FILE_${i}=${f}) |
| 628 | math(EXPR i "${i}+1") |
| 629 | endforeach() |
| 630 | endif() # CONFIG_APPLICATION_MEMORY |
| 631 | |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 632 | # Declare MPU userspace dependencies before the linker scripts to make |
| 633 | # sure the order of dependencies are met |
| 634 | if(CONFIG_CPU_HAS_MPU AND CONFIG_USERSPACE) |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame^] | 635 | if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APP_SHARED_MEM ) |
| 636 | set(APP_SMEM_DEP app_smem_linker) |
| 637 | endif() |
Andy Gross | e1fc5c2 | 2018-02-15 08:07:17 -0600 | [diff] [blame] | 638 | if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APPLICATION_MEMORY) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 639 | set(ALIGN_SIZING_DEP app_sizing_prebuilt linker_app_sizing_script) |
| 640 | endif() |
Wayne Ren | 5a0ba2f | 2018-02-12 19:17:04 +0800 | [diff] [blame] | 641 | if(CONFIG_ARM) |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 642 | set(PRIV_STACK_DEP priv_stacks_prebuilt) |
Wayne Ren | 5a0ba2f | 2018-02-12 19:17:04 +0800 | [diff] [blame] | 643 | endif() |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 644 | endif() |
| 645 | |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 646 | function(construct_add_custom_command_for_linker_pass linker_output_name output_variable) |
| 647 | set(linker_cmd_file_name ${linker_output_name}.cmd) |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 648 | |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 649 | if (${linker_output_name} MATCHES "^linker_pass_final$") |
| 650 | set(LINKER_PASS_DEFINE -DLINKER_PASS2) |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 651 | else() |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 652 | set(LINKER_PASS_DEFINE "") |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 653 | endif() |
| 654 | |
Sebastian Bøe | a0b9129 | 2017-12-31 10:56:32 +0100 | [diff] [blame] | 655 | # Different generators deal with depfiles differently. |
| 656 | if(CMAKE_GENERATOR STREQUAL "Unix Makefiles") |
| 657 | # Note that the IMPLICIT_DEPENDS option is currently supported only |
| 658 | # for Makefile generators and will be ignored by other generators. |
| 659 | set(LINKER_SCRIPT_DEP IMPLICIT_DEPENDS C ${LINKER_SCRIPT}) |
| 660 | elseif(CMAKE_GENERATOR STREQUAL "Ninja") |
| 661 | # Using DEPFILE with other generators than Ninja is an error. |
| 662 | set(LINKER_SCRIPT_DEP DEPFILE ${PROJECT_BINARY_DIR}/${linker_cmd_file_name}.dep) |
| 663 | else() |
| 664 | # TODO: How would the linker script dependencies work for non-linker |
| 665 | # script generators. |
| 666 | message(STATUS "Warning; this generator is not well supported. The |
| 667 | Linker script may not be regenerated when it should.") |
| 668 | set(LINKER_SCRIPT_DEP "") |
| 669 | endif() |
| 670 | |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 671 | set(${output_variable} |
| 672 | OUTPUT ${linker_cmd_file_name} |
| 673 | DEPENDS ${LINKER_SCRIPT} |
| 674 | ${LINKER_SCRIPT_DEP} |
| 675 | COMMAND ${CMAKE_C_COMPILER} |
| 676 | -x assembler-with-cpp |
| 677 | ${NOSTDINC_F} |
| 678 | -undef |
| 679 | -MD -MF ${linker_cmd_file_name}.dep -MT ${BASE_NAME}/${linker_cmd_file_name} |
| 680 | ${ZEPHYR_INCLUDES} |
| 681 | ${LINKER_SCRIPT_DEFINES} |
| 682 | ${LINKER_PASS_DEFINE} |
Sebastian Bøe | 8062a88 | 2018-01-03 16:02:49 +0100 | [diff] [blame] | 683 | -E ${LINKER_SCRIPT} |
| 684 | -P # Prevent generation of debug `#line' directives. |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 685 | -o ${linker_cmd_file_name} |
| 686 | VERBATIM |
| 687 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR} |
| 688 | |
| 689 | PARENT_SCOPE |
| 690 | ) |
| 691 | endfunction() |
| 692 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 693 | get_filename_component(BASE_NAME ${CMAKE_CURRENT_BINARY_DIR} NAME) |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 694 | construct_add_custom_command_for_linker_pass(linker custom_command) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 695 | add_custom_command( |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 696 | ${custom_command} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 697 | ) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 698 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 699 | add_custom_target( |
| 700 | linker_script |
| 701 | DEPENDS |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 702 | ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 703 | linker.cmd |
| 704 | offsets_h |
Sebastian Bøe | b1ab501 | 2017-12-14 13:03:23 +0100 | [diff] [blame] | 705 | ) |
| 706 | |
| 707 | # Give the 'linker_script' target all of the include directories so |
| 708 | # that cmake can successfully find the linker_script's header |
| 709 | # dependencies. |
| 710 | zephyr_get_include_directories_for_lang(C |
| 711 | ZEPHYR_INCLUDE_DIRS |
| 712 | STRIP_PREFIX # Don't use a -I prefix |
| 713 | ) |
| 714 | set_property(TARGET |
| 715 | linker_script |
| 716 | PROPERTY INCLUDE_DIRECTORIES |
| 717 | ${ZEPHYR_INCLUDE_DIRS} |
| 718 | ) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 719 | |
| 720 | set(zephyr_lnk |
| 721 | ${LINKERFLAGPREFIX},-Map=${PROJECT_BINARY_DIR}/${KERNEL_MAP_NAME} |
| 722 | -u_OffsetAbsSyms |
| 723 | -u_ConfigAbsSyms |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 724 | ${LINKERFLAGPREFIX},--start-group |
| 725 | ${LINKERFLAGPREFIX},--whole-archive |
| 726 | ${ZEPHYR_LIBS_PROPERTY} |
| 727 | ${LINKERFLAGPREFIX},--no-whole-archive |
| 728 | kernel |
| 729 | ${OFFSETS_O_PATH} |
| 730 | ${LINKERFLAGPREFIX},--end-group |
| 731 | ${LIB_INCLUDE_DIR} |
| 732 | -L${PROJECT_BINARY_DIR} |
| 733 | ${TOOLCHAIN_LIBS} |
| 734 | ) |
| 735 | |
| 736 | if(CONFIG_GEN_ISR_TABLES) |
Rajavardhan Gundi | 08172cd | 2017-12-12 23:29:37 +0530 | [diff] [blame] | 737 | if(CONFIG_GEN_SW_ISR_TABLE) |
| 738 | list(APPEND GEN_ISR_TABLE_EXTRA_ARG --sw-isr-table) |
| 739 | endif() |
| 740 | |
| 741 | if(CONFIG_GEN_IRQ_VECTOR_TABLE) |
| 742 | list(APPEND GEN_ISR_TABLE_EXTRA_ARG --vector-table) |
| 743 | endif() |
| 744 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 745 | # isr_tables.c is generated from zephyr_prebuilt by |
| 746 | # gen_isr_tables.py |
| 747 | add_custom_command( |
| 748 | OUTPUT isr_tables.c |
| 749 | COMMAND ${CMAKE_OBJCOPY} |
| 750 | -I ${OUTPUT_FORMAT} |
| 751 | -O binary |
| 752 | --only-section=.intList |
| 753 | $<TARGET_FILE:zephyr_prebuilt> |
| 754 | isrList.bin |
| 755 | COMMAND ${PYTHON_EXECUTABLE} |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 756 | ${ZEPHYR_BASE}/arch/common/gen_isr_tables.py |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 757 | --output-source isr_tables.c |
Rajavardhan Gundi | 1e6adba | 2017-12-24 15:18:57 +0530 | [diff] [blame] | 758 | --kernel $<TARGET_FILE:zephyr_prebuilt> |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 759 | --intlist isrList.bin |
Sebastian Bøe | a55279a | 2018-01-04 14:08:39 +0100 | [diff] [blame] | 760 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--debug> |
Rajavardhan Gundi | 08172cd | 2017-12-12 23:29:37 +0530 | [diff] [blame] | 761 | ${GEN_ISR_TABLE_EXTRA_ARG} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 762 | DEPENDS zephyr_prebuilt |
| 763 | ) |
| 764 | set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_SOURCE_FILES isr_tables.c) |
| 765 | endif() |
| 766 | |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 767 | if(CONFIG_ARM AND CONFIG_USERSPACE) |
| 768 | set(GEN_PRIV_STACKS $ENV{ZEPHYR_BASE}/scripts/gen_priv_stacks.py) |
| 769 | set(PROCESS_PRIV_STACKS_GPERF $ENV{ZEPHYR_BASE}/scripts/process_gperf.py) |
| 770 | |
| 771 | set(PRIV_STACKS priv_stacks_hash.gperf) |
| 772 | set(PRIV_STACKS_OUTPUT_SRC_PRE priv_stacks_hash_preprocessed.c) |
| 773 | set(PRIV_STACKS_OUTPUT_SRC priv_stacks_hash.c) |
| 774 | set(PRIV_STACKS_OUTPUT_OBJ priv_stacks_hash.c.obj) |
| 775 | set(PRIV_STACKS_OUTPUT_OBJ_RENAMED priv_stacks_hash_renamed.o) |
| 776 | |
| 777 | # Essentially what we are doing here is extracting some information |
| 778 | # out of the nearly finished elf file, generating the source code |
| 779 | # for a hash table based on that information, and then compiling and |
| 780 | # linking the hash table back into a now even more nearly finished |
| 781 | # elf file. |
| 782 | |
| 783 | # Use the script GEN_PRIV_STACKS to scan the kernel binary's |
| 784 | # (zephyr_prebuilt) DWARF information to produce a table of kernel |
| 785 | # objects (PRIV_STACKS) which we will then pass to gperf |
| 786 | add_custom_command( |
| 787 | OUTPUT ${PRIV_STACKS} |
| 788 | COMMAND |
| 789 | ${PYTHON_EXECUTABLE} |
| 790 | ${GEN_PRIV_STACKS} |
| 791 | --kernel $<TARGET_FILE:priv_stacks_prebuilt> |
| 792 | --output ${PRIV_STACKS} |
| 793 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
| 794 | DEPENDS priv_stacks_prebuilt |
| 795 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 796 | ) |
| 797 | add_custom_target(priv_stacks DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS}) |
| 798 | |
| 799 | # Use gperf to generate C code (PRIV_STACKS_OUTPUT_SRC_PRE) which implements a |
| 800 | # perfect hashtable based on PRIV_STACKS |
| 801 | add_custom_command( |
| 802 | OUTPUT ${PRIV_STACKS_OUTPUT_SRC_PRE} |
| 803 | COMMAND |
| 804 | ${GPERF} -C |
| 805 | --output-file ${PRIV_STACKS_OUTPUT_SRC_PRE} |
| 806 | ${PRIV_STACKS} |
Andy Gross | 878f39c | 2018-05-01 01:10:26 -0500 | [diff] [blame] | 807 | DEPENDS priv_stacks ${PRIV_STACKS} |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 808 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 809 | ) |
| 810 | add_custom_target(priv_stacks_output_src_pre DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_SRC_PRE}) |
| 811 | |
| 812 | # For our purposes the code/data generated by gperf is not optimal. |
| 813 | # |
| 814 | # The script PROCESS_GPERF creates a new c file OUTPUT_SRC based on |
| 815 | # OUTPUT_SRC_PRE to greatly reduce the amount of code/data generated |
| 816 | # since we know we are always working with pointer values |
| 817 | add_custom_command( |
| 818 | OUTPUT ${PRIV_STACKS_OUTPUT_SRC} |
| 819 | COMMAND |
Sebastian Bøe | 1b60070 | 2018-06-21 14:34:42 +0200 | [diff] [blame] | 820 | ${PYTHON_EXECUTABLE} |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 821 | ${PROCESS_PRIV_STACKS_GPERF} |
| 822 | -i ${PRIV_STACKS_OUTPUT_SRC_PRE} |
| 823 | -o ${PRIV_STACKS_OUTPUT_SRC} |
| 824 | -p "struct _k_priv_stack_map" |
| 825 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
Andy Gross | 878f39c | 2018-05-01 01:10:26 -0500 | [diff] [blame] | 826 | DEPENDS priv_stacks_output_src_pre ${PRIV_STACKS_OUTPUT_SRC_PRE} |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 827 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 828 | ) |
| 829 | add_custom_target(priv_stacks_output_src DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_SRC}) |
| 830 | |
| 831 | # We need precise control of where generated text/data ends up in the final |
| 832 | # kernel image. Disable function/data sections and use objcopy to move |
| 833 | # generated data into special section names |
| 834 | add_library(priv_stacks_output_lib STATIC |
| 835 | ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_SRC} |
| 836 | ) |
| 837 | |
| 838 | target_link_libraries(priv_stacks_output_lib zephyr_interface) |
| 839 | |
| 840 | # Turn off -ffunction-sections, etc. |
| 841 | # NB: Using a library instead of target_compile_options(priv_stacks_output_lib |
| 842 | # [...]) because a library's options have precedence |
| 843 | add_library(priv_stacks_output_lib_interface INTERFACE) |
| 844 | target_compile_options(priv_stacks_output_lib_interface INTERFACE |
| 845 | -fno-function-sections |
| 846 | -fno-data-sections |
| 847 | ) |
| 848 | target_link_libraries(priv_stacks_output_lib priv_stacks_output_lib_interface) |
| 849 | |
| 850 | set(PRIV_STACKS_OUTPUT_OBJ_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/priv_stacks_output_lib.dir/${PRIV_STACKS_OUTPUT_OBJ}) |
| 851 | |
| 852 | add_custom_command( |
| 853 | OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_OBJ_RENAMED} |
| 854 | COMMAND |
| 855 | ${CMAKE_OBJCOPY} |
| 856 | --rename-section .bss=.priv_stacks.noinit |
| 857 | --rename-section .data=.priv_stacks.data |
| 858 | --rename-section .text=.priv_stacks.text |
| 859 | --rename-section .rodata=.priv_stacks.rodata |
| 860 | ${PRIV_STACKS_OUTPUT_OBJ_PATH} |
| 861 | ${PRIV_STACKS_OUTPUT_OBJ_RENAMED} |
| 862 | DEPENDS priv_stacks_output_lib |
| 863 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 864 | ) |
| 865 | add_custom_target(priv_stacks_output_obj_renamed DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_OBJ_RENAMED}) |
| 866 | |
| 867 | add_library(priv_stacks_output_obj_renamed_lib STATIC IMPORTED GLOBAL) |
| 868 | set_property( |
| 869 | TARGET priv_stacks_output_obj_renamed_lib |
| 870 | PROPERTY |
| 871 | IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_OBJ_RENAMED} |
| 872 | ) |
| 873 | add_dependencies( |
| 874 | priv_stacks_output_obj_renamed_lib |
| 875 | priv_stacks_output_obj_renamed |
| 876 | ) |
| 877 | |
| 878 | set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_OBJECT_FILES priv_stacks_output_obj_renamed_lib) |
| 879 | endif() |
| 880 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 881 | if(CONFIG_USERSPACE) |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 882 | set(GEN_KOBJ_LIST ${ZEPHYR_BASE}/scripts/gen_kobject_list.py) |
| 883 | set(PROCESS_GPERF ${ZEPHYR_BASE}/scripts/process_gperf.py) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 884 | |
| 885 | set(OBJ_LIST kobject_hash.gperf) |
| 886 | set(OUTPUT_SRC_PRE kobject_hash_preprocessed.c) |
| 887 | set(OUTPUT_SRC kobject_hash.c) |
| 888 | set(OUTPUT_OBJ kobject_hash.c.obj) |
| 889 | set(OUTPUT_OBJ_RENAMED kobject_hash_renamed.o) |
| 890 | |
| 891 | # Essentially what we are doing here is extracting some information |
| 892 | # out of the nearly finished elf file, generating the source code |
| 893 | # for a hash table based on that information, and then compiling and |
| 894 | # linking the hash table back into a now even more nearly finished |
| 895 | # elf file. |
| 896 | |
| 897 | # Use the script GEN_KOBJ_LIST to scan the kernel binary's |
| 898 | # (zephyr_prebuilt) DWARF information to produce a table of kernel |
| 899 | # objects (OBJ_LIST) which we will then pass to gperf |
| 900 | add_custom_command( |
| 901 | OUTPUT ${OBJ_LIST} |
| 902 | COMMAND |
| 903 | ${PYTHON_EXECUTABLE} |
| 904 | ${GEN_KOBJ_LIST} |
| 905 | --kernel $<TARGET_FILE:zephyr_prebuilt> |
Leandro Pereira | c200367 | 2018-04-04 13:50:32 -0700 | [diff] [blame] | 906 | --gperf-output ${OBJ_LIST} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 907 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
| 908 | DEPENDS zephyr_prebuilt |
| 909 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 910 | ) |
| 911 | add_custom_target(obj_list DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OBJ_LIST}) |
| 912 | |
| 913 | # Use gperf to generate C code (OUTPUT_SRC_PRE) which implements a |
| 914 | # perfect hashtable based on OBJ_LIST |
| 915 | add_custom_command( |
| 916 | OUTPUT ${OUTPUT_SRC_PRE} |
| 917 | COMMAND |
| 918 | ${GPERF} |
| 919 | --output-file ${OUTPUT_SRC_PRE} |
| 920 | ${OBJ_LIST} |
Sebastian Bøe | f5758b5 | 2018-01-31 10:42:46 +0100 | [diff] [blame] | 921 | DEPENDS obj_list ${OBJ_LIST} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 922 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 923 | ) |
| 924 | add_custom_target(output_src_pre DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_SRC_PRE}) |
| 925 | |
| 926 | # For our purposes the code/data generated by gperf is not optimal. |
| 927 | # |
| 928 | # The script PROCESS_GPERF creates a new c file OUTPUT_SRC based on |
| 929 | # OUTPUT_SRC_PRE to greatly reduce the amount of code/data generated |
| 930 | # since we know we are always working with pointer values |
| 931 | add_custom_command( |
| 932 | OUTPUT ${OUTPUT_SRC} |
| 933 | COMMAND |
Sebastian Bøe | 1b60070 | 2018-06-21 14:34:42 +0200 | [diff] [blame] | 934 | ${PYTHON_EXECUTABLE} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 935 | ${PROCESS_GPERF} |
| 936 | -i ${OUTPUT_SRC_PRE} |
| 937 | -o ${OUTPUT_SRC} |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 938 | -p "struct _k_object" |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 939 | $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose> |
Sebastian Bøe | f5758b5 | 2018-01-31 10:42:46 +0100 | [diff] [blame] | 940 | DEPENDS output_src_pre ${OUTPUT_SRC_PRE} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 941 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 942 | ) |
| 943 | add_custom_target(output_src DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_SRC}) |
| 944 | |
| 945 | # We need precise control of where generated text/data ends up in the final |
| 946 | # kernel image. Disable function/data sections and use objcopy to move |
| 947 | # generated data into special section names |
| 948 | add_library(output_lib STATIC |
| 949 | ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_SRC} |
| 950 | ) |
| 951 | |
Adithya Baglody | ce9a5a2 | 2018-01-29 15:58:51 +0530 | [diff] [blame] | 952 | # always compile kobject_hash.c at optimization -Os |
| 953 | set_source_files_properties(${OUTPUT_SRC} PROPERTIES COMPILE_FLAGS -Os) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 954 | target_link_libraries(output_lib zephyr_interface) |
| 955 | |
| 956 | # Turn off -ffunction-sections, etc. |
| 957 | # NB: Using a library instead of target_compile_options(output_lib |
| 958 | # [...]) because a library's options have precedence |
| 959 | add_library(output_lib_interface INTERFACE) |
| 960 | target_compile_options(output_lib_interface INTERFACE |
| 961 | -fno-function-sections |
| 962 | -fno-data-sections |
| 963 | ) |
| 964 | target_link_libraries(output_lib output_lib_interface) |
| 965 | |
| 966 | set(OUTPUT_OBJ_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/output_lib.dir/${OUTPUT_OBJ}) |
| 967 | |
| 968 | add_custom_command( |
| 969 | OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_OBJ_RENAMED} |
| 970 | COMMAND |
| 971 | ${CMAKE_OBJCOPY} |
| 972 | --rename-section .data=.kobject_data.data |
| 973 | --rename-section .text=.kobject_data.text |
| 974 | --rename-section .rodata=.kobject_data.rodata |
| 975 | ${OUTPUT_OBJ_PATH} |
| 976 | ${OUTPUT_OBJ_RENAMED} |
| 977 | DEPENDS output_lib |
| 978 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 979 | ) |
| 980 | add_custom_target(output_obj_renamed DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_OBJ_RENAMED}) |
| 981 | |
| 982 | add_library(output_obj_renamed_lib STATIC IMPORTED GLOBAL) |
| 983 | set_property( |
| 984 | TARGET output_obj_renamed_lib |
| 985 | PROPERTY |
| 986 | IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_OBJ_RENAMED} |
| 987 | ) |
| 988 | add_dependencies( |
| 989 | output_obj_renamed_lib |
| 990 | output_obj_renamed |
| 991 | ) |
| 992 | |
| 993 | set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_OBJECT_FILES output_obj_renamed_lib) |
| 994 | endif() |
| 995 | |
| 996 | # Read global variables into local variables |
| 997 | get_property(GKOF GLOBAL PROPERTY GENERATED_KERNEL_OBJECT_FILES) |
| 998 | get_property(GKSF GLOBAL PROPERTY GENERATED_KERNEL_SOURCE_FILES) |
| 999 | |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 1000 | get_property(TOPT GLOBAL PROPERTY TOPT) |
| 1001 | set_ifndef( TOPT -T) |
| 1002 | |
Alberto Escolar Piedras | c288241 | 2018-07-05 10:51:03 +0200 | [diff] [blame] | 1003 | get_property(CSTD GLOBAL PROPERTY CSTD) |
| 1004 | set_ifndef(CSTD c99) |
| 1005 | |
| 1006 | zephyr_compile_options( |
| 1007 | $<$<COMPILE_LANGUAGE:C>:-std=${CSTD}> |
| 1008 | ) |
| 1009 | |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1010 | configure_file( |
| 1011 | $ENV{ZEPHYR_BASE}/include/arch/arm/cortex_m/scripts/app_data_alignment.ld |
| 1012 | ${PROJECT_BINARY_DIR}/include/generated/app_data_alignment.ld) |
| 1013 | |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame^] | 1014 | configure_file( |
| 1015 | $ENV{ZEPHYR_BASE}/include/arch/arm/cortex_m/scripts/app_smem.ld |
| 1016 | ${PROJECT_BINARY_DIR}/include/generated/app_smem.ld) |
| 1017 | |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1018 | if(CONFIG_CPU_HAS_MPU AND CONFIG_USERSPACE) |
| 1019 | |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame^] | 1020 | if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APP_SHARED_MEM) |
| 1021 | set(GEN_APP_SMEM $ENV{ZEPHYR_BASE}/scripts/gen_app_smem.py) |
| 1022 | set(APP_SMEM_LD "${PROJECT_BINARY_DIR}/include/generated/app_smem.ld") |
| 1023 | set(OBJ_FILE_DIR "${PROJECT_BINARY_DIR}/../") |
| 1024 | |
| 1025 | add_custom_target( |
| 1026 | ${APP_SMEM_DEP} ALL |
| 1027 | DEPENDS zephyr_prebuilt |
| 1028 | ) |
| 1029 | |
| 1030 | add_custom_command( |
| 1031 | TARGET ${APP_SMEM_DEP} |
| 1032 | COMMAND ${PYTHON_EXECUTABLE} ${GEN_APP_SMEM} |
| 1033 | -d ${OBJ_FILE_DIR} |
| 1034 | -o ${APP_SMEM_LD} |
| 1035 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/ |
| 1036 | COMMENT "Generating power of 2 aligned app_smem linker section" |
| 1037 | ) |
| 1038 | endif() |
| 1039 | |
| 1040 | |
Andy Gross | e1fc5c2 | 2018-02-15 08:07:17 -0600 | [diff] [blame] | 1041 | if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APPLICATION_MEMORY) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1042 | |
| 1043 | construct_add_custom_command_for_linker_pass(linker_app_sizing custom_command) |
| 1044 | add_custom_command( |
| 1045 | ${custom_command} |
| 1046 | ) |
| 1047 | |
| 1048 | add_custom_target( |
| 1049 | linker_app_sizing_script |
| 1050 | DEPENDS |
| 1051 | linker_app_sizing.cmd |
| 1052 | offsets_h |
| 1053 | ) |
| 1054 | |
| 1055 | set_property(TARGET |
| 1056 | linker_app_sizing_script |
| 1057 | PROPERTY INCLUDE_DIRECTORIES |
| 1058 | ${ZEPHYR_INCLUDE_DIRS} |
| 1059 | ) |
| 1060 | |
| 1061 | # For systems with MPUs, the size of the application data section must |
| 1062 | # be determined so that MPU alignment requirements can be met. |
| 1063 | # Create a app_sizing_prebuilt target so we can do this before the |
| 1064 | # other ELF files are built |
| 1065 | set(GEN_APP_ALIGN $ENV{ZEPHYR_BASE}/scripts/gen_alignment_script.py) |
| 1066 | add_executable( app_sizing_prebuilt misc/empty_file.c) |
| 1067 | target_link_libraries(app_sizing_prebuilt ${TOPT} ${PROJECT_BINARY_DIR}/linker_app_sizing.cmd ${zephyr_lnk}) |
| 1068 | 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^] | 1069 | add_dependencies( app_sizing_prebuilt linker_app_sizing_script offsets ) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1070 | |
| 1071 | add_custom_command( |
| 1072 | TARGET app_sizing_prebuilt |
| 1073 | POST_BUILD |
| 1074 | COMMAND ${PYTHON_EXECUTABLE} ${GEN_APP_ALIGN} |
| 1075 | --output ./include/generated/app_data_alignment.ld |
| 1076 | --kernel $<TARGET_FILE:app_sizing_prebuilt> |
| 1077 | VERBATIM |
| 1078 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/ |
| 1079 | ) |
| 1080 | endif() |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1081 | |
Wayne Ren | 5a0ba2f | 2018-02-12 19:17:04 +0800 | [diff] [blame] | 1082 | if(CONFIG_ARM) |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1083 | construct_add_custom_command_for_linker_pass(linker_priv_stacks custom_command) |
| 1084 | add_custom_command( |
| 1085 | ${custom_command} |
| 1086 | ) |
| 1087 | |
| 1088 | add_custom_target( |
| 1089 | linker_priv_stacks_script |
| 1090 | DEPENDS |
| 1091 | ${ALIGN_SIZING_DEP} |
| 1092 | linker_priv_stacks.cmd |
| 1093 | offsets_h |
| 1094 | ) |
| 1095 | |
| 1096 | set_property(TARGET |
| 1097 | linker_priv_stacks_script |
| 1098 | PROPERTY INCLUDE_DIRECTORIES |
| 1099 | ${ZEPHYR_INCLUDE_DIRS} |
| 1100 | ) |
| 1101 | |
| 1102 | set(PRIV_STACK_LIB priv_stacks_output_obj_renamed_lib) |
| 1103 | add_executable( priv_stacks_prebuilt misc/empty_file.c) |
| 1104 | target_link_libraries(priv_stacks_prebuilt ${TOPT} ${PROJECT_BINARY_DIR}/linker_priv_stacks.cmd ${zephyr_lnk}) |
| 1105 | set_property(TARGET priv_stacks_prebuilt PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_priv_stacks.cmd) |
| 1106 | 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] | 1107 | endif() |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1108 | |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1109 | endif() |
| 1110 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1111 | # FIXME: Is there any way to get rid of empty_file.c? |
| 1112 | add_executable( zephyr_prebuilt misc/empty_file.c) |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1113 | 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] | 1114 | 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] | 1115 | 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] | 1116 | |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 1117 | |
| 1118 | if(NOT CONFIG_NATIVE_APPLICATION) |
| 1119 | set(NOSTDINC_F -nostdinc) |
| 1120 | endif() |
| 1121 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1122 | if(GKOF OR GKSF) |
| 1123 | set(logical_target_for_zephyr_elf kernel_elf) |
| 1124 | |
| 1125 | # 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] | 1126 | # first pass (LINKER_SCRIPT), but this time with a different output |
| 1127 | # file and preprocessed with the define LINKER_PASS2. |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1128 | 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] | 1129 | add_custom_command( |
Sebastian Bøe | b85dd3c | 2017-12-31 10:39:23 +0100 | [diff] [blame] | 1130 | ${custom_command} |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1131 | ) |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1132 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1133 | add_custom_target( |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1134 | linker_pass_final_script |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1135 | DEPENDS |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 1136 | ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 1137 | zephyr_prebuilt |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1138 | linker_pass_final.cmd |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1139 | offsets_h |
| 1140 | ) |
Sebastian Bøe | b1ab501 | 2017-12-14 13:03:23 +0100 | [diff] [blame] | 1141 | set_property(TARGET |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1142 | linker_pass_final_script |
Sebastian Bøe | b1ab501 | 2017-12-14 13:03:23 +0100 | [diff] [blame] | 1143 | PROPERTY INCLUDE_DIRECTORIES |
| 1144 | ${ZEPHYR_INCLUDE_DIRS} |
| 1145 | ) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1146 | |
| 1147 | add_executable( kernel_elf misc/empty_file.c ${GKSF}) |
Andy Gross | 1f0ff06 | 2018-01-25 11:07:03 -0600 | [diff] [blame] | 1148 | target_link_libraries(kernel_elf ${GKOF} ${TOPT} ${PROJECT_BINARY_DIR}/linker_pass_final.cmd ${zephyr_lnk}) |
| 1149 | set_property(TARGET kernel_elf PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_pass_final.cmd) |
Shawn Mosley | 573f32b | 2018-04-26 10:14:02 -0400 | [diff] [blame^] | 1150 | add_dependencies( kernel_elf ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} ${APP_SMEM_DEP} linker_pass_final_script) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1151 | else() |
| 1152 | set(logical_target_for_zephyr_elf zephyr_prebuilt) |
| 1153 | # Use the prebuilt elf as the final elf since we don't have a |
| 1154 | # generation stage. |
| 1155 | endif() |
| 1156 | |
| 1157 | # To avoid having the same logical target name for the zephyr lib and |
| 1158 | # the zephyr elf, we set the kernel_elf file name to zephyr.elf. |
| 1159 | set_target_properties(${logical_target_for_zephyr_elf} PROPERTIES OUTPUT_NAME ${KERNEL_NAME}) |
| 1160 | |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1161 | set(post_build_commands "") |
| 1162 | |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1163 | list_append_ifdef(CONFIG_CHECK_LINK_MAP |
| 1164 | post_build_commands |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 1165 | 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] | 1166 | ) |
| 1167 | |
| 1168 | list_append_ifdef( |
| 1169 | CONFIG_BUILD_OUTPUT_HEX |
| 1170 | post_build_commands |
Walter Xie | 6b836d6 | 2018-07-10 11:39:52 +0800 | [diff] [blame] | 1171 | 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] | 1172 | ) |
| 1173 | |
| 1174 | list_append_ifdef( |
| 1175 | CONFIG_BUILD_OUTPUT_BIN |
| 1176 | post_build_commands |
Walter Xie | 6b836d6 | 2018-07-10 11:39:52 +0800 | [diff] [blame] | 1177 | 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] | 1178 | ) |
Anas Nashif | 4592ff2 | 2017-11-23 07:54:26 -0500 | [diff] [blame] | 1179 | |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1180 | list_append_ifdef( |
| 1181 | CONFIG_BUILD_OUTPUT_S19 |
| 1182 | post_build_commands |
Walter Xie | 6b836d6 | 2018-07-10 11:39:52 +0800 | [diff] [blame] | 1183 | 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] | 1184 | ) |
| 1185 | |
| 1186 | list_append_ifdef( |
Anas Nashif | 1f1143a | 2017-11-22 13:03:53 -0500 | [diff] [blame] | 1187 | CONFIG_OUTPUT_DISASSEMBLY |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1188 | post_build_commands |
| 1189 | COMMAND ${CMAKE_OBJDUMP} -S ${KERNEL_ELF_NAME} > ${KERNEL_LST_NAME} |
| 1190 | ) |
| 1191 | |
| 1192 | list_append_ifdef( |
Anas Nashif | 1f1143a | 2017-11-22 13:03:53 -0500 | [diff] [blame] | 1193 | CONFIG_OUTPUT_STAT |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1194 | post_build_commands |
| 1195 | COMMAND ${CMAKE_READELF} -e ${KERNEL_ELF_NAME} > ${KERNEL_STAT_NAME} |
| 1196 | ) |
| 1197 | |
| 1198 | list_append_ifdef( |
| 1199 | CONFIG_BUILD_OUTPUT_STRIPPED |
| 1200 | post_build_commands |
| 1201 | COMMAND ${CMAKE_STRIP} --strip-all ${KERNEL_ELF_NAME} -o ${KERNEL_STRIP_NAME} |
| 1202 | ) |
| 1203 | |
Anas Nashif | 4592ff2 | 2017-11-23 07:54:26 -0500 | [diff] [blame] | 1204 | list_append_ifdef( |
| 1205 | CONFIG_BUILD_OUTPUT_EXE |
| 1206 | post_build_commands |
| 1207 | COMMAND ${CMAKE_COMMAND} -E rename ${KERNEL_ELF_NAME} ${KERNEL_EXE_NAME} |
| 1208 | ) |
| 1209 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1210 | add_custom_command( |
| 1211 | TARGET ${logical_target_for_zephyr_elf} |
| 1212 | POST_BUILD |
Sebastian Bøe | e51ce4d | 2017-11-20 15:37:59 +0100 | [diff] [blame] | 1213 | ${post_build_commands} |
| 1214 | COMMENT "Generating files from zephyr.elf for board: ${BOARD}" |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1215 | # NB: COMMENT only works for some CMake-Generators |
| 1216 | ) |
| 1217 | |
Sebastian Bøe | dbdd722 | 2017-12-19 13:20:10 +0100 | [diff] [blame] | 1218 | if(CONFIG_OUTPUT_PRINT_MEMORY_USAGE) |
| 1219 | # Use --print-memory-usage with the first link. |
| 1220 | # |
| 1221 | # Don't use this option with the second link because seeing it twice |
| 1222 | # could confuse users and using it on the second link would suppress |
| 1223 | # it when the first link has a ram/flash-usage issue. |
| 1224 | set(option ${LINKERFLAGPREFIX},--print-memory-usage) |
| 1225 | string(MAKE_C_IDENTIFIER check${option} check) |
Sebastian Bøe | ba0b283 | 2017-12-21 10:16:43 +0100 | [diff] [blame] | 1226 | |
Sebastian Bøe | c34b7a3 | 2017-12-27 15:21:54 +0100 | [diff] [blame] | 1227 | set(SAVED_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
Sebastian Bøe | ba0b283 | 2017-12-21 10:16:43 +0100 | [diff] [blame] | 1228 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${option}") |
Sebastian Bøe | 71b849f | 2018-04-17 15:08:58 +0200 | [diff] [blame] | 1229 | zephyr_check_compiler_flag(C "" ${check}) |
Sebastian Bøe | c34b7a3 | 2017-12-27 15:21:54 +0100 | [diff] [blame] | 1230 | set(CMAKE_REQUIRED_FLAGS ${SAVED_CMAKE_REQUIRED_FLAGS}) |
Sebastian Bøe | ba0b283 | 2017-12-21 10:16:43 +0100 | [diff] [blame] | 1231 | |
Sebastian Bøe | dbdd722 | 2017-12-19 13:20:10 +0100 | [diff] [blame] | 1232 | target_link_libraries_ifdef(${check} zephyr_prebuilt ${option}) |
| 1233 | endif() |
| 1234 | |
Anas Nashif | c15d3c9 | 2017-11-21 18:54:55 -0500 | [diff] [blame] | 1235 | if(EMU_PLATFORM) |
Carles Cufi | 7d764b3 | 2018-01-11 15:46:44 +0100 | [diff] [blame] | 1236 | include(${ZEPHYR_BASE}/cmake/emu/${EMU_PLATFORM}.cmake) |
Anas Nashif | fd276ae | 2017-12-21 16:45:45 -0500 | [diff] [blame] | 1237 | else() |
| 1238 | add_custom_target(run |
| 1239 | COMMAND |
| 1240 | ${CMAKE_COMMAND} -E echo |
| 1241 | "===================================================" |
| 1242 | "Emulation/Simulation not supported with this board." |
| 1243 | "===================================================" |
| 1244 | ) |
Anas Nashif | c15d3c9 | 2017-11-21 18:54:55 -0500 | [diff] [blame] | 1245 | endif() |
| 1246 | |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1247 | add_subdirectory(cmake/flash) |
| 1248 | |
| 1249 | add_subdirectory(cmake/usage) |
| 1250 | add_subdirectory(cmake/reports) |
| 1251 | |
Andrew Boie | 411686f | 2018-05-24 13:18:36 -0700 | [diff] [blame] | 1252 | if(CONFIG_ASSERT AND (NOT CONFIG_FORCE_NO_ASSERT)) |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1253 | message(WARNING " |
| 1254 | ------------------------------------------------------------ |
| 1255 | --- WARNING: __ASSERT() statements are globally ENABLED --- |
Ioannis Glaropoulos | f90416c | 2018-05-31 11:05:12 +0200 | [diff] [blame] | 1256 | --- The kernel will run more slowly and use more memory --- |
Sebastian Bøe | 12f8f76 | 2017-10-27 15:43:34 +0200 | [diff] [blame] | 1257 | ------------------------------------------------------------" |
| 1258 | ) |
| 1259 | endif() |
| 1260 | |
| 1261 | if(CONFIG_BOARD_DEPRECATED) |
| 1262 | message(WARNING " |
| 1263 | WARNING: The board '${BOARD}' is deprecated and will be |
| 1264 | removed in version ${CONFIG_BOARD_DEPRECATED}" |
| 1265 | ) |
| 1266 | endif() |
Andrew Boie | df48e11 | 2018-01-12 09:54:24 -0800 | [diff] [blame] | 1267 | |
| 1268 | if(CONFIG_X86 AND CONFIG_USERSPACE AND NOT CONFIG_X86_NO_MELTDOWN) |
| 1269 | message(WARNING " |
| 1270 | WARNING: You have enabled CONFIG_USERSPACE on an x86-based target. |
| 1271 | If your CPU is vulnerable to the Meltdown CPU bug, security of |
| 1272 | supervisor-only memory pages is not guaranteed. This version of Zephyr |
| 1273 | does not contain a fix for this issue." |
| 1274 | ) |
| 1275 | endif() |