Skip to content

Commit 6bf629d

Browse files
Drop special handling for swiftCore.dll
We have to copy it over in build.ps1 since it doesn't exist yet during the initial build.
1 parent 9c18af1 commit 6bf629d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lldb/bindings/python/CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,8 @@ function(finish_swig_python swig_target lldb_python_bindings_dir lldb_python_tar
211211
"LLDB_INCLUDE_TESTS=Off)")
212212
endif()
213213
else()
214-
# swiftCore is defined in swift/stdlib/public/core/CMakeLists.txt
215-
# It's not configured yet, so we cannot depend on it.
216214
add_custom_command(TARGET ${swig_target} POST_BUILD
217-
COMMAND ${CMAKE_COMMAND} -E copy -t ${lldb_python_target_dir} $<TARGET_RUNTIME_DLLS:liblldb> ${SWIFT_BINARY_DIR}/bin/swiftCore.dll
215+
COMMAND ${CMAKE_COMMAND} -E copy -t ${lldb_python_target_dir} $<TARGET_RUNTIME_DLLS:liblldb>
218216
COMMAND_EXPAND_LISTS)
219217
endif()
220218
endif()

0 commit comments

Comments
 (0)