We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c50dcae commit f0392dbCopy full SHA for f0392db
Runtimes/Core/core/CMakeLists.txt
@@ -239,6 +239,11 @@ add_library(swiftCore
239
"${CMAKE_CURRENT_BINARY_DIR}/UnsafeRawBufferPointer.swift"
240
"${CMAKE_CURRENT_BINARY_DIR}/Tuple.swift")
241
242
+# https://github.com/swiftlang/swift/issues/77705 - Freestanding and Linux/Android builds both have failures to resolve.
243
+if(NOT LINUX AND NOT ANDROID)
244
+ target_sources(swiftCore PRIVATE ObjectIdentifier+DebugDescription.swift)
245
+endif()
246
+
247
set_target_properties(swiftCore PROPERTIES Swift_MODULE_NAME Swift)
248
249
if(SwiftCore_ENABLE_COMMANDLINE_SUPPORT)
0 commit comments