Skip to content

Commit 2015c8a

Browse files
committed
[Backtracing] Fix a bug in the CMake script that resulted in clashing targets.
I missed off an `${sdk}` in the target name for the lipo'd output :-( rdar://105390807
1 parent 69ef2e7 commit 2015c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/cmake/modules/AddSwiftStdlib.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2877,7 +2877,7 @@ function(add_swift_target_executable name)
28772877
set(UNIVERSAL_NAME "${SWIFTLIBEXEC_DIR}/${library_subdir}/${name}")
28782878
endif()
28792879

2880-
set(lipo_target "${name}")
2880+
set(lipo_target "${name}-${sdk}")
28812881
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
28822882
set(codesign_arg CODESIGN)
28832883
endif()

0 commit comments

Comments
 (0)