mirror of
https://github.com/azure-rtos/threadx
synced 2025-01-16 07:42:57 +08:00
13 lines
336 B
CMake
13 lines
336 B
CMake
# Name of the target
|
|
set(CMAKE_SYSTEM_NAME Generic)
|
|
set(CMAKE_SYSTEM_PROCESSOR cortex-m4)
|
|
|
|
set(THREADX_ARCH "cortex_m4")
|
|
set(THREADX_TOOLCHAIN "gnu")
|
|
|
|
set(MCPU_FLAGS "-mthumb -mcpu=cortex-m4")
|
|
set(VFP_FLAGS "")
|
|
set(SPEC_FLAGS "--specs=nosys.specs")
|
|
# set(LD_FLAGS "-nostartfiles")
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/arm-none-eabi.cmake) |