Skip to content

Commit 6d6e55a

Browse files
committed
Apply feedback from pitch
1 parent f747162 commit 6d6e55a

26 files changed

+1661
-1336
lines changed

CMakeLists.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -647,10 +647,6 @@ option(SWIFT_ENABLE_EXPERIMENTAL_OBSERVATION
647647
"Enable build of the Swift observation module"
648648
FALSE)
649649

650-
option(SWIFT_ENABLE_SYNCHRONIZATION
651-
"Enable build of the Swift Synchronization module"
652-
FALSE)
653-
654650
option(SWIFT_ENABLE_DISPATCH
655651
"Enable use of libdispatch"
656652
TRUE)
@@ -1226,7 +1222,6 @@ if(SWIFT_BUILD_STDLIB OR SWIFT_BUILD_SDK_OVERLAY)
12261222
message(STATUS "Backtracing Support: ${SWIFT_ENABLE_BACKTRACING}")
12271223
message(STATUS "Unicode Support: ${SWIFT_STDLIB_ENABLE_UNICODE_DATA}")
12281224
message(STATUS "Observation Support: ${SWIFT_ENABLE_EXPERIMENTAL_OBSERVATION}")
1229-
message(STATUS "Synchronization Support: ${SWIFT_ENABLE_SYNCHRONIZATION}")
12301225
message(STATUS "")
12311226
else()
12321227
message(STATUS "Not building Swift standard library, SDK overlays, and runtime")

stdlib/cmake/modules/SwiftSource.cmake

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -321,10 +321,6 @@ function(_add_target_variant_swift_compile_flags
321321
list(APPEND result "-D" "SWIFT_ENABLE_EXPERIMENTAL_OBSERVATION")
322322
endif()
323323

324-
if (SWIFT_ENABLE_SYNCHRONIZATION)
325-
list(APPEND result "-D" "SWIFT_ENABLE_SYNCHRONIZATION")
326-
endif()
327-
328324
if(SWIFT_STDLIB_OS_VERSIONING)
329325
list(APPEND result "-D" "SWIFT_RUNTIME_OS_VERSIONING")
330326
endif()

stdlib/public/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,6 @@ if(SWIFT_BUILD_STDLIB AND NOT SWIFT_STDLIB_BUILD_ONLY_CORE_MODULES)
245245
if(SWIFT_ENABLE_BACKTRACING)
246246
add_subdirectory(Backtracing)
247247
endif()
248-
249-
if(SWIFT_ENABLE_SYNCHRONIZATION)
250-
add_subdirectory(Synchronization)
251-
endif()
252248
endif()
253249

254250
if(SWIFT_BUILD_REMOTE_MIRROR)

stdlib/public/Synchronization/AtomicBool.swift.gyb

Lines changed: 0 additions & 106 deletions
This file was deleted.

stdlib/public/Synchronization/AtomicIntegers.swift.gyb

Lines changed: 0 additions & 207 deletions
This file was deleted.

0 commit comments

Comments
 (0)