-
Notifications
You must be signed in to change notification settings - Fork 50
/
CMakeLists.txt
301 lines (236 loc) · 11.3 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#-----------------------------------------------------------------------------
# CmakeLists.txt for the Digital Bitbox
# Copyright (c) 2015-2016 Lucas Betschart, Douglas J. Bakkum
# MIT License
cmake_minimum_required(VERSION 2.8.5)
if(BUILD_TYPE STREQUAL "firmware")
elseif(BUILD_TYPE STREQUAL "bootloader")
elseif(BUILD_TYPE STREQUAL "test")
elseif(BUILD_TYPE STREQUAL "simulator")
else()
message(FATAL_ERROR "Invalid build type: ${BUILD_TYPE}. Build with:
cmake .. -DBUILD_TYPE=type # 'type' can be 'test', 'firmware', 'bootloader', or 'simulator'
")
endif()
set(MYPROJECT ${BUILD_TYPE})
project(${MYPROJECT} C)
#-----------------------------------------------------------------------------
# Options for building
if(BUILD_TYPE STREQUAL "bootloader")
option(USE_SECP256K1_LIB "Use micro ECC instead bitcoin's secp256k1 library." OFF)
else()
option(USE_SECP256K1_LIB "Use micro ECC instead bitcoin's secp256k1 library." ON)
endif()
option(BUILD_COVERAGE "Compile with test coverage flags." OFF)
option(BUILD_VALGRIND "Compile with debug symbols." OFF)
option(BUILD_DOCUMENTATION "Build the Doxygen documentation." OFF)
option(CMAKE_VERBOSE_MAKEFILE "Verbose build." OFF)
if(NOT BUILD_TYPE STREQUAL "test" AND NOT BUILD_TYPE STREQUAL "simulator")
set(ELF ${MYPROJECT}.elf)
set(CMAKE_TOOLCHAIN_FILE arm.cmake)
include(${CMAKE_TOOLCHAIN_FILE})
endif()
if(CONTINUOUS_INTEGRATION AND BUILD_TYPE STREQUAL "test")
set(BUILD_COVERAGE "ON")
set(BUILD_VALGRIND "ON")
endif()
execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion OUTPUT_VARIABLE C_COMPILER_VERSION)
#-----------------------------------------------------------------------------
# Force out-of-source build
if(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR})
message(FATAL_ERROR "CMake generation is not allowed within the source directory!
Remove the CMakeCache.txt file and try again from another folder, e.g.:
rm CMakeCache.txt
mkdir build
cd build
cmake ..
")
endif()
#-----------------------------------------------------------------------------
# Create version header file
find_package(Git)
if(GIT_FOUND)
execute_process(COMMAND git "describe" "--tags" OUTPUT_VARIABLE GIT_COMMIT_HASH WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process(COMMAND git "describe" "--tags" "--abbrev=0" OUTPUT_VARIABLE GIT_COMMIT_HASH_SHORT WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_STRIP_TRAILING_WHITESPACE)
string(REPLACE "." ";" VERSION_LIST ${GIT_COMMIT_HASH_SHORT})
list(GET VERSION_LIST 0 vMAJOR)
list(GET VERSION_LIST 1 MINOR)
list(GET VERSION_LIST 2 PATCH)
string(REPLACE "v" "" MAJOR ${vMAJOR})
execute_process(COMMAND git "tag" "--list" OUTPUT_VARIABLE GIT_TAG_LIST WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_STRIP_TRAILING_WHITESPACE)
string(REPLACE "\n" ";" GIT_TAG_LIST ${GIT_TAG_LIST})
list(LENGTH GIT_TAG_LIST VERSION_MONOTONIC)
else()
set(GIT_COMMIT_HASH "Git not found.")
set(VERSION_MONOTONIC $ENV{MONOTONIC_VERSION})
endif()
if(NOT VERSION_MONOTONIC)
message(FATAL_ERROR "firmware needs a monotonic version")
endif()
STRING(REGEX REPLACE "-.*$" "" PATCH ${PATCH})
set(VERSION_STRING "${GIT_COMMIT_HASH}")
set(VERSION_STRING_SHORT "${GIT_COMMIT_HASH_SHORT}")
set(VERSION_STRING_MAJOR ${MAJOR})
set(VERSION_STRING_MINOR ${MINOR})
set(VERSION_STRING_PATCH ${PATCH})
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/version.h.in
${CMAKE_CURRENT_SOURCE_DIR}/src/version.h)
#-----------------------------------------------------------------------------
# Source Definitions
if(CONTINUOUS_INTEGRATION)
add_definitions(-DCONTINUOUS_INTEGRATION)
endif()
if(BUILD_TYPE STREQUAL "test" OR BUILD_TYPE STREQUAL "simulator")
add_definitions(-DTESTING)
endif()
if(BUILD_TYPE STREQUAL "simulator")
add_definitions(-DSIMULATOR)
endif()
if(BUILD_TYPE STREQUAL "bootloader")
add_definitions(-DBOOTLOADER)
endif()
add_definitions(-DuECC_OPTIMIZATION_LEVEL=4)
if(USE_SECP256K1_LIB)
add_definitions(-DECC_USE_SECP256K1_LIB)
add_definitions(-DSECP256K1_BUILD=1)
endif()
#-----------------------------------------------------------------------------
# Print system information and build options
message(STATUS "\n\n=============================================")
message(STATUS " - General -")
message(STATUS "MCU version: ${VERSION_STRING}")
message(STATUS "CMake version: ${CMAKE_VERSION}")
message(STATUS "System: ${CMAKE_SYSTEM}")
message(STATUS "Processor: ${CMAKE_SYSTEM_PROCESSOR}")
message(STATUS " - Build -")
message(STATUS "Compiler version: ${CMAKE_C_COMPILER_ID} ${C_COMPILER_VERSION}")
message(STATUS "Compiler: ${CMAKE_C_COMPILER}")
message(STATUS "Linker: ${CMAKE_LINKER}")
message(STATUS "Archiver: ${CMAKE_AR}")
message(STATUS " - Options -")
message(STATUS "Build type: ${BUILD_TYPE}")
message(STATUS "Monotonic fw version: ${VERSION_MONOTONIC}")
message(STATUS "Verbose: ${CMAKE_VERBOSE_MAKEFILE}")
message(STATUS "Documentation: ${BUILD_DOCUMENTATION} (make doc)")
message(STATUS "Coverage flags: ${BUILD_COVERAGE}")
message(STATUS "Debug symbols: ${BUILD_VALGRIND}")
if(USE_SECP256K1_LIB)
message(STATUS "SECP256k1 library: libsecp256k1")
else()
message(STATUS "SECP256k1 library: uECC ")
endif()
message(STATUS "\n=============================================\n\n")
#-----------------------------------------------------------------------------
# Get submodules
execute_process(COMMAND git "submodule" "update" "--init" "--recursive" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
#-----------------------------------------------------------------------------
# Collect all binaries into bin subdirectory
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/bin)
set(LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/lib)
#-----------------------------------------------------------------------------
# Compiler
if(BUILD_VALGRIND)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -O0 -g")
else()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Os")
endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wextra -Wall -Wpedantic -Werror -Wstrict-prototypes -Wmissing-prototypes -Werror-implicit-function-declaration -Wpointer-arith -std=gnu99 -ffunction-sections -fdata-sections -Wchar-subscripts -Wcomment -Wformat=2 -Wimplicit-int -Wmain -Wparentheses -Wsequence-point -Wreturn-type -Wswitch -Wtrigraphs -Wunused -Wuninitialized -Wunknown-pragmas -Wfloat-equal -Wundef -Wshadow -Wbad-function-cast -Wwrite-strings -Wsign-compare -Waggregate-return -Wmissing-declarations -Wformat -Wmissing-format-attribute -Wno-deprecated-declarations -Wpacked -Wredundant-decls -Wnested-externs -Wmultichar -Wformat-nonliteral -Winit-self -Wformat-security -Wold-style-definition -Wmissing-include-dirs -Wswitch-default -Wattributes -Wcast-qual")
if(BUILD_TYPE STREQUAL "test")
# Implicit-fallthrough not implemented in arm-none-eabi-gcc.
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-implicit-fallthrough")
endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-protector-all -Wno-unused-function -Wno-missing-field-initializers -Wno-long-long -Wno-expansion-to-defined")
if(BUILD_TYPE STREQUAL "test")
if(APPLE)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations")
set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -framework AppKit -framework IOKit")
set(CMAKE_MACOSX_RPATH ON)
endif()
endif()
if(NOT BUILD_TYPE STREQUAL "test" AND NOT BUILD_TYPE STREQUAL "simulator")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mthumb -fdata-sections -fomit-frame-pointer -ffunction-sections -mlong-calls -mcpu=cortex-m4 -pipe -fno-strict-aliasing --param max-inline-insns-single=500 -D__SAM4S4A__ -DNDEBUG -DBOARD=USER_BOARD -DARM_MATH_CM4=true -DUDD_ENABLE -D_QTOUCH_ -Dscanf=iscanf -Dprintf=iprintf")
endif()
#-----------------------------------------------------------------------------
# Test coverage flags
if(BUILD_COVERAGE)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fprofile-arcs -ftest-coverage")
set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -fprofile-arcs")
endif()
#-----------------------------------------------------------------------------
# Build Documentation
if(BUILD_DOCUMENTATION)
set(DOC_GRAPHS "YES" CACHE STRING "Create dependency graphs (needs graphviz)")
set(DOC_FULLGRAPHS "NO" CACHE STRING "Create call/callee graphs (large)")
find_program(DOT_PATH dot)
if (DOT_PATH STREQUAL "DOT_PATH-NOTFOUND")
message("Doxygen: graphviz not found - graphs disabled")
set(DOC_GRAPHS "NO")
endif()
find_package(Doxygen)
if(DOXYGEN_FOUND)
configure_file("doc/Doxyfile.in" "Doxyfile" @ONLY)
add_custom_target(doc
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen.." VERBATIM)
endif()
endif()
#-----------------------------------------------------------------------------
# Build
message(STATUS "C Flags: ${CMAKE_C_FLAGS}")
add_subdirectory(src)
if(BUILD_TYPE STREQUAL "test")
add_subdirectory(tests)
add_test(NAME tests_unit COMMAND tests_unit)
add_test(NAME tests_openssl COMMAND tests_openssl 200)
add_test(NAME tests_u2f_hid COMMAND tests_u2f_hid)
add_test(NAME tests_u2f_standard COMMAND tests_u2f_standard)
add_test(NAME tests_api COMMAND tests_api)
if(USE_SECP256K1_LIB)
add_test(NAME tests_secp256k1 COMMAND tests_secp256k1 2)
endif()
enable_testing()
elseif(NOT BUILD_TYPE STREQUAL "simulator")
add_custom_command(
OUTPUT ${MYPROJECT}.bin
COMMAND ${CMAKE_SIZE} ${ELF}
COMMAND ${CMAKE_OBJCOPY} -O binary ${ELF} ${MYPROJECT}.bin
DEPENDS ${ELF}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin
COMMENT "\nGenerating binary"
)
add_custom_target(binary_file ALL
DEPENDS ${MYPROJECT}.bin ${ELF}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin
)
add_dependencies(binary_file ${ELF})
if(BUILD_TYPE STREQUAL "bootloader")
add_custom_command(
OUTPUT ${MYPROJECT}.pad.bin
COMMAND python ../../py/pad_boot_binary.py ${MYPROJECT}.bin ${MYPROJECT}.pad.bin
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin
COMMENT "\nPadding binary"
)
add_custom_target(padded_file ALL
DEPENDS ${MYPROJECT}.pad.bin
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin
)
add_dependencies(padded_file binary_file)
elseif(BUILD_TYPE STREQUAL "firmware")
add_custom_command(
OUTPUT ${MYPROJECT}.pad.bin
COMMAND python ../../py/pad_firmware_binary.py ${MYPROJECT}.bin ${MYPROJECT}.pad.bin "${VERSION_MONOTONIC}"
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin
COMMENT "\nPadding binary; adding monotonic version: ${VERSION_MONOTONIC}"
)
add_custom_target(padded_file ALL
DEPENDS ${MYPROJECT}.pad.bin
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin
)
add_dependencies(padded_file binary_file)
endif()
endif()
#-----------------------------------------------------------------------------
# Clean
set(removefiles "bin/*.* lib/*.*")
set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${removefiles}")