forked from nanoframework/nf-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
50 lines (39 loc) · 1.9 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Copyright (c) .NET Foundation and Contributors
# See LICENSE file in the project root for full license information.
#
include(binutils.common)
include(binutils.ChibiOS)
nf_setup_target_build(
HAS_NANOBOOTER
BOOTER_LINKER_FILE
STM32F091xC_booter
CLR_LINKER_FILE
STM32F091xC_CLR
CLR_EXTRA_COMPILE_DEFINITIONS
-DRUNTIME_MEMORY_PROFILE__extrasmall=1
BOOTER_EXTRA_LINKMAP_PROPERTIES
",--library-path=${CMAKE_SOURCE_DIR}/targets/ChibiOS/_common,--defsym=__main_stack_size__=0x200,--defsym=__process_stack_size__=0x400,--defsym=__crt_heap_size__=0x1000"
CLR_EXTRA_LINKMAP_PROPERTIES
",--library-path=${CMAKE_SOURCE_DIR}/targets/ChibiOS/_common,--defsym=__main_stack_size__=0x200,--defsym=__process_stack_size__=0x400,--defsym=__crt_heap_size__=0x2070"
)
# generate bin file for deployment
if(SRECORD_TOOL_AVAILABLE)
############################################################################################################
## when changing the linker file make sure to update the addresses below with the offset of the CLR image ##
## DO NOT use the leading 0x notation, just the address in plain hexadecimal formating ##
############################################################################################################
if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES RelWithDebInfo)
nf_generate_bin_package(
${CMAKE_SOURCE_DIR}/build/${NANOBOOTER_PROJECT_NAME}.bin
${CMAKE_SOURCE_DIR}/build/${NANOCLR_PROJECT_NAME}.bin
5800
${CMAKE_SOURCE_DIR}/build/nanobooter-nanoclr.bin)
else()
nf_generate_bin_package(
${CMAKE_SOURCE_DIR}/build/${NANOBOOTER_PROJECT_NAME}.bin
${CMAKE_SOURCE_DIR}/build/${NANOCLR_PROJECT_NAME}.bin
3000
${CMAKE_SOURCE_DIR}/build/nanobooter-nanoclr.bin)
endif()
endif()