mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The SDK overlays have been provided in the Apple SDKs for many years, and the interface and implementation has diverged in more recent years such that trying to build the Swift version no longer works. Remove all of the dead code. rdar://151889154
69 lines
2.3 KiB
CMake
69 lines
2.3 KiB
CMake
#===--- CMakeLists.txt - Concurrency support library ---------------------===#
|
|
#
|
|
# This source file is part of the Swift.org open source project
|
|
#
|
|
# Copyright (c) 2019 - 2022 Apple Inc. and the Swift project authors
|
|
# Licensed under Apache License v2.0 with Runtime Library Exception
|
|
#
|
|
# See https://swift.org/LICENSE.txt for license information
|
|
# See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
#
|
|
#===----------------------------------------------------------------------===#
|
|
|
|
set(swift_distributed_darwin_dependencies)
|
|
|
|
if((SWIFT_BUILD_CLANG_OVERLAYS
|
|
OR SWIFT_BUILD_TEST_SUPPORT_MODULES)
|
|
AND (NOT DEFINED SWIFT_BUILD_CLANG_OVERLAYS_SKIP_BUILTIN_FLOAT
|
|
OR NOT SWIFT_BUILD_CLANG_OVERLAYS_SKIP_BUILTIN_FLOAT))
|
|
# This library imports Darwin from the SDK, which re-exports
|
|
# _Builtin_float which is part of this build.
|
|
list(APPEND swift_distributed_darwin_dependencies _Builtin_float)
|
|
endif()
|
|
|
|
set(swift_distributed_link_libraries
|
|
swiftCore)
|
|
|
|
|
|
add_swift_target_library(swiftDistributed ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_STDLIB IMPORTS_NON_OSSA
|
|
DistributedActor.cpp
|
|
DistributedActor.swift
|
|
DistributedActorSystem.swift
|
|
DistributedAssertions.swift
|
|
DistributedDefaultExecutor.swift
|
|
DistributedMacros.swift
|
|
DistributedMetadata.swift
|
|
LocalTestingDistributedActorSystem.swift
|
|
|
|
SWIFT_MODULE_DEPENDS_IOS ${swift_distributed_darwin_dependencies}
|
|
SWIFT_MODULE_DEPENDS_OSX ${swift_distributed_darwin_dependencies}
|
|
SWIFT_MODULE_DEPENDS_TVOS ${swift_distributed_darwin_dependencies}
|
|
SWIFT_MODULE_DEPENDS_WATCHOS ${swift_distributed_darwin_dependencies}
|
|
SWIFT_MODULE_DEPENDS_ANDROID Android
|
|
SWIFT_MODULE_DEPENDS_LINUX Glibc
|
|
SWIFT_MODULE_DEPENDS_LINUX_STATIC Musl
|
|
SWIFT_MODULE_DEPENDS_FREEBSD Glibc
|
|
SWIFT_MODULE_DEPENDS_OPENBSD Glibc
|
|
SWIFT_MODULE_DEPENDS_CYGWIN Glibc
|
|
SWIFT_MODULE_DEPENDS_HAIKU Glibc
|
|
SWIFT_MODULE_DEPENDS_WINDOWS CRT WinSDK
|
|
|
|
LINK_LIBRARIES ${swift_distributed_link_libraries}
|
|
|
|
C_COMPILE_FLAGS
|
|
-DswiftDistributed_EXPORTS
|
|
-I${SWIFT_SOURCE_DIR}/stdlib/include
|
|
|
|
SWIFT_COMPILE_FLAGS
|
|
${SWIFT_STANDARD_LIBRARY_SWIFT_FLAGS}
|
|
-parse-stdlib
|
|
-enable-experimental-feature AllowUnsafeAttribute
|
|
-strict-memory-safety
|
|
|
|
LINK_FLAGS
|
|
"${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
|
|
|
|
SWIFT_MODULE_DEPENDS _Concurrency
|
|
INSTALL_IN_COMPONENT stdlib
|
|
)
|