-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCMakeLists.txt
103 lines (84 loc) · 4.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# set minimum version of CMake.
cmake_minimum_required(VERSION 3.13)
# The Generic system name is used for embedded targets (targets without OS) in
# CMake
set(CMAKE_SYSTEM_NAME Generic)
set(CMAKE_SYSTEM_PROCESSOR ARM)
# Supress Error when trying to test the compiler
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
set(BUILD_SHARED_LIBS OFF)
# set project name and version
project(flash_loader VERSION 0.0.1)
# enable assembly
enable_language(ASM)
set(SOURCES
${CMAKE_SOURCE_DIR}/entry/entry.c
${CMAKE_SOURCE_DIR}/entry/cortex-vector.cpp
${CMAKE_SOURCE_DIR}/flash/main.cpp
${CMAKE_SOURCE_DIR}/flash/flash_device.cpp
)
set(HEADERS
${CMAKE_SOURCE_DIR}/entry/entry.hpp
)
# add our executable
add_executable(flash_loader
${SOURCES} ${HEADERS}
)
# enable C++20 support for the library
target_compile_features(flash_loader PUBLIC cxx_std_20)
# set the output filename
set_target_properties(flash_loader PROPERTIES OUTPUT_NAME "flash_loader" SUFFIX ".elf")
# compiler optimisations
target_compile_options(flash_loader PUBLIC "-g")
target_compile_options(flash_loader PUBLIC "-Os")
# set the cpu options for the compiler
target_compile_options(flash_loader PUBLIC "-march=armv7e-m")
target_compile_options(flash_loader PUBLIC "-mcpu=cortex-m4")
target_compile_options(flash_loader PUBLIC "-mthumb")
# other compiler settings
target_compile_options(flash_loader PUBLIC "-Wno-attributes")
target_compile_options(flash_loader PUBLIC "-fno-non-call-exceptions")
target_compile_options(flash_loader PUBLIC "-fno-common")
target_compile_options(flash_loader PUBLIC "-ffunction-sections")
target_compile_options(flash_loader PUBLIC "-fdata-sections")
target_compile_options(flash_loader PUBLIC "-fno-exceptions")
target_compile_options(flash_loader PUBLIC "-Wno-maybe-uninitialized")
target_compile_options(flash_loader PUBLIC "-Wno-unused-local-typedefs")
target_compile_options(flash_loader PUBLIC "-Wno-unused-but-set-variable")
target_compile_options(flash_loader PUBLIC "-Wno-unused-function")
target_compile_options(flash_loader PUBLIC "-fomit-frame-pointer")
target_compile_options(flash_loader PUBLIC "-Wall")
target_compile_options(flash_loader PUBLIC "-Werror")
# change all floating point constants to single precision
add_compile_options("-fsingle-precision-constant")
# enable stack usage
add_compile_options(-fstack-usage)
# set the c++ only options
target_compile_options(flash_loader PUBLIC $<$<COMPILE_LANGUAGE:CXX>:-fno-threadsafe-statics>)
target_compile_options(flash_loader PUBLIC $<$<COMPILE_LANGUAGE:CXX>:-fno-rtti>)
target_compile_options(flash_loader PUBLIC $<$<COMPILE_LANGUAGE:CXX>:-fconcepts>)
target_compile_options(flash_loader PUBLIC $<$<COMPILE_LANGUAGE:CXX>:-fno-use-cxa-get-exception-ptr>)
target_compile_options(flash_loader PUBLIC $<$<COMPILE_LANGUAGE:CXX>:-fno-use-cxa-atexit>)
target_compile_options(flash_loader PUBLIC $<$<COMPILE_LANGUAGE:CXX>:-Wno-volatile>)
# set the cpu options for the linker
target_link_options(flash_loader PUBLIC "-march=armv7e-m")
target_link_options(flash_loader PUBLIC "-mcpu=cortex-m4")
target_link_options(flash_loader PUBLIC "-mthumb")
# other linker options
target_link_options(flash_loader PUBLIC "-ffunction-sections")
target_link_options(flash_loader PUBLIC "-fdata-sections")
target_link_options(flash_loader PUBLIC "-nostdlib")
target_link_options(flash_loader PUBLIC "-nodefaultlibs")
target_link_options(flash_loader PUBLIC "-nostartfiles")
target_link_options(flash_loader PUBLIC "-Wl,--gc-sections")
target_link_options(flash_loader PUBLIC "-Wl,-fatal-warnings")
target_link_options(flash_loader PUBLIC "-Wl,-cref,-Map=flash_loader.map")
target_link_options(flash_loader PUBLIC "-Wl,--print-memory-usage")
target_link_options(flash_loader PUBLIC "-Wl,--no-warn-rwx-segments")
# link to the linkerscript of the target cpu
target_link_options(flash_loader PUBLIC "-T${CMAKE_SOURCE_DIR}/linkerscript.ld")
# Custom commands for processing the build binary and show some statistics and debug info
add_custom_command(TARGET flash_loader DEPENDS ${CMAKE_BINARY_DIR}/flash_loader.elf POST_BUILD COMMAND arm-none-eabi-objcopy ARGS -O binary -R .bss -R .stack flash_loader.elf flash_loader.bin)
add_custom_command(TARGET flash_loader DEPENDS ${CMAKE_BINARY_DIR}/flash_loader.elf POST_BUILD COMMAND arm-none-eabi-objdump ARGS -C -S flash_loader.elf > flash_loader.lss)
add_custom_command(TARGET flash_loader DEPENDS ${CMAKE_BINARY_DIR}/flash_loader.elf POST_BUILD COMMAND arm-none-eabi-objdump ARGS -C -sj PrgCode -sj DevDscr -sj .bss -sj .data -sj .rodata -S flash_loader.elf > flash_loader.memory)
add_custom_command(TARGET flash_loader DEPENDS ${CMAKE_BINARY_DIR}/flash_loader.elf POST_BUILD COMMAND arm-none-eabi-size ARGS -A flash_loader.elf -x)