We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9e2fab commit 6220ca5Copy full SHA for 6220ca5
tools/cmake/cores/Cortex-M4.cmake
@@ -12,6 +12,11 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "ARM")
12
"-mcpu=cortex-m4"
13
"-mfpu=none"
14
)
15
+#Necessary as the linker does not always detect
16
+#the architecture from the objectfiles correctly.
17
+ list(APPEND link_options
18
+ "--cpu=Cortex-M4.no_fp"
19
+ )
20
endif()
21
22
function(mbed_set_cpu_core_definitions target)
0 commit comments