Skip to content

Commit 6a25287

Browse files
authored
Merge pull request ARMmbed#14429 from hugueskamba/hk_cmake_fix_st_build_error
CMake: Fix STM target build failures
2 parents 4ab347c + ff0756d commit 6a25287

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)