blob: 5ec15dd169c985b1d1df779d68ca770d91b0ac80 [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
Anas Nashif96455d52018-09-04 14:34:06 -050053 ${SOC_DIR}/${ARCH}/${SOC_PATH}
54 ${SOC_DIR}/${ARCH}/${SOC_PATH}/include
55 ${SOC_DIR}/${ARCH}/${SOC_FAMILY}/include
Sebastian Bøe12f8f762017-10-27 15:43:34 +020056 ${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
Anas Nashif96455d52018-09-04 14:34:06 -0500298 set(LINKER_SCRIPT ${SOC_DIR}/${ARCH}/${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)
Anas Nashif3d1252f2018-09-03 15:20:14 -0500338
Erwan Gouriouba31cb52018-09-13 16:25:53 +0200339if(EXISTS ${SOC_DIR}/${ARCH}/CMakeLists.txt)
Anas Nashif96455d52018-09-04 14:34:06 -0500340 add_subdirectory(${SOC_DIR}/${ARCH} soc/${ARCH})
Anas Nashif3d1252f2018-09-03 15:20:14 -0500341else()
Anas Nashif96455d52018-09-04 14:34:06 -0500342 add_subdirectory(${SOC_DIR}/${ARCH}/${SOC_PATH} soc/${ARCH}/${SOC_PATH})
Anas Nashif3d1252f2018-09-03 15:20:14 -0500343endif()
344
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200345add_subdirectory(boards)
346add_subdirectory(ext)
347add_subdirectory(subsys)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200348add_subdirectory(drivers)
349add_subdirectory(tests)
350
Sebastian Bøe2ead15d2017-11-29 17:46:37 +0100351set(syscall_macros_h ${ZEPHYR_BINARY_DIR}/include/generated/syscall_macros.h)
352
353add_custom_target(syscall_macros_h_target DEPENDS ${syscall_macros_h})
354add_custom_command( OUTPUT ${syscall_macros_h}
355 COMMAND
356 ${PYTHON_EXECUTABLE}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200357 ${ZEPHYR_BASE}/scripts/gen_syscall_header.py
Sebastian Bøe2ead15d2017-11-29 17:46:37 +0100358 > ${syscall_macros_h}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200359 DEPENDS ${ZEPHYR_BASE}/scripts/gen_syscall_header.py
Sebastian Bøe2ead15d2017-11-29 17:46:37 +0100360 )
361
Sebastian Bøe13a68402017-11-20 13:03:55 +0100362
363set(syscall_list_h ${CMAKE_CURRENT_BINARY_DIR}/include/generated/syscall_list.h)
364set(syscalls_json ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls.json)
365
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200366# The syscalls subdirs txt file is constructed by python containing a list of folders to use for
367# dependency handling, including empty folders.
368# Windows: The list is used to specify DIRECTORY list with CMAKE_CONFIGURE_DEPENDS attribute.
369# Other OS: The list will update whenever a file is added/removed/modified and ensure a re-build.
370set(syscalls_subdirs_txt ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_subdirs.txt)
371
372# As syscalls_subdirs_txt is updated whenever a file is modified, this file can not be used for
373# monitoring of added / removed folders. A trigger file is thus used for correct dependency
374# handling. The trigger file will update when a folder is added / removed.
375set(syscalls_subdirs_trigger ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_subdirs.trigger)
376
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200377if(NOT (${CMAKE_HOST_SYSTEM_NAME} STREQUAL Windows))
378 set(syscalls_links --create-links ${CMAKE_CURRENT_BINARY_DIR}/misc/generated/syscalls_links)
379endif()
380
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200381# When running CMake it must be ensured that all dependencies are correctly acquired.
382execute_process(
383 COMMAND
384 ${PYTHON_EXECUTABLE}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200385 ${ZEPHYR_BASE}/scripts/subfolder_list.py
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200386 --directory ${ZEPHYR_BASE}/include # Walk this directory
387 --out-file ${syscalls_subdirs_txt} # Write file with discovered folder
388 --trigger ${syscalls_subdirs_trigger} # Trigger file that is used for json generation
389 ${syscalls_links} # If defined, create symlinks for dependencies
390)
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200391file(STRINGS ${syscalls_subdirs_txt} PARSE_SYSCALLS_PATHS_DEPENDS)
392
393if(${CMAKE_HOST_SYSTEM_NAME} STREQUAL Windows)
394 # On windows only adding/removing files or folders will be reflected in depends.
395 # Hence adding a file requires CMake to re-run to add this file to the file list.
396 set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${PARSE_SYSCALLS_PATHS_DEPENDS})
397
398 # Also On Windows each header file must be monitored as file modifications are not reflected
399 # on directory level.
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200400 file(GLOB_RECURSE PARSE_SYSCALLS_HEADER_DEPENDS ${ZEPHYR_BASE}/include/*.h)
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200401else()
402 # The syscall parsing depends on the folders in order to detect add/removed/modified files.
403 # When a folder is removed, CMake will try to find a target that creates that dependency.
404 # This command sets up the target for CMake to find.
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200405 # Without this code, CMake will fail with the following error:
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200406 # <folder> needed by '<target>', missing and no known rule to make it
407 # when a folder is removed.
408 add_custom_command(OUTPUT ${PARSE_SYSCALLS_PATHS_DEPENDS}
409 COMMAND ${CMAKE_COMMAND} -E echo ""
410 COMMENT "Preparing syscall dependency handling"
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200411 )
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200412
413 add_custom_command(
414 OUTPUT
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200415 ${syscalls_subdirs_trigger}
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200416 COMMAND
417 ${PYTHON_EXECUTABLE}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200418 ${ZEPHYR_BASE}/scripts/subfolder_list.py
419 --directory ${ZEPHYR_BASE}/include # Walk this directory
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200420 --out-file ${syscalls_subdirs_txt} # Write file with discovered folder
421 --trigger ${syscalls_subdirs_trigger} # Trigger file that is used for json generation
422 ${syscalls_links} # If defined, create symlinks for dependencies
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200423 DEPENDS ${PARSE_SYSCALLS_PATHS_DEPENDS}
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200424 )
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200425
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200426 # Ensure subdir file always exists when specifying CMake dependency.
427 if(NOT EXISTS ${syscalls_subdirs_txt})
428 file(WRITE ${syscalls_subdirs_txt} "")
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200429 endif()
430
431 # On other OS'es, modifying a file is reflected on the folder timestamp and hence detected
432 # when using depend on directory level.
433 # Thus CMake only needs to re-run when sub-directories are added / removed, which is indicated
434 # using a trigger file.
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200435 set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${syscalls_subdirs_txt})
Torsten Rasmussenf38e3882018-06-07 15:50:31 +0200436endif()
437
Adithya Baglodye67720b2018-07-02 14:59:19 +0530438# SYSCALL_INCLUDE_DIRECTORY will include the directories that needs to be
439# searched for syscall declarations if CONFIG_APPLICATION_DEFINED_SYSCALL is set
440if(CONFIG_APPLICATION_DEFINED_SYSCALL)
441 set(SYSCALL_INCLUDE_DIRECTORY --include ${APPLICATION_SOURCE_DIR})
442endif()
443
Sebastian Bøe13a68402017-11-20 13:03:55 +0100444add_custom_command(
445 OUTPUT
446 ${syscalls_json}
447 COMMAND
448 ${PYTHON_EXECUTABLE}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200449 ${ZEPHYR_BASE}/scripts/parse_syscalls.py
Adithya Baglodye67720b2018-07-02 14:59:19 +0530450 --include ${ZEPHYR_BASE}/include # Read files from this dir
451 ${SYSCALL_INCLUDE_DIRECTORY}
Torsten Rasmussen080e32e2018-06-14 22:27:17 +0200452 --json-file ${syscalls_json} # Write this file
453 DEPENDS ${syscalls_subdirs_trigger} ${PARSE_SYSCALLS_HEADER_DEPENDS}
Sebastian Bøe13a68402017-11-20 13:03:55 +0100454 )
455
456add_custom_target(syscall_list_h_target DEPENDS ${syscall_list_h})
457add_custom_command(OUTPUT include/generated/syscall_dispatch.c ${syscall_list_h}
458 # Also, some files are written to include/generated/syscalls/
459 COMMAND
460 ${PYTHON_EXECUTABLE}
Alex Tereschenko3c1a78e2018-06-14 20:21:18 +0200461 ${ZEPHYR_BASE}/scripts/gen_syscalls.py
Sebastian Bøe13a68402017-11-20 13:03:55 +0100462 --json-file ${syscalls_json} # Read this file
463 --base-output include/generated/syscalls # Write to this dir
464 --syscall-dispatch include/generated/syscall_dispatch.c # Write this file
Andrew Boie353acf42018-07-23 18:10:15 -0700465 --syscall-list ${syscall_list_h}
Sebastian Bøe13a68402017-11-20 13:03:55 +0100466 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
467 DEPENDS ${syscalls_json}
468 )
469
Leandro Pereirac2003672018-04-04 13:50:32 -0700470set(DRV_VALIDATION ${PROJECT_BINARY_DIR}/include/generated/driver-validation.h)
471add_custom_command(
472 OUTPUT ${DRV_VALIDATION}
473 COMMAND
474 ${PYTHON_EXECUTABLE}
475 ${ZEPHYR_BASE}/scripts/gen_kobject_list.py
476 --validation-output ${DRV_VALIDATION}
477 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
478 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
479 )
480add_custom_target(driver_validation_h_target DEPENDS ${DRV_VALIDATION})
481
Leandro Pereira39dc7d02018-04-05 13:59:33 -0700482include($ENV{ZEPHYR_BASE}/cmake/kobj.cmake)
483gen_kobj(KOBJ_INCLUDE_PATH)
Leandro Pereirac2003672018-04-04 13:50:32 -0700484
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200485# Generate offsets.c.obj from offsets.c
486# Generate offsets.h from offsets.c.obj
487
Carles Cufi7d764b32018-01-11 15:46:44 +0100488set(OFFSETS_C_PATH ${ZEPHYR_BASE}/arch/${ARCH}/core/offsets/offsets.c)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200489set(OFFSETS_O_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/offsets.dir/arch/${ARCH}/core/offsets/offsets.c.obj)
490set(OFFSETS_H_PATH ${PROJECT_BINARY_DIR}/include/generated/offsets.h)
491
Sebastian Bøe13a68402017-11-20 13:03:55 +0100492add_library( offsets STATIC ${OFFSETS_C_PATH})
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200493target_link_libraries(offsets zephyr_interface)
Sebastian Bøe13a68402017-11-20 13:03:55 +0100494add_dependencies( offsets
495 syscall_list_h_target
496 syscall_macros_h_target
Leandro Pereirac2003672018-04-04 13:50:32 -0700497 driver_validation_h_target
Leandro Pereira39dc7d02018-04-05 13:59:33 -0700498 kobj_types_h_target
Sebastian Bøe13a68402017-11-20 13:03:55 +0100499 )
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200500
501add_custom_command(
502 OUTPUT ${OFFSETS_H_PATH}
Carles Cufi7d764b32018-01-11 15:46:44 +0100503 COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/gen_offset_header.py
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200504 -i ${OFFSETS_O_PATH}
505 -o ${OFFSETS_H_PATH}
506 DEPENDS offsets
507)
508add_custom_target(offsets_h DEPENDS ${OFFSETS_H_PATH})
509
510zephyr_include_directories(${TOOLCHAIN_INCLUDES})
511
Sebastian Bøe89516fb2017-12-01 15:25:06 +0100512zephyr_get_include_directories_for_lang(C ZEPHYR_INCLUDES)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200513
514add_subdirectory(kernel)
515
516# Read list content
517get_property(ZEPHYR_LIBS_PROPERTY GLOBAL PROPERTY ZEPHYR_LIBS)
518
519foreach(zephyr_lib ${ZEPHYR_LIBS_PROPERTY})
520 # TODO: Could this become an INTERFACE property of zephyr_interface?
521 add_dependencies(${zephyr_lib} offsets_h)
Sebastian Bøe4ece94d2017-12-05 13:22:19 +0100522
Sebastian Bøe64edbaf2018-01-09 12:45:19 +0100523 # Verify that all (non-imported) libraries have source
524 # files. Libraries without source files are not supported because
525 # they are an indication that something has been misconfigured.
526 get_target_property(lib_imported ${zephyr_lib} IMPORTED)
527 get_target_property(lib_sources ${zephyr_lib} SOURCES)
Sebastian Bøe4ece94d2017-12-05 13:22:19 +0100528 if(lib_sources STREQUAL lib_sources-NOTFOUND
529 AND (NOT (${zephyr_lib} STREQUAL app))
Sebastian Bøe64edbaf2018-01-09 12:45:19 +0100530 AND (NOT lib_imported)
Sebastian Bøe4ece94d2017-12-05 13:22:19 +0100531 )
532 # app is not checked because it's sources are added to it after
533 # this CMakeLists.txt file has been processed
534 message(FATAL_ERROR "\
535The Zephyr library '${zephyr_lib}' was created without source files. \
Sebastian Bøe64edbaf2018-01-09 12:45:19 +0100536Empty (non-imported) libraries are not supported. \
Sebastian Bøe4ece94d2017-12-05 13:22:19 +0100537Either make sure that the library has the sources it should have, \
538or make sure it is not created when it has no source files.")
539 endif()
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200540endforeach()
541
542get_property(OUTPUT_FORMAT GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT)
543
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200544get_property(LINKER_SCRIPT_DEFINES GLOBAL PROPERTY PROPERTY_LINKER_SCRIPT_DEFINES)
545
546if(CONFIG_APPLICATION_MEMORY)
547 # Objects default to being in kernel space, and then we exclude
548 # certain items.
549 set(kernel_object_file_list
550 ${ZEPHYR_LIBS_PROPERTY}
551 kernel
552 )
553 list(
554 REMOVE_ITEM
555 kernel_object_file_list
556 app
557 )
558
559 # The zephyr libraries in zephyr/lib/ and zephyr/test/ belong in
560 # userspace.
561
562 # NB: The business logic for determing what source files are in
563 # kernel space and what source files are in user space is
564 # fragile. Fix ASAP.
565 #
566 # The intended design is that certain directories are designated as
567 # containing userspace code and others for kernel space code. The
568 # implementation we have however is not working on directories of
569 # code, it is working on zephyr libraries. It is exploiting the fact
570 # that zephyr libraries follow a naming scheme as described in
571 # extensions.cmake:zephyr_library_get_current_dir_lib_name
572 #
573 # But code from test/ and lib/ that is placed in the "zephyr"
574 # library (with zephyr_sources()) will not be in a library that is
575 # prefixed with lib__ or test__ and will end up in the wrong address
576 # space.
577 set(application_space_dirs
578 lib
579 tests
580 )
581 foreach(f ${kernel_object_file_list})
582 foreach(app_dir ${application_space_dirs})
583 if(${f} MATCHES "^${app_dir}__") # Begins with ${app_dir}__, e.g. lib__libc
584 list(
585 REMOVE_ITEM
586 kernel_object_file_list
587 ${f}
588 )
589 endif()
590 endforeach()
591 endforeach()
592
593 # Create a list ks, with relative paths to kernel space libs.
594 foreach(f ${kernel_object_file_list})
595 get_target_property(target_name ${f} NAME)
596 get_target_property(target_binary_dir ${f} BINARY_DIR)
597
598 string(REPLACE
599 ${PROJECT_BINARY_DIR}
600 ""
601 fixed_path
602 ${target_binary_dir}
603 )
604
605 # Append / if not empty
606 if(fixed_path)
607 set(fixed_path "${fixed_path}/")
608 endif()
609
610 # Cut off leading / if present
611 if(fixed_path MATCHES "^/.+")
612 string(SUBSTRING ${fixed_path} 1 -1 fixed_path)
613 endif()
614
Sebastian Bøe1c2de102018-01-02 15:54:16 +0100615 set(fixed_path "${fixed_path}lib${target_name}.a")
616
617 if(CMAKE_GENERATOR STREQUAL "Ninja")
618 # Ninja invokes the linker from the root of the build directory
619 # (APPLICATION_BINARY_DIR) instead of from the build/zephyr
620 # directory (PROJECT_BINARY_DIR). So for linker-defs.h to get
621 # the correct path we need to prefix with zephyr/.
622 set(fixed_path "zephyr/${fixed_path}")
623 endif()
624
625 list(APPEND ks ${fixed_path})
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200626 endforeach()
627
Sebastian Bøecbe7b4f2018-08-03 16:15:05 +0200628 # We are done constructing kernel_object_file_list, now we inject
629 # this list into the linker script through the define
630 # KERNELSPACE_OBJECT_FILES
631 set(def -DKERNELSPACE_OBJECT_FILES=)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200632 foreach(f ${ks})
Sebastian Bøecbe7b4f2018-08-03 16:15:05 +0200633 set(def "${def} ${f}")
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200634 endforeach()
Sebastian Bøecbe7b4f2018-08-03 16:15:05 +0200635 list(APPEND LINKER_SCRIPT_DEFINES ${def})
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200636endif() # CONFIG_APPLICATION_MEMORY
637
Andy Grosse8860fe2018-02-01 01:12:32 -0600638# Declare MPU userspace dependencies before the linker scripts to make
639# sure the order of dependencies are met
640if(CONFIG_CPU_HAS_MPU AND CONFIG_USERSPACE)
Shawn Mosley573f32b2018-04-26 10:14:02 -0400641 if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APP_SHARED_MEM )
642 set(APP_SMEM_DEP app_smem_linker)
643 endif()
Andy Grosse1fc5c22018-02-15 08:07:17 -0600644 if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APPLICATION_MEMORY)
Andy Grosse8860fe2018-02-01 01:12:32 -0600645 set(ALIGN_SIZING_DEP app_sizing_prebuilt linker_app_sizing_script)
646 endif()
Wayne Ren5a0ba2f2018-02-12 19:17:04 +0800647 if(CONFIG_ARM)
Chunlin Han18560a02018-02-01 01:19:49 -0600648 set(PRIV_STACK_DEP priv_stacks_prebuilt)
Wayne Ren5a0ba2f2018-02-12 19:17:04 +0800649 endif()
Andy Grosse8860fe2018-02-01 01:12:32 -0600650endif()
651
Andy Gross1f0ff062018-01-25 11:07:03 -0600652function(construct_add_custom_command_for_linker_pass linker_output_name output_variable)
653 set(linker_cmd_file_name ${linker_output_name}.cmd)
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100654
Andy Gross1f0ff062018-01-25 11:07:03 -0600655 if (${linker_output_name} MATCHES "^linker_pass_final$")
656 set(LINKER_PASS_DEFINE -DLINKER_PASS2)
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100657 else()
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100658 set(LINKER_PASS_DEFINE "")
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100659 endif()
660
Sebastian Bøea0b91292017-12-31 10:56:32 +0100661 # Different generators deal with depfiles differently.
662 if(CMAKE_GENERATOR STREQUAL "Unix Makefiles")
663 # Note that the IMPLICIT_DEPENDS option is currently supported only
664 # for Makefile generators and will be ignored by other generators.
665 set(LINKER_SCRIPT_DEP IMPLICIT_DEPENDS C ${LINKER_SCRIPT})
666 elseif(CMAKE_GENERATOR STREQUAL "Ninja")
667 # Using DEPFILE with other generators than Ninja is an error.
668 set(LINKER_SCRIPT_DEP DEPFILE ${PROJECT_BINARY_DIR}/${linker_cmd_file_name}.dep)
669 else()
670 # TODO: How would the linker script dependencies work for non-linker
671 # script generators.
672 message(STATUS "Warning; this generator is not well supported. The
673 Linker script may not be regenerated when it should.")
674 set(LINKER_SCRIPT_DEP "")
675 endif()
676
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100677 set(${output_variable}
678 OUTPUT ${linker_cmd_file_name}
679 DEPENDS ${LINKER_SCRIPT}
680 ${LINKER_SCRIPT_DEP}
681 COMMAND ${CMAKE_C_COMPILER}
682 -x assembler-with-cpp
683 ${NOSTDINC_F}
684 -undef
685 -MD -MF ${linker_cmd_file_name}.dep -MT ${BASE_NAME}/${linker_cmd_file_name}
686 ${ZEPHYR_INCLUDES}
687 ${LINKER_SCRIPT_DEFINES}
688 ${LINKER_PASS_DEFINE}
Sebastian Bøe8062a882018-01-03 16:02:49 +0100689 -E ${LINKER_SCRIPT}
690 -P # Prevent generation of debug `#line' directives.
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100691 -o ${linker_cmd_file_name}
692 VERBATIM
693 WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
694
695 PARENT_SCOPE
696 )
697endfunction()
698
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200699get_filename_component(BASE_NAME ${CMAKE_CURRENT_BINARY_DIR} NAME)
Andy Gross1f0ff062018-01-25 11:07:03 -0600700construct_add_custom_command_for_linker_pass(linker custom_command)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200701add_custom_command(
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +0100702 ${custom_command}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200703)
Andy Grosse8860fe2018-02-01 01:12:32 -0600704
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200705add_custom_target(
706 linker_script
707 DEPENDS
Chunlin Han18560a02018-02-01 01:19:49 -0600708 ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP}
Adithya Baglodyc69fb0d2018-08-04 19:48:52 +0530709 ${APP_SMEM_DEP}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200710 linker.cmd
711 offsets_h
Sebastian Bøeb1ab5012017-12-14 13:03:23 +0100712 )
713
714# Give the 'linker_script' target all of the include directories so
715# that cmake can successfully find the linker_script's header
716# dependencies.
717zephyr_get_include_directories_for_lang(C
718 ZEPHYR_INCLUDE_DIRS
719 STRIP_PREFIX # Don't use a -I prefix
720 )
721set_property(TARGET
722 linker_script
723 PROPERTY INCLUDE_DIRECTORIES
724 ${ZEPHYR_INCLUDE_DIRS}
725 )
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200726
727set(zephyr_lnk
728 ${LINKERFLAGPREFIX},-Map=${PROJECT_BINARY_DIR}/${KERNEL_MAP_NAME}
729 -u_OffsetAbsSyms
730 -u_ConfigAbsSyms
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200731 ${LINKERFLAGPREFIX},--whole-archive
732 ${ZEPHYR_LIBS_PROPERTY}
733 ${LINKERFLAGPREFIX},--no-whole-archive
734 kernel
735 ${OFFSETS_O_PATH}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200736 ${LIB_INCLUDE_DIR}
737 -L${PROJECT_BINARY_DIR}
738 ${TOOLCHAIN_LIBS}
739 )
740
741if(CONFIG_GEN_ISR_TABLES)
Rajavardhan Gundi08172cd2017-12-12 23:29:37 +0530742 if(CONFIG_GEN_SW_ISR_TABLE)
743 list(APPEND GEN_ISR_TABLE_EXTRA_ARG --sw-isr-table)
744 endif()
745
746 if(CONFIG_GEN_IRQ_VECTOR_TABLE)
747 list(APPEND GEN_ISR_TABLE_EXTRA_ARG --vector-table)
748 endif()
749
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200750 # isr_tables.c is generated from zephyr_prebuilt by
751 # gen_isr_tables.py
752 add_custom_command(
753 OUTPUT isr_tables.c
754 COMMAND ${CMAKE_OBJCOPY}
755 -I ${OUTPUT_FORMAT}
756 -O binary
757 --only-section=.intList
758 $<TARGET_FILE:zephyr_prebuilt>
759 isrList.bin
760 COMMAND ${PYTHON_EXECUTABLE}
Carles Cufi7d764b32018-01-11 15:46:44 +0100761 ${ZEPHYR_BASE}/arch/common/gen_isr_tables.py
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200762 --output-source isr_tables.c
Rajavardhan Gundi1e6adba2017-12-24 15:18:57 +0530763 --kernel $<TARGET_FILE:zephyr_prebuilt>
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200764 --intlist isrList.bin
Sebastian Bøea55279a2018-01-04 14:08:39 +0100765 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--debug>
Rajavardhan Gundi08172cd2017-12-12 23:29:37 +0530766 ${GEN_ISR_TABLE_EXTRA_ARG}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200767 DEPENDS zephyr_prebuilt
768 )
769 set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_SOURCE_FILES isr_tables.c)
770endif()
771
Chunlin Han18560a02018-02-01 01:19:49 -0600772if(CONFIG_ARM AND CONFIG_USERSPACE)
773 set(GEN_PRIV_STACKS $ENV{ZEPHYR_BASE}/scripts/gen_priv_stacks.py)
774 set(PROCESS_PRIV_STACKS_GPERF $ENV{ZEPHYR_BASE}/scripts/process_gperf.py)
775
776 set(PRIV_STACKS priv_stacks_hash.gperf)
777 set(PRIV_STACKS_OUTPUT_SRC_PRE priv_stacks_hash_preprocessed.c)
778 set(PRIV_STACKS_OUTPUT_SRC priv_stacks_hash.c)
779 set(PRIV_STACKS_OUTPUT_OBJ priv_stacks_hash.c.obj)
780 set(PRIV_STACKS_OUTPUT_OBJ_RENAMED priv_stacks_hash_renamed.o)
781
782 # Essentially what we are doing here is extracting some information
783 # out of the nearly finished elf file, generating the source code
784 # for a hash table based on that information, and then compiling and
785 # linking the hash table back into a now even more nearly finished
786 # elf file.
787
788 # Use the script GEN_PRIV_STACKS to scan the kernel binary's
789 # (zephyr_prebuilt) DWARF information to produce a table of kernel
790 # objects (PRIV_STACKS) which we will then pass to gperf
791 add_custom_command(
792 OUTPUT ${PRIV_STACKS}
793 COMMAND
794 ${PYTHON_EXECUTABLE}
795 ${GEN_PRIV_STACKS}
796 --kernel $<TARGET_FILE:priv_stacks_prebuilt>
797 --output ${PRIV_STACKS}
798 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
799 DEPENDS priv_stacks_prebuilt
800 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
801 )
802 add_custom_target(priv_stacks DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS})
803
804 # Use gperf to generate C code (PRIV_STACKS_OUTPUT_SRC_PRE) which implements a
805 # perfect hashtable based on PRIV_STACKS
806 add_custom_command(
807 OUTPUT ${PRIV_STACKS_OUTPUT_SRC_PRE}
808 COMMAND
809 ${GPERF} -C
810 --output-file ${PRIV_STACKS_OUTPUT_SRC_PRE}
811 ${PRIV_STACKS}
Andy Gross878f39c2018-05-01 01:10:26 -0500812 DEPENDS priv_stacks ${PRIV_STACKS}
Chunlin Han18560a02018-02-01 01:19:49 -0600813 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
814 )
815 add_custom_target(priv_stacks_output_src_pre DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_SRC_PRE})
816
817 # For our purposes the code/data generated by gperf is not optimal.
818 #
819 # The script PROCESS_GPERF creates a new c file OUTPUT_SRC based on
820 # OUTPUT_SRC_PRE to greatly reduce the amount of code/data generated
821 # since we know we are always working with pointer values
822 add_custom_command(
823 OUTPUT ${PRIV_STACKS_OUTPUT_SRC}
824 COMMAND
Sebastian Bøe1b600702018-06-21 14:34:42 +0200825 ${PYTHON_EXECUTABLE}
Chunlin Han18560a02018-02-01 01:19:49 -0600826 ${PROCESS_PRIV_STACKS_GPERF}
827 -i ${PRIV_STACKS_OUTPUT_SRC_PRE}
828 -o ${PRIV_STACKS_OUTPUT_SRC}
829 -p "struct _k_priv_stack_map"
830 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
Andy Gross878f39c2018-05-01 01:10:26 -0500831 DEPENDS priv_stacks_output_src_pre ${PRIV_STACKS_OUTPUT_SRC_PRE}
Chunlin Han18560a02018-02-01 01:19:49 -0600832 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
833 )
834 add_custom_target(priv_stacks_output_src DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_SRC})
835
836 # We need precise control of where generated text/data ends up in the final
837 # kernel image. Disable function/data sections and use objcopy to move
838 # generated data into special section names
839 add_library(priv_stacks_output_lib STATIC
840 ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_SRC}
841 )
842
843 target_link_libraries(priv_stacks_output_lib zephyr_interface)
844
845 # Turn off -ffunction-sections, etc.
846 # NB: Using a library instead of target_compile_options(priv_stacks_output_lib
847 # [...]) because a library's options have precedence
848 add_library(priv_stacks_output_lib_interface INTERFACE)
849 target_compile_options(priv_stacks_output_lib_interface INTERFACE
850 -fno-function-sections
851 -fno-data-sections
852 )
853 target_link_libraries(priv_stacks_output_lib priv_stacks_output_lib_interface)
854
855 set(PRIV_STACKS_OUTPUT_OBJ_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/priv_stacks_output_lib.dir/${PRIV_STACKS_OUTPUT_OBJ})
856
857 add_custom_command(
858 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_OBJ_RENAMED}
859 COMMAND
860 ${CMAKE_OBJCOPY}
861 --rename-section .bss=.priv_stacks.noinit
862 --rename-section .data=.priv_stacks.data
863 --rename-section .text=.priv_stacks.text
864 --rename-section .rodata=.priv_stacks.rodata
865 ${PRIV_STACKS_OUTPUT_OBJ_PATH}
866 ${PRIV_STACKS_OUTPUT_OBJ_RENAMED}
867 DEPENDS priv_stacks_output_lib
868 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
869 )
870 add_custom_target(priv_stacks_output_obj_renamed DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_OBJ_RENAMED})
871
872 add_library(priv_stacks_output_obj_renamed_lib STATIC IMPORTED GLOBAL)
873 set_property(
874 TARGET priv_stacks_output_obj_renamed_lib
875 PROPERTY
876 IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/${PRIV_STACKS_OUTPUT_OBJ_RENAMED}
877 )
878 add_dependencies(
879 priv_stacks_output_obj_renamed_lib
880 priv_stacks_output_obj_renamed
881 )
882
883 set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_OBJECT_FILES priv_stacks_output_obj_renamed_lib)
884endif()
885
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200886if(CONFIG_USERSPACE)
Carles Cufi7d764b32018-01-11 15:46:44 +0100887 set(GEN_KOBJ_LIST ${ZEPHYR_BASE}/scripts/gen_kobject_list.py)
888 set(PROCESS_GPERF ${ZEPHYR_BASE}/scripts/process_gperf.py)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200889
890 set(OBJ_LIST kobject_hash.gperf)
891 set(OUTPUT_SRC_PRE kobject_hash_preprocessed.c)
892 set(OUTPUT_SRC kobject_hash.c)
893 set(OUTPUT_OBJ kobject_hash.c.obj)
894 set(OUTPUT_OBJ_RENAMED kobject_hash_renamed.o)
895
896 # Essentially what we are doing here is extracting some information
897 # out of the nearly finished elf file, generating the source code
898 # for a hash table based on that information, and then compiling and
899 # linking the hash table back into a now even more nearly finished
900 # elf file.
901
902 # Use the script GEN_KOBJ_LIST to scan the kernel binary's
903 # (zephyr_prebuilt) DWARF information to produce a table of kernel
904 # objects (OBJ_LIST) which we will then pass to gperf
905 add_custom_command(
906 OUTPUT ${OBJ_LIST}
907 COMMAND
908 ${PYTHON_EXECUTABLE}
909 ${GEN_KOBJ_LIST}
910 --kernel $<TARGET_FILE:zephyr_prebuilt>
Leandro Pereirac2003672018-04-04 13:50:32 -0700911 --gperf-output ${OBJ_LIST}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200912 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
913 DEPENDS zephyr_prebuilt
914 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
915 )
916 add_custom_target(obj_list DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OBJ_LIST})
917
918 # Use gperf to generate C code (OUTPUT_SRC_PRE) which implements a
919 # perfect hashtable based on OBJ_LIST
920 add_custom_command(
921 OUTPUT ${OUTPUT_SRC_PRE}
922 COMMAND
923 ${GPERF}
924 --output-file ${OUTPUT_SRC_PRE}
925 ${OBJ_LIST}
Sebastian Bøef5758b52018-01-31 10:42:46 +0100926 DEPENDS obj_list ${OBJ_LIST}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200927 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
928 )
929 add_custom_target(output_src_pre DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_SRC_PRE})
930
931 # For our purposes the code/data generated by gperf is not optimal.
932 #
933 # The script PROCESS_GPERF creates a new c file OUTPUT_SRC based on
934 # OUTPUT_SRC_PRE to greatly reduce the amount of code/data generated
935 # since we know we are always working with pointer values
936 add_custom_command(
937 OUTPUT ${OUTPUT_SRC}
938 COMMAND
Sebastian Bøe1b600702018-06-21 14:34:42 +0200939 ${PYTHON_EXECUTABLE}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200940 ${PROCESS_GPERF}
941 -i ${OUTPUT_SRC_PRE}
942 -o ${OUTPUT_SRC}
Chunlin Han18560a02018-02-01 01:19:49 -0600943 -p "struct _k_object"
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200944 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
Sebastian Bøef5758b52018-01-31 10:42:46 +0100945 DEPENDS output_src_pre ${OUTPUT_SRC_PRE}
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200946 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
947 )
948 add_custom_target(output_src DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_SRC})
949
950 # We need precise control of where generated text/data ends up in the final
951 # kernel image. Disable function/data sections and use objcopy to move
952 # generated data into special section names
953 add_library(output_lib STATIC
954 ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_SRC}
955 )
956
Adithya Baglodyce9a5a22018-01-29 15:58:51 +0530957 # always compile kobject_hash.c at optimization -Os
958 set_source_files_properties(${OUTPUT_SRC} PROPERTIES COMPILE_FLAGS -Os)
Sebastian Bøe12f8f762017-10-27 15:43:34 +0200959 target_link_libraries(output_lib zephyr_interface)
960
961 # Turn off -ffunction-sections, etc.
962 # NB: Using a library instead of target_compile_options(output_lib
963 # [...]) because a library's options have precedence
964 add_library(output_lib_interface INTERFACE)
965 target_compile_options(output_lib_interface INTERFACE
966 -fno-function-sections
967 -fno-data-sections
968 )
969 target_link_libraries(output_lib output_lib_interface)
970
971 set(OUTPUT_OBJ_PATH ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/output_lib.dir/${OUTPUT_OBJ})
972
973 add_custom_command(
974 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_OBJ_RENAMED}
975 COMMAND
976 ${CMAKE_OBJCOPY}
977 --rename-section .data=.kobject_data.data
978 --rename-section .text=.kobject_data.text
979 --rename-section .rodata=.kobject_data.rodata
980 ${OUTPUT_OBJ_PATH}
981 ${OUTPUT_OBJ_RENAMED}
982 DEPENDS output_lib
983 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
984 )
985 add_custom_target(output_obj_renamed DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_OBJ_RENAMED})
986
987 add_library(output_obj_renamed_lib STATIC IMPORTED GLOBAL)
988 set_property(
989 TARGET output_obj_renamed_lib
990 PROPERTY
991 IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_OBJ_RENAMED}
992 )
993 add_dependencies(
994 output_obj_renamed_lib
995 output_obj_renamed
996 )
997
998 set_property(GLOBAL APPEND PROPERTY GENERATED_KERNEL_OBJECT_FILES output_obj_renamed_lib)
999endif()
1000
1001# Read global variables into local variables
1002get_property(GKOF GLOBAL PROPERTY GENERATED_KERNEL_OBJECT_FILES)
1003get_property(GKSF GLOBAL PROPERTY GENERATED_KERNEL_SOURCE_FILES)
1004
Alberto Escolar Piedras76f764412017-10-03 16:31:55 +02001005get_property(TOPT GLOBAL PROPERTY TOPT)
1006set_ifndef( TOPT -T)
1007
Alberto Escolar Piedrasc2882412018-07-05 10:51:03 +02001008get_property(CSTD GLOBAL PROPERTY CSTD)
1009set_ifndef(CSTD c99)
1010
1011zephyr_compile_options(
1012 $<$<COMPILE_LANGUAGE:C>:-std=${CSTD}>
1013)
1014
Andy Grosse8860fe2018-02-01 01:12:32 -06001015configure_file(
1016 $ENV{ZEPHYR_BASE}/include/arch/arm/cortex_m/scripts/app_data_alignment.ld
1017 ${PROJECT_BINARY_DIR}/include/generated/app_data_alignment.ld)
1018
Shawn Mosley573f32b2018-04-26 10:14:02 -04001019configure_file(
1020 $ENV{ZEPHYR_BASE}/include/arch/arm/cortex_m/scripts/app_smem.ld
1021 ${PROJECT_BINARY_DIR}/include/generated/app_smem.ld)
1022
Andy Grosse8860fe2018-02-01 01:12:32 -06001023if(CONFIG_CPU_HAS_MPU AND CONFIG_USERSPACE)
1024
Shawn Mosley573f32b2018-04-26 10:14:02 -04001025 if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APP_SHARED_MEM)
Shawn Mosley573f32b2018-04-26 10:14:02 -04001026 set(APP_SMEM_LD "${PROJECT_BINARY_DIR}/include/generated/app_smem.ld")
1027 set(OBJ_FILE_DIR "${PROJECT_BINARY_DIR}/../")
1028
1029 add_custom_target(
1030 ${APP_SMEM_DEP} ALL
Adithya Baglodyc69fb0d2018-08-04 19:48:52 +05301031 DEPENDS app
Adithya Baglodyc764e022018-09-19 11:28:27 +05301032 kernel
Shawn Mosley573f32b2018-04-26 10:14:02 -04001033 )
1034
1035 add_custom_command(
1036 TARGET ${APP_SMEM_DEP}
Adithya Baglodyc69fb0d2018-08-04 19:48:52 +05301037 COMMAND ${PYTHON_EXECUTABLE}
1038 ${ZEPHYR_BASE}/scripts/gen_app_partitions.py
Shawn Mosley573f32b2018-04-26 10:14:02 -04001039 -d ${OBJ_FILE_DIR}
1040 -o ${APP_SMEM_LD}
Adithya Baglodyc69fb0d2018-08-04 19:48:52 +05301041 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
Shawn Mosley573f32b2018-04-26 10:14:02 -04001042 WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/
1043 COMMENT "Generating power of 2 aligned app_smem linker section"
1044 )
1045 endif()
1046
1047
Andy Grosse1fc5c22018-02-15 08:07:17 -06001048 if(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT AND CONFIG_APPLICATION_MEMORY)
Andy Grosse8860fe2018-02-01 01:12:32 -06001049
1050 construct_add_custom_command_for_linker_pass(linker_app_sizing custom_command)
1051 add_custom_command(
1052 ${custom_command}
1053 )
1054
1055 add_custom_target(
1056 linker_app_sizing_script
1057 DEPENDS
1058 linker_app_sizing.cmd
1059 offsets_h
Adithya Baglodyc764e022018-09-19 11:28:27 +05301060 ${APP_SMEM_DEP}
Andy Grosse8860fe2018-02-01 01:12:32 -06001061 )
1062
1063 set_property(TARGET
1064 linker_app_sizing_script
1065 PROPERTY INCLUDE_DIRECTORIES
1066 ${ZEPHYR_INCLUDE_DIRS}
1067 )
1068
1069 # For systems with MPUs, the size of the application data section must
1070 # be determined so that MPU alignment requirements can be met.
1071 # Create a app_sizing_prebuilt target so we can do this before the
1072 # other ELF files are built
1073 set(GEN_APP_ALIGN $ENV{ZEPHYR_BASE}/scripts/gen_alignment_script.py)
1074 add_executable( app_sizing_prebuilt misc/empty_file.c)
1075 target_link_libraries(app_sizing_prebuilt ${TOPT} ${PROJECT_BINARY_DIR}/linker_app_sizing.cmd ${zephyr_lnk})
1076 set_property(TARGET app_sizing_prebuilt PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_app_sizing.cmd)
Shawn Mosley573f32b2018-04-26 10:14:02 -04001077 add_dependencies( app_sizing_prebuilt linker_app_sizing_script offsets )
Andy Grosse8860fe2018-02-01 01:12:32 -06001078
1079 add_custom_command(
1080 TARGET app_sizing_prebuilt
1081 POST_BUILD
1082 COMMAND ${PYTHON_EXECUTABLE} ${GEN_APP_ALIGN}
1083 --output ./include/generated/app_data_alignment.ld
1084 --kernel $<TARGET_FILE:app_sizing_prebuilt>
1085 VERBATIM
1086 WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/
1087 )
1088 endif()
Chunlin Han18560a02018-02-01 01:19:49 -06001089
Wayne Ren5a0ba2f2018-02-12 19:17:04 +08001090if(CONFIG_ARM)
Chunlin Han18560a02018-02-01 01:19:49 -06001091 construct_add_custom_command_for_linker_pass(linker_priv_stacks custom_command)
1092 add_custom_command(
1093 ${custom_command}
1094 )
1095
1096 add_custom_target(
1097 linker_priv_stacks_script
1098 DEPENDS
Adithya Baglodyd4b5ab62018-09-18 11:52:52 +05301099 ${ALIGN_SIZING_DEP} ${APP_SMEM_DEP}
Chunlin Han18560a02018-02-01 01:19:49 -06001100 linker_priv_stacks.cmd
1101 offsets_h
1102 )
1103
1104 set_property(TARGET
1105 linker_priv_stacks_script
1106 PROPERTY INCLUDE_DIRECTORIES
1107 ${ZEPHYR_INCLUDE_DIRS}
1108 )
1109
1110 set(PRIV_STACK_LIB priv_stacks_output_obj_renamed_lib)
1111 add_executable( priv_stacks_prebuilt misc/empty_file.c)
1112 target_link_libraries(priv_stacks_prebuilt ${TOPT} ${PROJECT_BINARY_DIR}/linker_priv_stacks.cmd ${zephyr_lnk})
1113 set_property(TARGET priv_stacks_prebuilt PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_priv_stacks.cmd)
1114 add_dependencies( priv_stacks_prebuilt ${ALIGN_SIZING_DEP} linker_priv_stacks_script offsets)
Wayne Ren5a0ba2f2018-02-12 19:17:04 +08001115endif()
Chunlin Han18560a02018-02-01 01:19:49 -06001116
Andy Grosse8860fe2018-02-01 01:12:32 -06001117endif()
1118
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001119# FIXME: Is there any way to get rid of empty_file.c?
1120add_executable( zephyr_prebuilt misc/empty_file.c)
Chunlin Han18560a02018-02-01 01:19:49 -06001121target_link_libraries(zephyr_prebuilt ${TOPT} ${PROJECT_BINARY_DIR}/linker.cmd ${PRIV_STACK_LIB} ${zephyr_lnk})
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001122set_property(TARGET zephyr_prebuilt PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker.cmd)
Chunlin Han18560a02018-02-01 01:19:49 -06001123add_dependencies( zephyr_prebuilt ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} linker_script offsets)
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001124
Alberto Escolar Piedras76f764412017-10-03 16:31:55 +02001125
1126if(NOT CONFIG_NATIVE_APPLICATION)
1127 set(NOSTDINC_F -nostdinc)
1128endif()
1129
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001130if(GKOF OR GKSF)
1131 set(logical_target_for_zephyr_elf kernel_elf)
1132
1133 # The second linker pass uses the same source linker script of the
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +01001134 # first pass (LINKER_SCRIPT), but this time with a different output
1135 # file and preprocessed with the define LINKER_PASS2.
Andy Gross1f0ff062018-01-25 11:07:03 -06001136 construct_add_custom_command_for_linker_pass(linker_pass_final custom_command)
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001137 add_custom_command(
Sebastian Bøeb85dd3c2017-12-31 10:39:23 +01001138 ${custom_command}
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001139 )
Andy Grosse8860fe2018-02-01 01:12:32 -06001140
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001141 add_custom_target(
Andy Gross1f0ff062018-01-25 11:07:03 -06001142 linker_pass_final_script
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001143 DEPENDS
Chunlin Han18560a02018-02-01 01:19:49 -06001144 ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP}
Andy Grosse8860fe2018-02-01 01:12:32 -06001145 zephyr_prebuilt
Andy Gross1f0ff062018-01-25 11:07:03 -06001146 linker_pass_final.cmd
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001147 offsets_h
1148 )
Sebastian Bøeb1ab5012017-12-14 13:03:23 +01001149 set_property(TARGET
Andy Gross1f0ff062018-01-25 11:07:03 -06001150 linker_pass_final_script
Sebastian Bøeb1ab5012017-12-14 13:03:23 +01001151 PROPERTY INCLUDE_DIRECTORIES
1152 ${ZEPHYR_INCLUDE_DIRS}
1153 )
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001154
1155 add_executable( kernel_elf misc/empty_file.c ${GKSF})
Andy Gross1f0ff062018-01-25 11:07:03 -06001156 target_link_libraries(kernel_elf ${GKOF} ${TOPT} ${PROJECT_BINARY_DIR}/linker_pass_final.cmd ${zephyr_lnk})
1157 set_property(TARGET kernel_elf PROPERTY LINK_DEPENDS ${PROJECT_BINARY_DIR}/linker_pass_final.cmd)
Adithya Baglodyc69fb0d2018-08-04 19:48:52 +05301158 add_dependencies( kernel_elf ${ALIGN_SIZING_DEP} ${PRIV_STACK_DEP} linker_pass_final_script)
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001159else()
1160 set(logical_target_for_zephyr_elf zephyr_prebuilt)
1161 # Use the prebuilt elf as the final elf since we don't have a
1162 # generation stage.
1163endif()
1164
1165# To avoid having the same logical target name for the zephyr lib and
1166# the zephyr elf, we set the kernel_elf file name to zephyr.elf.
1167set_target_properties(${logical_target_for_zephyr_elf} PROPERTIES OUTPUT_NAME ${KERNEL_NAME})
1168
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001169set(post_build_commands "")
1170
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001171list_append_ifdef(CONFIG_CHECK_LINK_MAP
1172 post_build_commands
Carles Cufi7d764b32018-01-11 15:46:44 +01001173 COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/check_link_map.py ${KERNEL_MAP_NAME}
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001174 )
1175
1176list_append_ifdef(
1177 CONFIG_BUILD_OUTPUT_HEX
1178 post_build_commands
Walter Xie6b836d62018-07-10 11:39:52 +08001179 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 +01001180 )
1181
1182list_append_ifdef(
1183 CONFIG_BUILD_OUTPUT_BIN
1184 post_build_commands
Walter Xie6b836d62018-07-10 11:39:52 +08001185 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 +01001186 )
Anas Nashif4592ff22017-11-23 07:54:26 -05001187
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001188list_append_ifdef(
1189 CONFIG_BUILD_OUTPUT_S19
1190 post_build_commands
Walter Xie6b836d62018-07-10 11:39:52 +08001191 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 +01001192 )
1193
1194list_append_ifdef(
Anas Nashif1f1143a2017-11-22 13:03:53 -05001195 CONFIG_OUTPUT_DISASSEMBLY
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001196 post_build_commands
1197 COMMAND ${CMAKE_OBJDUMP} -S ${KERNEL_ELF_NAME} > ${KERNEL_LST_NAME}
1198 )
1199
1200list_append_ifdef(
Anas Nashif1f1143a2017-11-22 13:03:53 -05001201 CONFIG_OUTPUT_STAT
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001202 post_build_commands
1203 COMMAND ${CMAKE_READELF} -e ${KERNEL_ELF_NAME} > ${KERNEL_STAT_NAME}
1204 )
1205
1206list_append_ifdef(
1207 CONFIG_BUILD_OUTPUT_STRIPPED
1208 post_build_commands
1209 COMMAND ${CMAKE_STRIP} --strip-all ${KERNEL_ELF_NAME} -o ${KERNEL_STRIP_NAME}
1210 )
1211
Anas Nashif4592ff22017-11-23 07:54:26 -05001212list_append_ifdef(
1213 CONFIG_BUILD_OUTPUT_EXE
1214 post_build_commands
1215 COMMAND ${CMAKE_COMMAND} -E rename ${KERNEL_ELF_NAME} ${KERNEL_EXE_NAME}
1216 )
1217
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001218add_custom_command(
1219 TARGET ${logical_target_for_zephyr_elf}
1220 POST_BUILD
Sebastian Bøee51ce4d2017-11-20 15:37:59 +01001221 ${post_build_commands}
1222 COMMENT "Generating files from zephyr.elf for board: ${BOARD}"
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001223 # NB: COMMENT only works for some CMake-Generators
1224)
1225
Sebastian Bøedbdd7222017-12-19 13:20:10 +01001226if(CONFIG_OUTPUT_PRINT_MEMORY_USAGE)
1227 # Use --print-memory-usage with the first link.
1228 #
1229 # Don't use this option with the second link because seeing it twice
1230 # could confuse users and using it on the second link would suppress
1231 # it when the first link has a ram/flash-usage issue.
1232 set(option ${LINKERFLAGPREFIX},--print-memory-usage)
1233 string(MAKE_C_IDENTIFIER check${option} check)
Sebastian Bøeba0b2832017-12-21 10:16:43 +01001234
Sebastian Bøec34b7a32017-12-27 15:21:54 +01001235 set(SAVED_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
Sebastian Bøeba0b2832017-12-21 10:16:43 +01001236 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${option}")
Sebastian Bøe71b849f2018-04-17 15:08:58 +02001237 zephyr_check_compiler_flag(C "" ${check})
Sebastian Bøec34b7a32017-12-27 15:21:54 +01001238 set(CMAKE_REQUIRED_FLAGS ${SAVED_CMAKE_REQUIRED_FLAGS})
Sebastian Bøeba0b2832017-12-21 10:16:43 +01001239
Sebastian Bøedbdd7222017-12-19 13:20:10 +01001240 target_link_libraries_ifdef(${check} zephyr_prebuilt ${option})
1241endif()
1242
Anas Nashifc15d3c92017-11-21 18:54:55 -05001243if(EMU_PLATFORM)
Carles Cufi7d764b32018-01-11 15:46:44 +01001244 include(${ZEPHYR_BASE}/cmake/emu/${EMU_PLATFORM}.cmake)
Anas Nashiffd276ae2017-12-21 16:45:45 -05001245else()
1246 add_custom_target(run
1247 COMMAND
1248 ${CMAKE_COMMAND} -E echo
1249 "==================================================="
1250 "Emulation/Simulation not supported with this board."
1251 "==================================================="
1252 )
Anas Nashifc15d3c92017-11-21 18:54:55 -05001253endif()
1254
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001255add_subdirectory(cmake/flash)
1256
1257add_subdirectory(cmake/usage)
1258add_subdirectory(cmake/reports)
1259
Andrew Boie411686f2018-05-24 13:18:36 -07001260if(CONFIG_ASSERT AND (NOT CONFIG_FORCE_NO_ASSERT))
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001261 message(WARNING "
1262 ------------------------------------------------------------
1263 --- WARNING: __ASSERT() statements are globally ENABLED ---
Ioannis Glaropoulosf90416c2018-05-31 11:05:12 +02001264 --- The kernel will run more slowly and use more memory ---
Sebastian Bøe12f8f762017-10-27 15:43:34 +02001265 ------------------------------------------------------------"
1266)
1267endif()
1268
1269if(CONFIG_BOARD_DEPRECATED)
1270 message(WARNING "
1271 WARNING: The board '${BOARD}' is deprecated and will be
1272 removed in version ${CONFIG_BOARD_DEPRECATED}"
1273)
1274endif()
Andrew Boiedf48e112018-01-12 09:54:24 -08001275
1276if(CONFIG_X86 AND CONFIG_USERSPACE AND NOT CONFIG_X86_NO_MELTDOWN)
1277 message(WARNING "
1278 WARNING: You have enabled CONFIG_USERSPACE on an x86-based target.
1279 If your CPU is vulnerable to the Meltdown CPU bug, security of
1280 supervisor-only memory pages is not guaranteed. This version of Zephyr
1281 does not contain a fix for this issue."
1282)
1283endif()