Skip to content

Commit 6653fad

Browse files
authored
Merge pull request #40329 from eeckstein/fix-cmake-debug-bootstrapping
cmake: fix a typo in the libswift Debug bootstrapping build
2 parents 290df69 + 77d421c commit 6653fad

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libswift/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ else()
3737
set(b0_deps ${b0_deps} swiftCore-bootstrapping0)
3838
set(b1_deps ${b1_deps} swiftCore-bootstrapping1)
3939
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
40-
set(b0_deps ${b0_deps} swiftOnoneSupport-bootstrapping0)
41-
set(b1_deps ${b1_deps} swiftOnoneSupport-bootstrapping1)
40+
set(b0_deps ${b0_deps} swiftSwiftOnoneSupport-bootstrapping0)
41+
set(b1_deps ${b1_deps} swiftSwiftOnoneSupport-bootstrapping1)
4242
endif()
4343
if(SWIFT_HOST_VARIANT_SDK IN_LIST SWIFT_DARWIN_PLATFORMS)
4444
set(b0_deps ${b0_deps} swiftDarwin-bootstrapping0)

stdlib/public/Platform/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ if(${LIBSWIFT_BUILD_MODE} STREQUAL "BOOTSTRAPPING" AND
5656
set(b0_deps swiftCore-bootstrapping0)
5757
set(b1_deps swiftCore-bootstrapping1)
5858
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
59-
set(b0_deps ${b0_deps} swiftOnoneSupport-bootstrapping0)
60-
set(b1_deps ${b1_deps} swiftOnoneSupport-bootstrapping1)
59+
set(b0_deps ${b0_deps} swiftSwiftOnoneSupport-bootstrapping0)
60+
set(b1_deps ${b1_deps} swiftSwiftOnoneSupport-bootstrapping1)
6161
endif()
6262

6363
add_swift_target_library_single(swiftDarwin-bootstrapping0 swiftDarwin

0 commit comments

Comments
 (0)