Skip to content

Commit

Permalink
Add cmake toolchain file for M258KE build
Browse files Browse the repository at this point in the history
  • Loading branch information
dougg3 committed Sep 10, 2023
1 parent 5e8224e commit a274aa8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions toolchain-m258ke.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This will tell CMake that we are cross compiling
set(CMAKE_SYSTEM_NAME Generic)
set(CMAKE_SYSTEM_VERSION 1)
set(CMAKE_SYSTEM_PROCESSOR arm)
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)

# Make sure it knows what binaries to use
set(CMAKE_AR arm-none-eabi-ar)
set(CMAKE_ASM_COMPILER arm-none-eabi-gcc)
set(CMAKE_C_COMPILER arm-none-eabi-gcc)
set(CMAKE_CXX_COMPILER arm-none-eabi-g++)
set(CMAKE_LINKER arm-none-eabi-ld)
set(CMAKE_OBJCOPY arm-none-eabi-objcopy)
set(CMAKE_RANLIB arm-none-eabi-ranlib)
set(CMAKE_SIZE arm-none-eabi-size)
set(CMAKE_STRIP arm-none-eabi-strip)

0 comments on commit a274aa8

Please sign in to comment.