Skip to content

Commit ff0756d

Browse files
committed
CMake: Fix STM target build failures
Ensure the linker and startup files listed match with the correct letter case as some host systems are case sensitive.
1 parent c734138 commit ff0756d

File tree

9 files changed

+2
-2
lines changed

9 files changed

+2
-2
lines changed

targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H747xI/TARGET_STM32H747xI_CM4/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
if(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
55
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_stm32h747xx.S)
6-
set(LINKER_FILE TOOLCHAIN_GCC_ARM/STM32H747xI_CM4.ld)
6+
set(LINKER_FILE TOOLCHAIN_GCC_ARM/stm32h747xI_CM4.ld)
77
elseif(${MBED_TOOLCHAIN} STREQUAL "ARM")
88
set(STARTUP_FILE TOOLCHAIN_ARM/startup_stm32h747xx.S)
9-
set(LINKER_FILE TOOLCHAIN_ARM/stm32h747xi-cm4.sct)
9+
set(LINKER_FILE TOOLCHAIN_ARM/stm32h747xI_CM4.sct)
1010
endif()
1111

1212
add_library(mbed-stm32h747xi-cm4 INTERFACE)

0 commit comments

Comments
 (0)