Update directory tree.
[lwext4.git] / toolchain / cortex-m4.cmake
diff --git a/toolchain/cortex-m4.cmake b/toolchain/cortex-m4.cmake
new file mode 100644 (file)
index 0000000..649bff4
--- /dev/null
@@ -0,0 +1,18 @@
+# Name of the target\r
+SET(CMAKE_SYSTEM_NAME Generic)\r
+set(CMAKE_SYSTEM_PROCESSOR cortex-m4)\r
+\r
+# Toolchain settings\r
+set(CMAKE_C_COMPILER   arm-none-eabi-gcc)\r
+set(CMAKE_CXX_COMPILER         arm-none-eabi-g++)\r
+set(AS                         arm-none-eabi-as)\r
+set(AR                                 arm-none-eabi-ar)\r
+set(OBJCOPY            arm-none-eabi-objcopy)\r
+set(OBJDUMP                    arm-none-eabi-objdump)\r
+set(SIZE                arm-none-eabi-size)\r
+\r
+set(CMAKE_C_FLAGS   "-mthumb -mcpu=cortex-m4 -fno-builtin -Wall -std=gnu99 -fdata-sections -ffunction-sections" CACHE INTERNAL "c compiler flags")\r
+set(CMAKE_CXX_FLAGS "-mthumb -mcpu=cortex-m4 -fno-builtin -Wall -fdata-sections -ffunction-sections" CACHE INTERNAL "cxx compiler flags")\r
+set(CMAKE_ASM_FLAGS "-mthumb -mcpu=cortex-m4" CACHE INTERNAL "asm compiler flags")\r
+set(CMAKE_EXE_LINKER_FLAGS "-nostartfiles -Wl,--gc-sections -mthumb -mcpu=cortex-m4" CACHE INTERNAL "exe link flags")\r
+\r