This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Ciao with Swift 6.0 for watchOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Ciao -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift:76:38: error: 'NetService' is unavailable in watchOS
74 |     }
75 |
76 |     func netServiceDidStop(_ sender: NetService) {
   |                                      `- error: 'NetService' is unavailable in watchOS
77 |         server?.started = false
78 |         Logger.info("CiaoServer Stoped")
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift:63:37: error: 'NetServiceDelegate' is unavailable in watchOS
61 | }
62 |
63 | class CiaoServerDelegate: NSObject, NetServiceDelegate {
   |                                     `- error: 'NetServiceDelegate' is unavailable in watchOS
64 |     weak var server: CiaoServer?
65 |
Foundation.NetServiceDelegate:2:17: note: 'NetServiceDelegate' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | public protocol NetServiceDelegate : NSObjectProtocol {
   |                 `- note: 'NetServiceDelegate' has been explicitly marked unavailable here
 3 |     optional func netServiceWillPublish(_ sender: NetService)
 4 |     optional func netServiceDidPublish(_ sender: NetService)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:34:12: warning: var 'LoggerLevel' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 32 | }
 33 |
 34 | public var LoggerLevel = Level.verbose
    |            |- warning: var 'LoggerLevel' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'LoggerLevel' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'LoggerLevel' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 | struct Logger {
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:37:24: warning: static property 'dateFormat' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 | struct Logger {
 37 |     private static var dateFormat = "yyyy-MM-dd hh:mm:ssSSS"
    |                        |- warning: static property 'dateFormat' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'dateFormat' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'dateFormat' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     private static var dateFormatter: DateFormatter {
 39 |         let formatter = DateFormatter()
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift:11:11: error: 'NetService' is unavailable in watchOS
 9 | import Foundation
10 |
11 | extension NetService {
   |           `- error: 'NetService' is unavailable in watchOS
12 |     public class func dictionary(fromTXTRecord data: Data) -> [String: String] {
13 |         return NetService.dictionary(fromTXTRecord: data).mapValues { data in
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
SwiftEmitModule normal armv7k Emitting\ module\ for\ Ciao (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.abi.json
SwiftCompile normal armv7k Compiling\ NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
SwiftDriver\ Compilation\ Requirements Ciao normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Ciao -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos5.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao-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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Ciao' from project 'Ciao')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64_32 Compiling\ NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
	SwiftCompile normal arm64_32 Compiling\ CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift (in target 'Ciao' from project 'Ciao')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift (in target 'Ciao' from project 'Ciao')
	SwiftCompile normal arm64_32 Compiling\ CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift (in target 'Ciao' from project 'Ciao')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift (in target 'Ciao' from project 'Ciao')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Ciao (in target 'Ciao' from project 'Ciao')
	SwiftCompile normal armv7k Compiling\ NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
(8 failures)
Command line invocation:
    /Applications/Xcode-15.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme Ciao -destination generic/platform=watchos "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete"
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportToolchainOverrideForManifestLoading = org.swift.600202405261a
    IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
    TOOLCHAINS = org.swift.600202405261a
Resolve Package Graph
Resolved source packages:
  Ciao: /Users/admin/builder/spi-builder-workspace
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'Ciao' in project 'Ciao'
        ➜ Explicit dependency on target 'Ciao' in project 'Ciao'
    Target 'Ciao' in project 'Ciao' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'.
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Ciao' from project 'Ciao')
SwiftDriver Ciao normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Ciao -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao-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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao_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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver Ciao normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Ciao -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao-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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver Ciao normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Ciao -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos5.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao-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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal armv7k Compiling\ ServiceType.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.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/Ciao/ServiceType.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/ServiceType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.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/Ciao/CiaoResolver.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoResolver.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal armv7k Emitting\ module\ for\ Ciao (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao.abi.json
SwiftCompile normal armv7k Compiling\ NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.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/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/NetServiceExtension.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.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/Ciao/CiaoBrowser.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoBrowser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.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/Ciao/CiaoServer.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/CiaoServer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ ServiceType.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/ServiceType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.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/Ciao/Logger.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/armv7k/Logger.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/NetServiceExtension.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift:11:11: error: 'NetService' is unavailable in watchOS
extension NetService {
          ^~~~~~~~~~
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
open class NetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift:13:16: error: 'NetService' is unavailable in watchOS
        return NetService.dictionary(fromTXTRecord: data).mapValues { data in
               ^~~~~~~~~~
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
open class NetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift:19:16: error: 'NetService' is unavailable in watchOS
        return NetService.data(fromTXTRecord: data.mapValues { $0.data(using: .utf8) ?? Data() })
               ^~~~~~~~~~
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
open class NetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift:27:27: error: 'NetService' is unavailable in watchOS
        self.setTXTRecord(NetService.data(fromTXTRecord: dictionary))
                          ^~~~~~~~~~
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
open class NetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift:33:25: error: cannot find 'CFNetServiceCreateDictionaryWithTXTData' in scope
        let txtRecord = CFNetServiceCreateDictionaryWithTXTData(nil, txtRecordData as CFData)?.takeRetainedValue() as? Dictionary<String,Data> ?? ["": txtRecordData]
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift:33:65: error: 'nil' requires a contextual type
        let txtRecord = CFNetServiceCreateDictionaryWithTXTData(nil, txtRecordData as CFData)?.takeRetainedValue() as? Dictionary<String,Data> ?? ["": txtRecordData]
                                                                ^
SwiftEmitModule normal arm64 Emitting\ module\ for\ Ciao (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao.abi.json
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Ciao (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:12:28: error: 'NetServiceBrowser' is unavailable in watchOS
 10 |
 11 | public class CiaoBrowser {
 12 |     var netServiceBrowser: NetServiceBrowser
    |                            `- error: 'NetServiceBrowser' is unavailable in watchOS
 13 |     var delegate: CiaoBrowserDelegate
 14 |
Foundation.NetServiceBrowser:2:12: note: 'NetServiceBrowser' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetServiceBrowser : NSObject {
   |            `- note: 'NetServiceBrowser' has been explicitly marked unavailable here
 3 |     public init()
 4 |     unowned(unsafe) open var delegate: (any NetServiceBrowserDelegate)? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:15:31: error: 'NetService' is unavailable in watchOS
 13 |     var delegate: CiaoBrowserDelegate
 14 |
 15 |     public var services = Set<NetService>()
    |                               `- error: 'NetService' is unavailable in watchOS
 16 |
 17 |     // Handlers
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:18:39: error: 'NetService' is unavailable in watchOS
 16 |
 17 |     // Handlers
 18 |     public var serviceFoundHandler: ((NetService) -> Void)?
    |                                       `- error: 'NetService' is unavailable in watchOS
 19 |     public var serviceRemovedHandler: ((NetService) -> Void)?
 20 |     public var serviceResolvedHandler: ((Result<NetService, ErrorDictionary>) -> Void)?
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:19:41: error: 'NetService' is unavailable in watchOS
 17 |     // Handlers
 18 |     public var serviceFoundHandler: ((NetService) -> Void)?
 19 |     public var serviceRemovedHandler: ((NetService) -> Void)?
    |                                         `- error: 'NetService' is unavailable in watchOS
 20 |     public var serviceResolvedHandler: ((Result<NetService, ErrorDictionary>) -> Void)?
 21 |     public var startedSearchingHandler: (() -> Void)?
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:20:49: error: 'NetService' is unavailable in watchOS
 18 |     public var serviceFoundHandler: ((NetService) -> Void)?
 19 |     public var serviceRemovedHandler: ((NetService) -> Void)?
 20 |     public var serviceResolvedHandler: ((Result<NetService, ErrorDictionary>) -> Void)?
    |                                                 `- error: 'NetService' is unavailable in watchOS
 21 |     public var startedSearchingHandler: (() -> Void)?
 22 |     public var stoppedSearchingHandler: (() -> Void)?
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:51:46: error: 'NetService' is unavailable in watchOS
 49 |     }
 50 |
 51 |     fileprivate func serviceFound(_ service: NetService) {
    |                                              `- error: 'NetService' is unavailable in watchOS
 52 |         services.update(with: service)
 53 |         serviceFoundHandler?(service)
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:65:48: error: 'NetService' is unavailable in watchOS
 63 |     }
 64 |
 65 |     fileprivate func serviceRemoved(_ service: NetService) {
    |                                                `- error: 'NetService' is unavailable in watchOS
 66 |         services.remove(service)
 67 |         serviceRemovedHandler?(service)
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:81:39: error: 'NetServiceBrowser' is unavailable in watchOS
 79 | class CiaoBrowserDelegate: NSObject, NetServiceBrowserDelegate {
 80 |     weak var browser: CiaoBrowser?
 81 |     func netServiceBrowser(_ browser: NetServiceBrowser, didFind service: NetService, moreComing: Bool) {
    |                                       `- error: 'NetServiceBrowser' is unavailable in watchOS
 82 |         Logger.info("Service found", service)
 83 |         self.browser?.serviceFound(service)
Foundation.NetServiceBrowser:2:12: note: 'NetServiceBrowser' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetServiceBrowser : NSObject {
   |            `- note: 'NetServiceBrowser' has been explicitly marked unavailable here
 3 |     public init()
 4 |     unowned(unsafe) open var delegate: (any NetServiceBrowserDelegate)? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:81:75: error: 'NetService' is unavailable in watchOS
 79 | class CiaoBrowserDelegate: NSObject, NetServiceBrowserDelegate {
 80 |     weak var browser: CiaoBrowser?
 81 |     func netServiceBrowser(_ browser: NetServiceBrowser, didFind service: NetService, moreComing: Bool) {
    |                                                                           `- error: 'NetService' is unavailable in watchOS
 82 |         Logger.info("Service found", service)
 83 |         self.browser?.serviceFound(service)
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:86:49: error: 'NetServiceBrowser' is unavailable in watchOS
 84 |     }
 85 |
 86 |     func netServiceBrowserWillSearch(_ browser: NetServiceBrowser) {
    |                                                 `- error: 'NetServiceBrowser' is unavailable in watchOS
 87 |         Logger.info("Browser will search")
 88 |         self.browser?.isSearching = true
Foundation.NetServiceBrowser:2:12: note: 'NetServiceBrowser' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetServiceBrowser : NSObject {
   |            `- note: 'NetServiceBrowser' has been explicitly marked unavailable here
 3 |     public init()
 4 |     unowned(unsafe) open var delegate: (any NetServiceBrowserDelegate)? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:91:52: error: 'NetServiceBrowser' is unavailable in watchOS
 89 |     }
 90 |
 91 |     func netServiceBrowserDidStopSearch(_ browser: NetServiceBrowser) {
    |                                                    `- error: 'NetServiceBrowser' is unavailable in watchOS
 92 |         Logger.info("Browser stopped search")
 93 |         self.browser?.isSearching = false
Foundation.NetServiceBrowser:2:12: note: 'NetServiceBrowser' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetServiceBrowser : NSObject {
   |            `- note: 'NetServiceBrowser' has been explicitly marked unavailable here
 3 |     public init()
 4 |     unowned(unsafe) open var delegate: (any NetServiceBrowserDelegate)? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:96:39: error: 'NetServiceBrowser' is unavailable in watchOS
 94 |     }
 95 |
 96 |     func netServiceBrowser(_ browser: NetServiceBrowser, didNotSearch errorDict: [String: NSNumber]) {
    |                                       `- error: 'NetServiceBrowser' is unavailable in watchOS
 97 |         Logger.debug("Browser didn't search", errorDict)
 98 |         self.browser?.isSearching = false
Foundation.NetServiceBrowser:2:12: note: 'NetServiceBrowser' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetServiceBrowser : NSObject {
   |            `- note: 'NetServiceBrowser' has been explicitly marked unavailable here
 3 |     public init()
 4 |     unowned(unsafe) open var delegate: (any NetServiceBrowserDelegate)? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:101:39: error: 'NetServiceBrowser' is unavailable in watchOS
 99 |     }
100 |
101 |     func netServiceBrowser(_ browser: NetServiceBrowser, didRemove service: NetService, moreComing: Bool) {
    |                                       `- error: 'NetServiceBrowser' is unavailable in watchOS
102 |         Logger.info("Service removed", service)
103 |         self.browser?.serviceRemoved(service)
Foundation.NetServiceBrowser:2:12: note: 'NetServiceBrowser' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetServiceBrowser : NSObject {
   |            `- note: 'NetServiceBrowser' has been explicitly marked unavailable here
 3 |     public init()
 4 |     unowned(unsafe) open var delegate: (any NetServiceBrowserDelegate)? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:101:77: error: 'NetService' is unavailable in watchOS
 99 |     }
100 |
101 |     func netServiceBrowser(_ browser: NetServiceBrowser, didRemove service: NetService, moreComing: Bool) {
    |                                                                             `- error: 'NetService' is unavailable in watchOS
102 |         Logger.info("Service removed", service)
103 |         self.browser?.serviceRemoved(service)
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift:79:38: error: 'NetServiceBrowserDelegate' is unavailable in watchOS
 77 | }
 78 |
 79 | class CiaoBrowserDelegate: NSObject, NetServiceBrowserDelegate {
    |                                      `- error: 'NetServiceBrowserDelegate' is unavailable in watchOS
 80 |     weak var browser: CiaoBrowser?
 81 |     func netServiceBrowser(_ browser: NetServiceBrowser, didFind service: NetService, moreComing: Bool) {
Foundation.NetServiceBrowserDelegate:2:17: note: 'NetServiceBrowserDelegate' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | public protocol NetServiceBrowserDelegate : NSObjectProtocol {
   |                 `- note: 'NetServiceBrowserDelegate' has been explicitly marked unavailable here
 3 |     optional func netServiceBrowserWillSearch(_ browser: NetServiceBrowser)
 4 |     optional func netServiceBrowserDidStopSearch(_ browser: NetServiceBrowser)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift:11:26: error: 'NetService' is unavailable in watchOS
 9 |
10 | public class CiaoResolver {
11 |     public init(service: NetService) {
   |                          `- error: 'NetService' is unavailable in watchOS
12 |         self.service = service
13 |     }
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift:15:18: error: 'NetService' is unavailable in watchOS
13 |     }
14 |
15 |     let service: NetService
   |                  `- error: 'NetService' is unavailable in watchOS
16 |     let delegate: CiaoResolverDelegate = CiaoResolverDelegate()
17 |
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift:18:90: error: 'NetService' is unavailable in watchOS
16 |     let delegate: CiaoResolverDelegate = CiaoResolverDelegate()
17 |
18 |     public func resolve(withTimeout timeout: TimeInterval, completion: @escaping (Result<NetService, ErrorDictionary>) -> Void) {
   |                                                                                          `- error: 'NetService' is unavailable in watchOS
19 |         delegate.onResolve = completion
20 |         service.delegate = delegate
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift:32:1: warning: extension declares a conformance of imported type 'Dictionary' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
30 |
31 | public typealias ErrorDictionary = [String: NSNumber]
32 | extension ErrorDictionary: Error {}
   | |- warning: extension declares a conformance of imported type 'Dictionary' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
33 |
34 | extension CiaoResolver {
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift:36:33: error: 'NetService' is unavailable in watchOS
34 | extension CiaoResolver {
35 |     class CiaoResolverDelegate: NSObject, NetServiceDelegate {
36 |         var onResolve: ((Result<NetService, ErrorDictionary>) -> Void)?
   |                                 `- error: 'NetService' is unavailable in watchOS
37 |
38 |         func netService(_ sender: NetService, didNotResolve errorDict: [String: NSNumber]) {
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift:38:35: error: 'NetService' is unavailable in watchOS
36 |         var onResolve: ((Result<NetService, ErrorDictionary>) -> Void)?
37 |
38 |         func netService(_ sender: NetService, didNotResolve errorDict: [String: NSNumber]) {
   |                                   `- error: 'NetService' is unavailable in watchOS
39 |             Logger.error("Service didn't resolve", sender, errorDict)
40 |             onResolve?(Result.failure(errorDict))
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift:43:52: error: 'NetService' is unavailable in watchOS
41 |         }
42 |
43 |         func netServiceDidResolveAddress(_ sender: NetService) {
   |                                                    `- error: 'NetService' is unavailable in watchOS
44 |             Logger.info("Service resolved", sender)
45 |             onResolve?(Result.success(sender))
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift:48:46: error: 'NetService' is unavailable in watchOS
46 |         }
47 |
48 |         func netServiceWillResolve(_ sender: NetService) {
   |                                              `- error: 'NetService' is unavailable in watchOS
49 |             Logger.info("Service will resolve", sender)
50 |         }
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift:35:43: error: 'NetServiceDelegate' is unavailable in watchOS
33 |
34 | extension CiaoResolver {
35 |     class CiaoResolverDelegate: NSObject, NetServiceDelegate {
   |                                           `- error: 'NetServiceDelegate' is unavailable in watchOS
36 |         var onResolve: ((Result<NetService, ErrorDictionary>) -> Void)?
37 |
Foundation.NetServiceDelegate:2:17: note: 'NetServiceDelegate' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | public protocol NetServiceDelegate : NSObjectProtocol {
   |                 `- note: 'NetServiceDelegate' has been explicitly marked unavailable here
 3 |     optional func netServiceWillPublish(_ sender: NetService)
 4 |     optional func netServiceDidPublish(_ sender: NetService)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift:12:21: error: 'NetService' is unavailable in watchOS
10 |
11 | public class CiaoServer {
12 |     var netService: NetService
   |                     `- error: 'NetService' is unavailable in watchOS
13 |     var delegate: CiaoServerDelegate?
14 |     var successCallback: ((Bool) -> Void)?
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift:42:32: error: 'NetService' is unavailable in watchOS
40 |     }
41 |
42 |     public func start(options: NetService.Options = [], success: ((Bool) -> Void)? = nil) {
   |                                `- error: 'NetService' is unavailable in watchOS
43 |         if started {
44 |             success?(true)
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift:66:41: error: 'NetService' is unavailable in watchOS
64 |     weak var server: CiaoServer?
65 |
66 |     func netServiceDidPublish(_ sender: NetService) {
   |                                         `- error: 'NetService' is unavailable in watchOS
67 |         server?.started = true
68 |         Logger.info("CiaoServer Started")
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift:71:31: error: 'NetService' is unavailable in watchOS
69 |     }
70 |
71 |     func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
   |                               `- error: 'NetService' is unavailable in watchOS
72 |         server?.started = false
73 |         Logger.error("CiaoServer did not publish", errorDict)
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift:76:38: error: 'NetService' is unavailable in watchOS
74 |     }
75 |
76 |     func netServiceDidStop(_ sender: NetService) {
   |                                      `- error: 'NetService' is unavailable in watchOS
77 |         server?.started = false
78 |         Logger.info("CiaoServer Stoped")
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift:63:37: error: 'NetServiceDelegate' is unavailable in watchOS
61 | }
62 |
63 | class CiaoServerDelegate: NSObject, NetServiceDelegate {
   |                                     `- error: 'NetServiceDelegate' is unavailable in watchOS
64 |     weak var server: CiaoServer?
65 |
Foundation.NetServiceDelegate:2:17: note: 'NetServiceDelegate' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | public protocol NetServiceDelegate : NSObjectProtocol {
   |                 `- note: 'NetServiceDelegate' has been explicitly marked unavailable here
 3 |     optional func netServiceWillPublish(_ sender: NetService)
 4 |     optional func netServiceDidPublish(_ sender: NetService)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:34:12: warning: var 'LoggerLevel' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 32 | }
 33 |
 34 | public var LoggerLevel = Level.verbose
    |            |- warning: var 'LoggerLevel' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'LoggerLevel' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'LoggerLevel' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 | struct Logger {
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:37:24: warning: static property 'dateFormat' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 | struct Logger {
 37 |     private static var dateFormat = "yyyy-MM-dd hh:mm:ssSSS"
    |                        |- warning: static property 'dateFormat' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'dateFormat' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'dateFormat' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     private static var dateFormatter: DateFormatter {
 39 |         let formatter = DateFormatter()
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift:11:11: error: 'NetService' is unavailable in watchOS
 9 | import Foundation
10 |
11 | extension NetService {
   |           `- error: 'NetService' is unavailable in watchOS
12 |     public class func dictionary(fromTXTRecord data: Data) -> [String: String] {
13 |         return NetService.dictionary(fromTXTRecord: data).mapValues { data in
Foundation.NetService:2:12: note: 'NetService' has been explicitly marked unavailable here
 1 | @available(watchOS, unavailable)
 2 | open class NetService : NSObject {
   |            `- note: 'NetService' has been explicitly marked unavailable here
 3 |     public init(domain: String, type: String, name: String, port: Int32)
 4 |     public convenience init(domain: String, type: String, name: String)
SwiftDriverJobDiscovery normal arm64_32 Compiling ServiceType.swift (in target 'Ciao' from project 'Ciao')
SwiftCompile normal arm64_32 Compiling\ Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Logger.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:34:12: warning: var 'LoggerLevel' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
public var LoggerLevel = Level.verbose
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:34:12: note: convert 'LoggerLevel' to a 'let' constant to make 'Sendable' shared state immutable
public var LoggerLevel = Level.verbose
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:34:12: note: annotate 'LoggerLevel' with '@MainActor' if property should only be accessed from the main actor
public var LoggerLevel = Level.verbose
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:34:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var LoggerLevel = Level.verbose
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:37:24: warning: static property 'dateFormat' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var dateFormat = "yyyy-MM-dd hh:mm:ssSSS"
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:37:24: note: convert 'dateFormat' to a 'let' constant to make 'Sendable' shared state immutable
    private static var dateFormat = "yyyy-MM-dd hh:mm:ssSSS"
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:37:24: note: annotate 'dateFormat' with '@MainActor' if property should only be accessed from the main actor
    private static var dateFormat = "yyyy-MM-dd hh:mm:ssSSS"
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift:37:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var dateFormat = "yyyy-MM-dd hh:mm:ssSSS"
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoResolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoServer.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/ServiceType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/CiaoBrowser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/CiaoBrowser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/CiaoBrowser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/CiaoBrowser.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/Ciao_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Ciao -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/CiaoBrowser.o -index-unit-output-path /Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64/CiaoBrowser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
SwiftDriver\ Compilation\ Requirements Ciao normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Ciao' from project 'Ciao')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Ciao -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos5.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao-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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao_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/Ciao.build/Debug-watchos/Ciao.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Ciao.build/Debug-watchos/Ciao.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/Ciao.build/Debug-watchos/Ciao.build/Objects-normal/arm64_32/Ciao-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Ciao' from project 'Ciao')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64_32 Compiling\ NetServiceExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Ciao/NetServiceExtension.swift (in target 'Ciao' from project 'Ciao')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Ciao (in target 'Ciao' from project 'Ciao')
	SwiftCompile normal arm64 Compiling\ CiaoBrowser.swift /Users/admin/builder/spi-builder-workspace/Sources/Ciao/CiaoBrowser.swift (in target 'Ciao' from project 'Ciao')
(4 failures)
BUILD FAILURE 6.0 watchOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.