summaryrefslogtreecommitdiff
path: root/tools/cmake/cpu/cortex-m0.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cmake/cpu/cortex-m0.cmake')
-rw-r--r--tools/cmake/cpu/cortex-m0.cmake17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/cmake/cpu/cortex-m0.cmake b/tools/cmake/cpu/cortex-m0.cmake
deleted file mode 100644
index bc2257048..000000000
--- a/tools/cmake/cpu/cortex-m0.cmake
+++ /dev/null
@@ -1,17 +0,0 @@
-if (TOOLCHAIN STREQUAL "gcc")
- set(TOOLCHAIN_COMMON_FLAGS
- -mthumb
- -mcpu=cortex-m0plus
- -mfloat-abi=soft
- )
-
- set(FREERTOS_PORT GCC_ARM_CM0 CACHE INTERNAL "")
-
-elseif (TOOLCHAIN STREQUAL "iar")
- set(TOOLCHAIN_COMMON_FLAGS
- --cpu cortex-m0
- )
-
- set(FREERTOS_PORT IAR_ARM_CM0 CACHE INTERNAL "")
-
-endif ()