Build Information
Successful build of CollectionConcurrencyKit, reference 0.2.0 (903a94
), with Swift 6.0 for watchOS using Xcode 16.2 on 2 Dec 2024 03:10:58 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CollectionConcurrencyKit -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:155:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:161:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:155:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:167:46: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:155:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:227:22: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:223:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:229:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:223:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:235:42: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:223:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:266:26: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:262:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:268:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:262:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:274:46: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:262:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:334:22: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:330:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:336:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:330:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:342:42: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:330:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:372:26: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:368:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:374:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:368:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:380:46: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:368:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:43:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:44:27: note: closure captures 'operation' which is accessible to code in the current task
await operation(element)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:69:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:70:31: note: closure captures 'operation' which is accessible to code in the current task
try await operation(element)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:126:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:127:40: note: closure captures non-Sendable 'transform'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:127:50: note: closure captures non-Sendable 'element'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:161:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:162:44: note: closure captures non-Sendable 'transform'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:162:54: note: closure captures non-Sendable 'element'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:229:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:230:40: note: closure captures non-Sendable 'transform'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:230:50: note: closure captures non-Sendable 'element'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:268:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:269:44: note: closure captures non-Sendable 'transform'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:269:54: note: closure captures non-Sendable 'element'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:336:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:337:40: note: closure captures non-Sendable 'transform'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:337:50: note: closure captures non-Sendable 'element'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:374:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:375:44: note: closure captures non-Sendable 'transform'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:375:54: note: closure captures non-Sendable 'element'
return try await (idx, transform(element))
^
SwiftCompile normal armv7k Compiling\ CollectionConcurrencyKit.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.dia -target armv7k-apple-watchos8.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.o -index-unit-output-path /CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.dia -target armv7k-apple-watchos8.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.o -index-unit-output-path /CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:124:22: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:120:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:126:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:120:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:132:42: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:120:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:159:26: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:155:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:161:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:155:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:167:46: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:155:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:227:22: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:223:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:229:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:223:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:235:42: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:223:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:266:26: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:262:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:268:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:262:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:274:46: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:262:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:334:22: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:330:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:336:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:330:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:342:42: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:330:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:372:26: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:368:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:374:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:368:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:380:46: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:368:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:43:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:44:27: note: closure captures 'operation' which is accessible to code in the current task
await operation(element)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:69:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:70:31: note: closure captures 'operation' which is accessible to code in the current task
try await operation(element)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:126:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:127:40: note: closure captures non-Sendable 'transform'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:127:50: note: closure captures non-Sendable 'element'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:161:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:162:44: note: closure captures non-Sendable 'transform'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:162:54: note: closure captures non-Sendable 'element'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:229:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:230:40: note: closure captures non-Sendable 'transform'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:230:50: note: closure captures non-Sendable 'element'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:268:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:269:44: note: closure captures non-Sendable 'transform'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:269:54: note: closure captures non-Sendable 'element'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:336:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:337:40: note: closure captures non-Sendable 'transform'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:337:50: note: closure captures non-Sendable 'element'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:374:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:375:44: note: closure captures non-Sendable 'transform'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:375:54: note: closure captures non-Sendable 'element'
return try await (idx, transform(element))
^
SwiftCompile normal armv7k Compiling\ DictionarySupport.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.dia -target armv7k-apple-watchos8.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.o -index-unit-output-path /CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.dia -target armv7k-apple-watchos8.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.o -index-unit-output-path /CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/DictionarySupport.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:22:16: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (key: Key, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:22:16: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (key: Key, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:21:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:24:11: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:24:11: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:21:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:30:33: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:30:33: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:21:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:39:20: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (key: Key, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:39:20: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (key: Key, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:38:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async throws -> T) async throws -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:41:11: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:41:11: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:38:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async throws -> T) async throws -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:47:37: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:47:37: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:38:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async throws -> T) async throws -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:73:16: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (key: Key, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:73:16: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (key: Key, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:72:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T?) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:75:11: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:75:11: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:72:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T?) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:81:33: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:81:33: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:72:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T?) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:92:20: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:91:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Element) async throws -> T?) async throws -> [T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:94:11: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:91:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Element) async throws -> T?) async throws -> [T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:100:37: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:91:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Element) async throws -> T?) async throws -> [T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:24:39: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:25:20: note: closure captures non-Sendable 'key'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:25:25: note: closure captures non-Sendable 'transform'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:25:35: note: closure captures non-Sendable 'element'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:41:39: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:42:24: note: closure captures non-Sendable 'key'
return try await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:42:29: note: closure captures non-Sendable 'transform'
return try await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:42:39: note: closure captures non-Sendable 'element'
return try await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:75:39: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:76:20: note: closure captures non-Sendable 'key'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:76:25: note: closure captures non-Sendable 'transform'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:76:35: note: closure captures non-Sendable 'element'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:94:39: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:95:29: note: closure captures 'transform' which is accessible to code in the current task
return try await (idx, transform(element))
^
SwiftEmitModule normal arm64 Emitting\ module\ for\ CollectionConcurrencyKit (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.abi.json
EmitSwiftModule normal arm64 (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.abi.json
SwiftCompile normal arm64 Compiling\ DictionarySupport.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.o -index-unit-output-path /CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.o -index-unit-output-path /CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/DictionarySupport.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:22:16: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (key: Key, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:22:16: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (key: Key, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:21:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:24:11: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:24:11: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:21:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:30:33: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:30:33: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:21:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:39:20: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (key: Key, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:39:20: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (key: Key, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:38:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async throws -> T) async throws -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:41:11: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:41:11: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:38:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async throws -> T) async throws -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:47:37: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:47:37: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:38:27: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMapValues<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async throws -> T) async throws -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:73:16: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (key: Key, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:73:16: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (key: Key, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:72:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T?) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:75:11: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:75:11: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:72:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T?) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:81:33: warning: type 'Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:81:33: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:72:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Value) async -> T?) async -> [Key: T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:92:20: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:91:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Element) async throws -> T?) async throws -> [T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:94:11: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:91:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Element) async throws -> T?) async throws -> [T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:100:37: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:91:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(withPriority priority: TaskPriority? = nil, _ transform: @escaping (Element) async throws -> T?) async throws -> [T] {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:24:39: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:25:20: note: closure captures non-Sendable 'key'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:25:25: note: closure captures non-Sendable 'transform'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:25:35: note: closure captures non-Sendable 'element'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:41:39: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:42:24: note: closure captures non-Sendable 'key'
return try await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:42:29: note: closure captures non-Sendable 'transform'
return try await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:42:39: note: closure captures non-Sendable 'element'
return try await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:75:39: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:76:20: note: closure captures non-Sendable 'key'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:76:25: note: closure captures non-Sendable 'transform'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:76:35: note: closure captures non-Sendable 'element'
return await (key, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:94:39: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift:95:29: note: closure captures 'transform' which is accessible to code in the current task
return try await (idx, transform(element))
^
SwiftCompile normal arm64 Compiling\ CollectionConcurrencyKit.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.o -index-unit-output-path /CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionarySupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CollectionConcurrencyKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.o -index-unit-output-path /CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:124:22: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:120:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:126:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:120:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:132:42: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:120:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:159:26: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:155:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:161:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:155:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:167:46: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:155:24: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:227:22: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:223:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:229:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:223:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:235:42: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:223:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:266:26: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:262:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:268:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:262:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:274:46: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:262:31: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentCompactMap<T>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:334:22: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return await withTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:330:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:336:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:330:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:342:42: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:330:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:372:26: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:368:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:374:23: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:368:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:380:46: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
while let next = try await group.next() {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:368:28: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
func concurrentFlatMap<T: Sequence>(
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:43:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:44:27: note: closure captures 'operation' which is accessible to code in the current task
await operation(element)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:69:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:70:31: note: closure captures 'operation' which is accessible to code in the current task
try await operation(element)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:126:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:127:40: note: closure captures non-Sendable 'transform'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:127:50: note: closure captures non-Sendable 'element'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:161:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:162:44: note: closure captures non-Sendable 'transform'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:162:54: note: closure captures non-Sendable 'element'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:229:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:230:40: note: closure captures non-Sendable 'transform'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:230:50: note: closure captures non-Sendable 'element'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:268:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:269:44: note: closure captures non-Sendable 'transform'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:269:54: note: closure captures non-Sendable 'element'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:336:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:337:40: note: closure captures non-Sendable 'transform'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:337:50: note: closure captures non-Sendable 'element'
return await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:374:51: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
group.addTask(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:375:44: note: closure captures non-Sendable 'transform'
return try await (idx, transform(element))
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:375:54: note: closure captures non-Sendable 'element'
return try await (idx, transform(element))
^
SwiftDriverJobDiscovery normal arm64_32 Emitting module for CollectionConcurrencyKit (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
SwiftDriverJobDiscovery normal arm64 Emitting module for CollectionConcurrencyKit (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
SwiftDriverJobDiscovery normal armv7k Emitting module for CollectionConcurrencyKit (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
SwiftDriver\ Compilation\ Requirements CollectionConcurrencyKit normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionConcurrencyKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target armv7k-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements CollectionConcurrencyKit normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionConcurrencyKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64_32-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements CollectionConcurrencyKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionConcurrencyKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CollectionConcurrencyKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit-Swift.h (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CollectionConcurrencyKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.swiftmodule (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.swiftdoc (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.abi.json (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftmodule (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftdoc (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.abi.json (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftmodule (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftdoc (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.abi.json (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftsourceinfo (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.swiftsourceinfo (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftsourceinfo (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64_32 Compiling CollectionConcurrencyKit.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
SwiftDriverJobDiscovery normal armv7k Compiling CollectionConcurrencyKit.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
SwiftDriverJobDiscovery normal arm64 Compiling CollectionConcurrencyKit.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling DictionarySupport.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
SwiftDriverJobDiscovery normal arm64 Compiling DictionarySupport.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
SwiftDriver\ Compilation CollectionConcurrencyKit normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionConcurrencyKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64_32-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation CollectionConcurrencyKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionConcurrencyKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling DictionarySupport.swift (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
SwiftDriver\ Compilation CollectionConcurrencyKit normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionConcurrencyKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target armv7k-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/Binary/CollectionConcurrencyKit.o normal arm64 (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos8.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/CollectionConcurrencyKit_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/Binary/CollectionConcurrencyKit.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/Binary/CollectionConcurrencyKit.o normal arm64_32 (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos8.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/CollectionConcurrencyKit_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/Binary/CollectionConcurrencyKit.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/Binary/CollectionConcurrencyKit.o normal armv7k (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos8.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/CollectionConcurrencyKit_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/Binary/CollectionConcurrencyKit.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.o normal arm64\ armv7k\ arm64_32 (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64/Binary/CollectionConcurrencyKit.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/armv7k/Binary/CollectionConcurrencyKit.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CollectionConcurrencyKit.build/Debug-watchos/CollectionConcurrencyKit.build/Objects-normal/arm64_32/Binary/CollectionConcurrencyKit.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.o (in target 'CollectionConcurrencyKit' from project 'CollectionConcurrencyKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionConcurrencyKit.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CollectionConcurrencyKit",
"name" : "CollectionConcurrencyKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "watchos",
"version" : "8.0"
},
{
"name" : "tvos",
"version" : "15.0"
}
],
"products" : [
{
"name" : "CollectionConcurrencyKit",
"targets" : [
"CollectionConcurrencyKit"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CollectionConcurrencyKitTests",
"module_type" : "SwiftTarget",
"name" : "CollectionConcurrencyKitTests",
"path" : "Tests",
"sources" : [
"CompactMapTests.swift",
"FlatMapTests.swift",
"ForEachTests.swift",
"MapTests.swift",
"TestCase.swift",
"TimingTests.swift"
],
"target_dependencies" : [
"CollectionConcurrencyKit"
],
"type" : "test"
},
{
"c99name" : "CollectionConcurrencyKit",
"module_type" : "SwiftTarget",
"name" : "CollectionConcurrencyKit",
"path" : "Sources",
"product_memberships" : [
"CollectionConcurrencyKit"
],
"sources" : [
"CollectionConcurrencyKit.swift",
"DictionarySupport.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.