Change include type policy
[lwext4.git] / toolchain / cortex-m4.cmake
index d4c8d7fef3c3a658392dd61eb915a615c3a2ac27..fef16ed0d20f42d73d2a937d8c4e8685dd33049d 100644 (file)
@@ -1,28 +1,9 @@
-# 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
-\r
-\r
-SET(CMAKE_C_FLAGS_DEBUG "-O0 -g -ggdb3" CACHE INTERNAL "c debug compiler flags")\r
-SET(CMAKE_CXX_FLAGS_DEBUG "-O0 -g -ggdb3" CACHE INTERNAL "cxx debug compiler flags")\r
-SET(CMAKE_ASM_FLAGS_DEBUG "-g -ggdb3" CACHE INTERNAL "asm debug compiler flags")\r
-\r
-SET(CMAKE_C_FLAGS_RELEASE "-Os" CACHE INTERNAL "c release compiler flags")\r
-SET(CMAKE_CXX_FLAGS_RELEASE "-Os" CACHE INTERNAL "cxx release compiler flags")\r
-SET(CMAKE_ASM_FLAGS_RELEASE "" CACHE INTERNAL "asm release compiler flags")\r
-\r
+# Name of the target
+set(CMAKE_SYSTEM_NAME Generic)
+set(CMAKE_SYSTEM_PROCESSOR cortex-m4)
+
+set(MCPU_FLAGS "-mthumb -mcpu=cortex-m4")
+set(VFP_FLAGS "-mfloat-abi=hard -mfpu=fpv4-sp-d16")
+set(LD_FLAGS "-nostartfiles")
+
+include(${CMAKE_CURRENT_LIST_DIR}/common/arm-none-eabi.cmake)
\ No newline at end of file