summaryrefslogtreecommitdiff
path: root/tools/cmake/cpu/cortex-m33.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cmake/cpu/cortex-m33.cmake')
-rw-r--r--tools/cmake/cpu/cortex-m33.cmake19
1 files changed, 0 insertions, 19 deletions
diff --git a/tools/cmake/cpu/cortex-m33.cmake b/tools/cmake/cpu/cortex-m33.cmake
deleted file mode 100644
index 7ebaf1748..000000000
--- a/tools/cmake/cpu/cortex-m33.cmake
+++ /dev/null
@@ -1,19 +0,0 @@
-if (TOOLCHAIN STREQUAL "gcc")
- set(TOOLCHAIN_COMMON_FLAGS
- -mthumb
- -mcpu=cortex-m33
- -mfloat-abi=hard
- -mfpu=fpv5-sp-d16
- )
-
- set(FREERTOS_PORT GCC_ARM_CM33_NTZ_NONSECURE CACHE INTERNAL "")
-
-elseif (TOOLCHAIN STREQUAL "iar")
- set(TOOLCHAIN_COMMON_FLAGS
- --cpu cortex-m33
- --fpu VFPv5-SP
- )
-
- set(FREERTOS_PORT IAR_ARM_CM4F CACHE INTERNAL "")
-
-endif ()