blob: 57ae22df9853f7b32edb69e5f0be0a553d86836f [file] [log] [blame]
Sebastian Bøeee9af862018-06-04 11:47:45 +02001if(NOT DEFINED ZEPHYR_BINARY_DIR)
2 message(FATAL_ERROR "A user error has occured.
3cmake was invoked with '${CMAKE_CURRENT_LIST_DIR}' specified as the source directory,
4but it must be invoked with an application source directory,
5such as '${CMAKE_CURRENT_LIST_DIR}/samples/hello_world'.
6Debug variables:
7CMAKE_CACHEFILE_DIR: ${CMAKE_CACHEFILE_DIR}
8")
9endif()
10
Sebastian Bøe12f8f762017-10-27 15:43:34 +020011project(Zephyr-Kernel VERSION ${PROJECT_VERSION})
12enable_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.
27check_c_compiler_flag("" toolchain_is_ok)
28assert(toolchain_is_ok "The toolchain is unable to build a dummy C file. See CMakeError.log.")
29
Sebastian Bøe12f8f762017-10-27 15:43:34 +020030set(CMAKE_EXECUTABLE_SUFFIX .elf)
31
Sebastian Bøe12f8f762017-10-27 15:43:34 +020032if(NOT PROPERTY_LINKER_SCRIPT_DEFINES)
33 set_property(GLOBAL PROPERTY PROPERTY_LINKER_SCRIPT_DEFINES -D__GCC_LINKER_CMD__)
34endif()
35
36define_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT BRIEF_DOCS " " FULL_DOCS " ")
37set_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.
43add_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.
48zephyr_library_named(zephyr)
49
50zephyr_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øe12f8f762017-10-27 15:43:34 +020064zephyr_compile_definitions(
65 KERNEL
66 __ZEPHYR__=1
Anas Nashif34aebad2018-01-03 12:26:19 -050067)
68
Thomas Ebert Hansen15bc6152018-07-12 12:01:55 +020069if(NOT CONFIG_NO_OPTIMIZATIONS)
Anas Nashif34aebad2018-01-03 12:26:19 -050070zephyr_compile_definitions(
Sebastian Bøe12f8f762017-10-27 15:43:34 +020071 _FORTIFY_SOURCE=2
72)
Anas Nashif34aebad2018-01-03 12:26:19 -050073endif()
Sebastian Bøe12f8f762017-10-27 15:43:34 +020074
Anas Nashifdaf77162018-04-09 21:53:26 -050075if(BUILD_VERSION)
76 zephyr_compile_definitions(
77 BUILD_VERSION=${BUILD_VERSION}
78 )
79endif()
80
Sebastian Bøe12f8f762017-10-27 15:43:34 +020081# We need to set an optimization level.
82# Default to -Os
Alberto Escolar Piedrasf60527a2018-01-22 15:35:54 +010083# unless CONFIG_NO_OPTIMIZATIONS is set, then it is -O0
84# or unless CONFIG_DEBUG is set, then it is -Og
Sebastian Bøe12f8f762017-10-27 15:43:34 +020085#
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 Piedrasf60527a2018-01-22 15:35:54 +010091set_ifndef(OPTIMIZE_FOR_NO_OPTIMIZATIONS_FLAG "-O0")
Sebastian Bøe600c8f72018-01-24 10:40:32 +010092set_ifndef(OPTIMIZE_FOR_DEBUG_FLAG "-Og")
93set_ifndef(OPTIMIZE_FOR_SIZE_FLAG "-Os")
Aurelien Jarnoe8413d12018-06-16 23:40:04 +020094set_ifndef(OPTIMIZE_FOR_SPEED_FLAG "-O2")
Sebastian Bøe600c8f72018-01-24 10:40:32 +010095
Alberto Escolar Piedrasf60527a2018-01-22 15:35:54 +010096if(CONFIG_NO_OPTIMIZATIONS)
Sebastian Bøe600c8f72018-01-24 10:40:32 +010097 set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_NO_OPTIMIZATIONS_FLAG})
98elseif(CONFIG_DEBUG_OPTIMIZATIONS)
Sebastian Bøe12f8f762017-10-27 15:43:34 +020099 set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_DEBUG_FLAG})
Aurelien Jarnoe8413d12018-06-16 23:40:04 +0200100elseif(CONFIG_SPEED_OPTIMIZATIONS)
101 set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_SPEED_FLAG})
Sebastian Bøe600c8f72018-01-24 10:40:32 +0100102elseif(CONFIG_SIZE_OPTIMIZATIONS)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200103 set(OPTIMIZATION_FLAG ${OPTIMIZE_FOR_SIZE_FLAG}) # Default
Sebastian Bøe600c8f72018-01-24 10:40:32 +0100104else()
105 assert(0 "Unreachable code. Expected optimization level to have been chosen. See misc/Kconfig.")
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200106endif()
107
108zephyr_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 Piedras76f764412017-10-03 16:31:55 +0200115 -imacros ${AUTOCONF_H}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200116 -ffreestanding
Alberto Escolar Piedras76f764412017-10-03 16:31:55 +0200117 -Wno-main
118 ${NOSTDINC_F}
Rajavardhan Gundi08172cd2017-12-12 23:29:37 +0530119 ${TOOLCHAIN_C_FLAGS}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200120)
121
122zephyr_compile_options(
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200123 $<$<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 Piedras76f764412017-10-03 16:31:55 +0200134if(NOT CONFIG_NATIVE_APPLICATION)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200135zephyr_ld_options(
136 -nostartfiles
137 -nodefaultlibs
138 -nostdlib
139 -static
140 -no-pie
Alberto Escolar Piedras76f764412017-10-03 16:31:55 +0200141)
142endif()
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200143
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# ==========================================================================
152if(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 )
167endif()
168
169if(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 )
181endif()
182
183if(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 )
198endif()
199
200# Allow the user to inject options when calling cmake, e.g.
201# 'cmake -DEXTRA_CFLAGS="-Werror -Wno-deprecated-declarations" ..'
Sebastian Bøe9f590452017-11-10 12:22:23 +0100202include(cmake/extra_flags.cmake)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200203
204if(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)
208endif()
209
210zephyr_cc_option(-fno-asynchronous-unwind-tables)
211zephyr_cc_option(-fno-pie)
212zephyr_cc_option(-fno-pic)
213zephyr_cc_option(-fno-strict-overflow)
214zephyr_cc_option(-Wno-pointer-sign)
215
Sebastian Bøe703dc592017-11-29 10:19:50 +0100216zephyr_compile_options_ifdef(CONFIG_STACK_CANARIES -fstack-protector-all)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200217
218if(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()
224endif()
225
Aurelien Jarno92a68982018-06-16 23:40:04 +0200226separate_arguments(CONFIG_COMPILER_OPT_AS_LIST UNIX_COMMAND ${CONFIG_COMPILER_OPT})
227zephyr_compile_options(${CONFIG_COMPILER_OPT_AS_LIST})
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200228
229# TODO: Include arch compiler options at this point.
230
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200231if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
232 zephyr_cc_option(
Anas Nashif72edc4e2018-05-02 00:09:31 -0500233 #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øe12f8f762017-10-27 15:43:34 +0200242 -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 )
249else() # GCC assumed
250 zephyr_cc_option(
251 -Wno-unused-but-set-variable
252 -fno-reorder-functions
253 )
Rajavardhan Gundi08172cd2017-12-12 23:29:37 +0530254
Anas Nashif7ee8bb92018-02-11 14:36:21 -0600255 if(NOT ${ZEPHYR_TOOLCHAIN_VARIANT} STREQUAL "xcc")
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200256 zephyr_cc_option(-fno-defer-pop)
257 endif()
258endif()
259
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200260zephyr_cc_option_ifdef(CONFIG_STACK_USAGE -fstack-usage)
261
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200262zephyr_system_include_directories(${NOSTDINC})
263
264# Force an error when things like SYS_INIT(foo, ...) occur with a missing header.
265zephyr_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øe12f8f762017-10-27 15:43:34 +0200273set_ifndef(LINKERFLAGPREFIX -Wl)
Alberto Escolar Piedras76f764412017-10-03 16:31:55 +0200274
275if(NOT CONFIG_NATIVE_APPLICATION)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200276zephyr_ld_options(
277 ${LINKERFLAGPREFIX},-X
278 ${LINKERFLAGPREFIX},-N
Alberto Escolar Piedras76f764412017-10-03 16:31:55 +0200279 )
280endif()
281
282zephyr_ld_options(
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200283 ${LINKERFLAGPREFIX},--gc-sections
284 ${LINKERFLAGPREFIX},--build-id=none
285 )
286
287if(CONFIG_HAVE_CUSTOM_LINKER_SCRIPT)
288 set(LINKER_SCRIPT ${APPLICATION_SOURCE_DIR}/${CONFIG_CUSTOM_LINKER_SCRIPT})
Sebastian Bøec1aa9d12018-04-12 14:48:05 +0200289 if(NOT EXISTS ${LINKER_SCRIPT})
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200290 set(LINKER_SCRIPT ${CONFIG_CUSTOM_LINKER_SCRIPT})
Sebastian Bøec1aa9d12018-04-12 14:48:05 +0200291 assert_exists(CONFIG_CUSTOM_LINKER_SCRIPT)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200292 endif()
293else()
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 Cufi7d764b32018-01-11 15:46:44 +0100298 set(LINKER_SCRIPT ${ZEPHYR_BASE}/arch/${ARCH}/soc/${SOC_PATH}/linker.ld)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200299 endif()
300endif()
301
302if(NOT EXISTS ${LINKER_SCRIPT})
303 message(FATAL_ERROR "Could not find linker script: '${LINKER_SCRIPT}'. Corrupted configuration?")
304endif()
305
Kristian Klomsten Skordal0225e952018-01-30 11:26:42 +0100306# 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.
309if(CONFIG_CUSTOM_RODATA_LD OR CONFIG_CUSTOM_RWDATA_LD OR CONFIG_CUSTOM_SECTIONS_LD)
310 zephyr_include_directories(${APPLICATION_SOURCE_DIR})
311endif()
312
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200313configure_file(version.h.in ${PROJECT_BINARY_DIR}/include/generated/version.h)
314
Sebastian Bøe6f946e22018-01-09 10:52:57 +0100315# 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/.
331add_subdirectory(arch)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200332add_subdirectory(lib)
333add_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
337include(misc/generated/CMakeLists.txt)
338add_subdirectory(boards)
339add_subdirectory(ext)
340add_subdirectory(subsys)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200341add_subdirectory(drivers)
342add_subdirectory(tests)
343
Sebastian Bøe2ead15d2017-11-29 17:46:37 +0100344set(syscall_macros_h ${ZEPHYR_BINARY_DIR}/include/generated/syscall_macros.h)
345
346add_custom_target(syscall_macros_h_target DEPENDS ${syscall_macros_h})
347add_custom_command( OUTPUT ${syscall_macros_h}
348 COMMAND
349 ${PYTHON_EXECUTABLE}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200350 ${ZEPHYR_BASE}/scripts/gen_syscall_header.py
Sebastian Bøe2ead15d2017-11-29 17:46:37 +0100351 > ${syscall_macros_h}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200352 DEPENDS ${ZEPHYR_BASE}/scripts/gen_syscall_header.py
Sebastian Bøe2ead15d2017-11-29 17:46:37 +0100353 )
354
Sebastian Bøe13a68402017-11-20 13:03:55 +0100355
356set(syscall_list_h ${CMAKE_CURRENT_BINARY_DIR}/include/generated/syscall_list.h)
357set(syscalls_json ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls.json)
358
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200359# 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.
363set(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.
368set(syscalls_subdirs_trigger ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_subdirs.trigger)
369
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200370if(NOT (${CMAKE_HOST_SYSTEM_NAME} STREQUAL Windows))
371 set(syscalls_links --create-links ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_links)
372endif()
373
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200374# When running CMake it must be ensured that all dependencies are correctly acquired.
375execute_process(
376 COMMAND
377 ${PYTHON_EXECUTABLE}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200378 ${ZEPHYR_BASE}/scripts/subfolder_list.py
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200379 --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 Rasmussenf38e3882018-06-07 15:50:31 +0200384file(STRINGS ${syscalls_subdirs_txt} PARSE_SYSCALLS_PATHS_DEPENDS)
385
386if(${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 Tereschenko3c1a78e2018-06-14 20:21:18 +0200393 file(GLOB_RECURSE PARSE_SYSCALLS_HEADER_DEPENDS ${ZEPHYR_BASE}/include/*.h)
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200394else()
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 Rasmussen080e32e2018-06-14 22:27:17 +0200398 # Without this code, CMake will fail with the following error:
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200399 # <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 Rasmussen080e32e2018-06-14 22:27:17 +0200404 )
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200405
406 add_custom_command(
407 OUTPUT
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200408 ${syscalls_subdirs_trigger}
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200409 COMMAND
410 ${PYTHON_EXECUTABLE}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200411 ${ZEPHYR_BASE}/scripts/subfolder_list.py
412 --directory ${ZEPHYR_BASE}/include # Walk this directory
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200413 --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 Rasmussenf38e3882018-06-07 15:50:31 +0200416 DEPENDS ${PARSE_SYSCALLS_PATHS_DEPENDS}
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200417 )
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200418
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200419 # Ensure subdir file always exists when specifying CMake dependency.
420 if(NOT EXISTS ${syscalls_subdirs_txt})
421 file(WRITE ${syscalls_subdirs_txt} "")
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200422 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 Rasmussen080e32e2018-06-14 22:27:17 +0200428 set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${syscalls_subdirs_txt})
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200429endif()
430
Adithya Baglodye67720b2018-07-02 14:59:19 +0530431# SYSCALL_INCLUDE_DIRECTORY will include the directories that needs to be
432# searched for syscall declarations if CONFIG_APPLICATION_DEFINED_SYSCALL is set
433if(CONFIG_APPLICATION_DEFINED_SYSCALL)
434 set(SYSCALL_INCLUDE_DIRECTORY --include ${APPLICATION_SOURCE_DIR})
435endif()
436
Sebastian Bøe13a68402017-11-20 13:03:55 +0100437add_custom_command(
438 OUTPUT
439 ${syscalls_json}
440 COMMAND
441 ${PYTHON_EXECUTABLE}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200442 ${ZEPHYR_BASE}/scripts/parse_syscalls.py
Adithya Baglodye67720b2018-07-02 14:59:19 +0530443 --include ${ZEPHYR_BASE}/include # Read files from this dir
444 ${SYSCALL_INCLUDE_DIRECTORY}
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200445 --json-file ${syscalls_json} # Write this file
446 DEPENDS ${syscalls_subdirs_trigger} ${PARSE_SYSCALLS_HEADER_DEPENDS}
Sebastian Bøe13a68402017-11-20 13:03:55 +0100447 )
448
449add_custom_target(syscall_list_h_target DEPENDS ${syscall_list_h})
450add_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 Tereschenko3c1a78e2018-06-14 20:21:18 +0200454 ${ZEPHYR_BASE}/scripts/gen_syscalls.py
Sebastian Bøe13a68402017-11-20 13:03:55 +0100455 --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 Pereirac2003672018-04-04 13:50:32 -0700463set(DRV_VALIDATION ${PROJECT_BINARY_DIR}/include/generated/driver-validation.h)
464add_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 )
473add_custom_target(driver_validation_h_target DEPENDS ${DRV_VALIDATION})
474
Leandro Pereira39dc7d02018-04-05 13:59:33 -0700475include($ENV{ZEPHYR_BASE}/cmake/kobj.cmake)
476gen_kobj(KOBJ_INCLUDE_PATH)
Leandro Pereirac2003672018-04-04 13:50:32 -0700477
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200478# Generate offsets.c.obj from offsets.c
479# Generate offsets.h from offsets.c.obj
480
Carles Cufi7d764b32018-01-11 15:46:44 +0100481set(OFFSETS_C_PATH ${ZEPHYR_BASE}/arch/${ARCH}/core/offsets/offsets.c)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200482set(OFFSETS_O_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/offsets.dir/arch/${ARCH}/core/offsets/offsets.c.obj)
483set(OFFSETS_H_PATH ${PROJECT_BINARY_DIR}/include/generated/offsets.h)
484
Sebastian Bøe13a68402017-11-20 13:03:55 +0100485add_library( offsets STATIC ${OFFSETS_C_PATH})
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200486target_link_libraries(offsets zephyr_interface)
Sebastian Bøe13a68402017-11-20 13:03:55 +0100487add_dependencies( offsets
488 syscall_list_h_target
489 syscall_macros_h_target
Leandro Pereirac2003672018-04-04 13:50:32 -0700490 driver_validation_h_target
Leandro Pereira39dc7d02018-04-05 13:59:33 -0700491 kobj_types_h_target
Sebastian Bøe13a68402017-11-20 13:03:55 +0100492 )
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200493
494add_custom_command(
495 OUTPUT ${OFFSETS_H_PATH}
Carles Cufi7d764b32018-01-11 15:46:44 +0100496 COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/gen_offset_header.py
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200497 -i ${OFFSETS_O_PATH}
498 -o ${OFFSETS_H_PATH}
499 DEPENDS offsets
500)
501add_custom_target(offsets_h DEPENDS ${OFFSETS_H_PATH})
502
503zephyr_include_directories(${TOOLCHAIN_INCLUDES})
504
Sebastian Bøe89516fb2017-12-01 15:25:06 +0100505zephyr_get_include_directories_for_lang(C ZEPHYR_INCLUDES)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200506
507add_subdirectory(kernel)
508
509# Read list content
510get_property(ZEPHYR_LIBS_PROPERTY GLOBAL PROPERTY ZEPHYR_LIBS)
511
512foreach(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øe4ece94d2017-12-05 13:22:19 +0100515
Sebastian Bøe64edbaf2018-01-09 12:45:19 +0100516 # 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øe4ece94d2017-12-05 13:22:19 +0100521 if(lib_sources STREQUAL lib_sources-NOTFOUND
522 AND (NOT (${zephyr_lib} STREQUAL app))
Sebastian Bøe64edbaf2018-01-09 12:45:19 +0100523 AND (NOT lib_imported)
Sebastian Bøe4ece94d2017-12-05 13:22:19 +0100524 )
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 "\
528The Zephyr library '${zephyr_lib}' was created without source files. \
Sebastian Bøe64edbaf2018-01-09 12:45:19 +0100529Empty (non-imported) libraries are not supported. \
Sebastian Bøe4ece94d2017-12-05 13:22:19 +0100530Either make sure that the library has the sources it should have, \
531or make sure it is not created when it has no source files.")
532 endif()
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200533endforeach()
534
535get_property(OUTPUT_FORMAT GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT)
536
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200537get_property(LINKER_SCRIPT_DEFINES GLOBAL PROPERTY PROPERTY_LINKER_SCRIPT_DEFINES)
538
539if(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øe1c2de102018-01-02 15:54:16 +0100608 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øe12f8f762017-10-27 15:43:34 +0200619 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()
630endif() # CONFIG_APPLICATION_MEMORY
631
Andy Grosse8860fe2018-02-01 01:12:32 -0600632# Declare MPU userspace dependencies before the linker scripts to make
633# sure the order of dependencies are met
634if(CONFIG_CPU_HAS_MPU AND CONFIG_USERSPACE)
Shawn Mosley573f32b2018-04-26 10:14:02 -0400635 if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APP_SHARED_MEM )
636 set(APP_SMEM_DEP app_smem_linker)
637 endif()
Andy Grosse1fc5c22018-02-15 08:07:17 -0600638 if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APPLICATION_MEMORY)
Andy Grosse8860fe2018-02-01 01:12:32 -0600639 set(ALIGN_SIZING_DEP app_sizing_prebuilt linker_app_sizing_script)
640 endif()
Wayne Ren5a0ba2f2018-02-12 19:17:04 +0800641 if(CONFIG_ARM)
Chunlin Han18560a02018-02-01 01:19:49 -0600642 set(PRIV_STACK_DEP priv_stacks_prebuilt)
Wayne Ren5a0ba2f2018-02-12 19:17:04 +0800643 endif()
Andy Grosse8860fe2018-02-01 01:12:32 -0600644endif()
645
Andy Gross1f0ff062018-01-25 11:07:03 -0600646function(construct_add_custom_command_for_linker_pass linker_output_name output_variable)
647 set(linker_cmd_file_name ${linker_output_name}.cmd)
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100648
Andy Gross1f0ff062018-01-25 11:07:03 -0600649 if (${linker_output_name} MATCHES "^linker_pass_final$")
650 set(LINKER_PASS_DEFINE -DLINKER_PASS2)
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100651 else()
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100652 set(LINKER_PASS_DEFINE "")
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100653 endif()
654
Sebastian Bøea0b91292017-12-31 10:56:32 +0100655 # 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øeb85dd3c2017-12-31 10:39:23 +0100671 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øe8062a882018-01-03 16:02:49 +0100683 -E ${LINKER_SCRIPT}
684 -P # Prevent generation of debug `#line' directives.
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100685 -o ${linker_cmd_file_name}
686 VERBATIM
687 WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
688
689 PARENT_SCOPE
690 )
691endfunction()
692
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200693get_filename_component(BASE_NAME ${CMAKE_CURRENT_BINARY_DIR} NAME)
Andy Gross1f0ff062018-01-25 11:07:03 -0600694construct_add_custom_command_for_linker_pass(linker custom_command)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200695add_custom_command(
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100696 ${custom_command}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200697)
Andy Grosse8860fe2018-02-01 01:12:32 -0600698
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200699add_custom_target(
700 linker_script
701 DEPENDS
Chunlin Han18560a02018-02-01 01:19:49 -0600702 ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200703 linker.cmd
704 offsets_h
Sebastian Bøeb1ab5012017-12-14 13:03:23 +0100705 )
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.
710zephyr_get_include_directories_for_lang(C
711 ZEPHYR_INCLUDE_DIRS
712 STRIP_PREFIX # Don't use a -I prefix
713 )
714set_property(TARGET
715 linker_script
716 PROPERTY INCLUDE_DIRECTORIES
717 ${ZEPHYR_INCLUDE_DIRS}
718 )
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200719
720set(zephyr_lnk
721 ${LINKERFLAGPREFIX},-Map=${PROJECT_BINARY_DIR}/${KERNEL_MAP_NAME}
722 -u_OffsetAbsSyms
723 -u_ConfigAbsSyms
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200724 ${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
736if(CONFIG_GEN_ISR_TABLES)
Rajavardhan Gundi08172cd2017-12-12 23:29:37 +0530737 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øe12f8f762017-10-27 15:43:34 +0200745 # 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 Cufi7d764b32018-01-11 15:46:44 +0100756 ${ZEPHYR_BASE}/arch/common/gen_isr_tables.py
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200757 --output-source isr_tables.c
Rajavardhan Gundi1e6adba2017-12-24 15:18:57 +0530758 --kernel $<TARGET_FILE:zephyr_prebuilt>
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200759 --intlist isrList.bin
Sebastian Bøea55279a2018-01-04 14:08:39 +0100760 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--debug>
Rajavardhan Gundi08172cd2017-12-12 23:29:37 +0530761 ${GEN_ISR_TABLE_EXTRA_ARG}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200762 DEPENDS zephyr_prebuilt
763 )
764 set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_SOURCE_FILES isr_tables.c)
765endif()
766
Chunlin Han18560a02018-02-01 01:19:49 -0600767if(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 Gross878f39c2018-05-01 01:10:26 -0500807 DEPENDS priv_stacks ${PRIV_STACKS}
Chunlin Han18560a02018-02-01 01:19:49 -0600808 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øe1b600702018-06-21 14:34:42 +0200820 ${PYTHON_EXECUTABLE}
Chunlin Han18560a02018-02-01 01:19:49 -0600821 ${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 Gross878f39c2018-05-01 01:10:26 -0500826 DEPENDS priv_stacks_output_src_pre ${PRIV_STACKS_OUTPUT_SRC_PRE}
Chunlin Han18560a02018-02-01 01:19:49 -0600827 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)
879endif()
880
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200881if(CONFIG_USERSPACE)
Carles Cufi7d764b32018-01-11 15:46:44 +0100882 set(GEN_KOBJ_LIST ${ZEPHYR_BASE}/scripts/gen_kobject_list.py)
883 set(PROCESS_GPERF ${ZEPHYR_BASE}/scripts/process_gperf.py)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200884
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 Pereirac2003672018-04-04 13:50:32 -0700906 --gperf-output ${OBJ_LIST}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200907 $<$<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øef5758b52018-01-31 10:42:46 +0100921 DEPENDS obj_list ${OBJ_LIST}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200922 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øe1b600702018-06-21 14:34:42 +0200934 ${PYTHON_EXECUTABLE}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200935 ${PROCESS_GPERF}
936 -i ${OUTPUT_SRC_PRE}
937 -o ${OUTPUT_SRC}
Chunlin Han18560a02018-02-01 01:19:49 -0600938 -p "struct _k_object"
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200939 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
Sebastian Bøef5758b52018-01-31 10:42:46 +0100940 DEPENDS output_src_pre ${OUTPUT_SRC_PRE}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200941 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 Baglodyce9a5a22018-01-29 15:58:51 +0530952 # always compile kobject_hash.c at optimization -Os
953 set_source_files_properties(${OUTPUT_SRC} PROPERTIES COMPILE_FLAGS -Os)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200954 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)
994endif()
995
996# Read global variables into local variables
997get_property(GKOF GLOBAL PROPERTY GENERATED_KERNEL_OBJECT_FILES)
998get_property(GKSF GLOBAL PROPERTY GENERATED_KERNEL_SOURCE_FILES)
999
Alberto Escolar Piedras76f764412017-10-03 16:31:55 +02001000get_property(TOPT GLOBAL PROPERTY TOPT)
1001set_ifndef( TOPT -T)
1002
Alberto Escolar Piedrasc2882412018-07-05 10:51:03 +02001003get_property(CSTD GLOBAL PROPERTY CSTD)
1004set_ifndef(CSTD c99)
1005
1006zephyr_compile_options(
1007 $<$<COMPILE_LANGUAGE:C>:-std=${CSTD}>
1008)
1009
Andy Grosse8860fe2018-02-01 01:12:32 -06001010configure_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 Mosley573f32b2018-04-26 10:14:02 -04001014configure_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 Grosse8860fe2018-02-01 01:12:32 -06001018if(CONFIG_CPU_HAS_MPU AND CONFIG_USERSPACE)
1019
Shawn Mosley573f32b2018-04-26 10:14:02 -04001020 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 Grosse1fc5c22018-02-15 08:07:17 -06001041 if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APPLICATION_MEMORY)
Andy Grosse8860fe2018-02-01 01:12:32 -06001042
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 Mosley573f32b2018-04-26 10:14:02 -04001069 add_dependencies( app_sizing_prebuilt linker_app_sizing_script offsets )
Andy Grosse8860fe2018-02-01 01:12:32 -06001070
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 Han18560a02018-02-01 01:19:49 -06001081
Wayne Ren5a0ba2f2018-02-12 19:17:04 +08001082if(CONFIG_ARM)
Chunlin Han18560a02018-02-01 01:19:49 -06001083 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 Ren5a0ba2f2018-02-12 19:17:04 +08001107endif()
Chunlin Han18560a02018-02-01 01:19:49 -06001108
Andy Grosse8860fe2018-02-01 01:12:32 -06001109endif()
1110
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001111# FIXME: Is there any way to get rid of empty_file.c?
1112add_executable( zephyr_prebuilt misc/empty_file.c)
Chunlin Han18560a02018-02-01 01:19:49 -06001113target_link_libraries(zephyr_prebuilt ${TOPT} ${PROJECT_BINARY_DIR}/linker.cmd ${PRIV_STACK_LIB} ${zephyr_lnk})
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001114set_property(TARGET zephyr_prebuilt PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker.cmd)
Chunlin Han18560a02018-02-01 01:19:49 -06001115add_dependencies( zephyr_prebuilt ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} linker_script offsets)
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001116
Alberto Escolar Piedras76f764412017-10-03 16:31:55 +02001117
1118if(NOT CONFIG_NATIVE_APPLICATION)
1119 set(NOSTDINC_F -nostdinc)
1120endif()
1121
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001122if(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øeb85dd3c2017-12-31 10:39:23 +01001126 # first pass (LINKER_SCRIPT), but this time with a different output
1127 # file and preprocessed with the define LINKER_PASS2.
Andy Gross1f0ff062018-01-25 11:07:03 -06001128 construct_add_custom_command_for_linker_pass(linker_pass_final custom_command)
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001129 add_custom_command(
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +01001130 ${custom_command}
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001131 )
Andy Grosse8860fe2018-02-01 01:12:32 -06001132
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001133 add_custom_target(
Andy Gross1f0ff062018-01-25 11:07:03 -06001134 linker_pass_final_script
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001135 DEPENDS
Chunlin Han18560a02018-02-01 01:19:49 -06001136 ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP}
Andy Grosse8860fe2018-02-01 01:12:32 -06001137 zephyr_prebuilt
Andy Gross1f0ff062018-01-25 11:07:03 -06001138 linker_pass_final.cmd
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001139 offsets_h
1140 )
Sebastian Bøeb1ab5012017-12-14 13:03:23 +01001141 set_property(TARGET
Andy Gross1f0ff062018-01-25 11:07:03 -06001142 linker_pass_final_script
Sebastian Bøeb1ab5012017-12-14 13:03:23 +01001143 PROPERTY INCLUDE_DIRECTORIES
1144 ${ZEPHYR_INCLUDE_DIRS}
1145 )
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001146
1147 add_executable( kernel_elf misc/empty_file.c ${GKSF})
Andy Gross1f0ff062018-01-25 11:07:03 -06001148 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 Mosley573f32b2018-04-26 10:14:02 -04001150 add_dependencies( kernel_elf ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} ${APP_SMEM_DEP} linker_pass_final_script)
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001151else()
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.
1155endif()
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.
1159set_target_properties(${logical_target_for_zephyr_elf} PROPERTIES OUTPUT_NAME ${KERNEL_NAME})
1160
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001161set(post_build_commands "")
1162
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001163list_append_ifdef(CONFIG_CHECK_LINK_MAP
1164 post_build_commands
Carles Cufi7d764b32018-01-11 15:46:44 +01001165 COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/check_link_map.py ${KERNEL_MAP_NAME}
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001166 )
1167
1168list_append_ifdef(
1169 CONFIG_BUILD_OUTPUT_HEX
1170 post_build_commands
Walter Xie6b836d62018-07-10 11:39:52 +08001171 COMMAND ${CMAKE_OBJCOPY} -S -Oihex --gap-fill 0xFF -R .comment -R COMMON -R .eh_frame ${KERNEL_ELF_NAME} ${KERNEL_HEX_NAME}
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001172 )
1173
1174list_append_ifdef(
1175 CONFIG_BUILD_OUTPUT_BIN
1176 post_build_commands
Walter Xie6b836d62018-07-10 11:39:52 +08001177 COMMAND ${CMAKE_OBJCOPY} -S -Obinary --gap-fill 0xFF -R .comment -R COMMON -R .eh_frame ${KERNEL_ELF_NAME} ${KERNEL_BIN_NAME}
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001178 )
Anas Nashif4592ff22017-11-23 07:54:26 -05001179
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001180list_append_ifdef(
1181 CONFIG_BUILD_OUTPUT_S19
1182 post_build_commands
Walter Xie6b836d62018-07-10 11:39:52 +08001183 COMMAND ${CMAKE_OBJCOPY} --gap-fill 0xFF --srec-len 1 --output-target=srec ${KERNEL_ELF_NAME} ${KERNEL_S19_NAME}
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001184 )
1185
1186list_append_ifdef(
Anas Nashif1f1143a2017-11-22 13:03:53 -05001187 CONFIG_OUTPUT_DISASSEMBLY
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001188 post_build_commands
1189 COMMAND ${CMAKE_OBJDUMP} -S ${KERNEL_ELF_NAME} > ${KERNEL_LST_NAME}
1190 )
1191
1192list_append_ifdef(
Anas Nashif1f1143a2017-11-22 13:03:53 -05001193 CONFIG_OUTPUT_STAT
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001194 post_build_commands
1195 COMMAND ${CMAKE_READELF} -e ${KERNEL_ELF_NAME} > ${KERNEL_STAT_NAME}
1196 )
1197
1198list_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 Nashif4592ff22017-11-23 07:54:26 -05001204list_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øe12f8f762017-10-27 15:43:34 +02001210add_custom_command(
1211 TARGET ${logical_target_for_zephyr_elf}
1212 POST_BUILD
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001213 ${post_build_commands}
1214 COMMENT "Generating files from zephyr.elf for board: ${BOARD}"
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001215 # NB: COMMENT only works for some CMake-Generators
1216)
1217
Sebastian Bøedbdd7222017-12-19 13:20:10 +01001218if(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øeba0b2832017-12-21 10:16:43 +01001226
Sebastian Bøec34b7a32017-12-27 15:21:54 +01001227 set(SAVED_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
Sebastian Bøeba0b2832017-12-21 10:16:43 +01001228 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${option}")
Sebastian Bøe71b849f2018-04-17 15:08:58 +02001229 zephyr_check_compiler_flag(C "" ${check})
Sebastian Bøec34b7a32017-12-27 15:21:54 +01001230 set(CMAKE_REQUIRED_FLAGS ${SAVED_CMAKE_REQUIRED_FLAGS})
Sebastian Bøeba0b2832017-12-21 10:16:43 +01001231
Sebastian Bøedbdd7222017-12-19 13:20:10 +01001232 target_link_libraries_ifdef(${check} zephyr_prebuilt ${option})
1233endif()
1234
Anas Nashifc15d3c92017-11-21 18:54:55 -05001235if(EMU_PLATFORM)
Carles Cufi7d764b32018-01-11 15:46:44 +01001236 include(${ZEPHYR_BASE}/cmake/emu/${EMU_PLATFORM}.cmake)
Anas Nashiffd276ae2017-12-21 16:45:45 -05001237else()
1238 add_custom_target(run
1239 COMMAND
1240 ${CMAKE_COMMAND} -E echo
1241 "==================================================="
1242 "Emulation/Simulation not supported with this board."
1243 "==================================================="
1244 )
Anas Nashifc15d3c92017-11-21 18:54:55 -05001245endif()
1246
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001247add_subdirectory(cmake/flash)
1248
1249add_subdirectory(cmake/usage)
1250add_subdirectory(cmake/reports)
1251
Andrew Boie411686f2018-05-24 13:18:36 -07001252if(CONFIG_ASSERT AND (NOT CONFIG_FORCE_NO_ASSERT))
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001253 message(WARNING "
1254 ------------------------------------------------------------
1255 --- WARNING: __ASSERT() statements are globally ENABLED ---
Ioannis Glaropoulosf90416c2018-05-31 11:05:12 +02001256 --- The kernel will run more slowly and use more memory ---
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001257 ------------------------------------------------------------"
1258)
1259endif()
1260
1261if(CONFIG_BOARD_DEPRECATED)
1262 message(WARNING "
1263 WARNING: The board '${BOARD}' is deprecated and will be
1264 removed in version ${CONFIG_BOARD_DEPRECATED}"
1265)
1266endif()
Andrew Boiedf48e112018-01-12 09:54:24 -08001267
1268if(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)
1275endif()