forked from grygorek/FreeRTOS_cpp11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib_test_nxp_mk64.cmake
92 lines (76 loc) · 3.47 KB
/
lib_test_nxp_mk64.cmake
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
# Copyright 2021 Piotr Grygorczuk <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
cmake_minimum_required(VERSION 3.0)
# ARM Cortex-M4F settings
###########################
message(STATUS "Building: K64FRDM EVK board")
set(CPU_ARCH "ARM_CM4F")
set(CPU_FLAGS "-mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16")
file(GLOB LINKER_SCRIPTS "${CMAKE_SOURCE_DIR}/lib_test_nxp_mk64/*.ld")
file(COPY ${LINKER_SCRIPTS} DESTINATION ${CMAKE_BINARY_DIR})
set(CMAKE_EXE_LINKER_FLAGS "-Wl,--wrap=malloc -Wl,--wrap=free -Wl,--wrap=aligned_alloc -Wl,--wrap=_malloc_r -Wl,--wrap=_memalign_r -Wl,--gc-sections")
set(LINKER_SCRIPT "linker.ld")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -T ${LINKER_SCRIPT}")
###################
# Project settings
###################
# Build Settings
#------------------------
SET(COMPILE_PART_FLAGS "${CPU_FLAGS} -Os")
if(DEBUG)
SET(COMPILE_PART_FLAGS "${CPU_FLAGS} -O0 -g")
endif(DEBUG)
# -flto in 10.2 returns: plugin needed to handle lto object and fails to link
# lto is broken in gcc 8.2
# set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE)
SET(COMPILE_COMMON_FLAGS "${CONFIG_DEFS} ${COMPILE_PART_FLAGS} -Wall -Wextra -Wpedantic -fno-common \
-fmessage-length=0 -ffunction-sections -fdata-sections -Xlinker -Map=out.map")
# When enabling exceptions, change the linker script to link libstdc++.a instead of libstdc++_nano.a
SET(CMAKE_C_FLAGS "${COMPILE_COMMON_FLAGS} -std=c17 -nostdlib -ffreestanding -fno-builtin " CACHE INTERNAL "" FORCE)
SET(CMAKE_CXX_FLAGS "${COMPILE_COMMON_FLAGS} -std=c++2a -nostdlib -ffreestanding -fno-builtin -fno-exceptions -fno-rtti -fno-unwind-tables" CACHE INTERNAL "" FORCE)
SET(CMAKE_ASM_FLAGS "-x assembler-with-cpp ${COMPILE_PART_FLAGS}" CACHE INTERNAL "" FORCE)
include_directories(
lib_test_nxp_mk64
test
FreeRTOS/Source/include
FreeRTOS
FreeRTOS/Source/portable/${COMPILER_NAME}/${CPU_ARCH}
FreeRTOS/cpp11_gcc
)
# Select the right directory for the compiler version
if(CMAKE_CXX_COMPILER_VERSION LESS 11)
SET(GCC_VER_DIR "v10")
else(CMAKE_CXX_COMPILER_VERSION LESS 11)
SET(GCC_VER_DIR "v11")
endif(CMAKE_CXX_COMPILER_VERSION LESS 11)
add_subdirectory(FreeRTOS)
add_subdirectory(libstdc++_gcc/${GCC_VER_DIR})
add_executable(${PROJECT_NAME}.elf
lib_test_nxp_mk64/startup_mk64f12.cpp
lib_test_nxp_mk64/main.cpp
sys_common/FreeRTOS_hooks.cpp
sys_common/FreeRTOS_memory.cpp
sys_common/sys.cpp
)
target_link_libraries(
${PROJECT_NAME}.elf
freeRTOS
std++_freertos
)