Build Information
Successful build of NWHTTPProtocol with Swift 6.0 for macOS (Xcode) using Xcode 16.0.
Swift 6 data race errors: 35
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 NWHTTPProtocol-Package -destination platform=macos,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 | }
59 |
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:24:14: warning: static property 'ok' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct HTTPStatus: RawRepresentable, Hashable {
| `- note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
10 | public let rawValue : Int
11 | public init(rawValue status: Int) { self.rawValue = status }
:
22 | public extension HTTPStatus {
23 |
24 | static let ok : HTTPStatus = 200
| |- warning: static property 'ok' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ok' 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
25 | static let created : HTTPStatus = 201
26 | static let noContent : HTTPStatus = 204
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:25:14: warning: static property 'created' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct HTTPStatus: RawRepresentable, Hashable {
| `- note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
10 | public let rawValue : Int
11 | public init(rawValue status: Int) { self.rawValue = status }
:
23 |
24 | static let ok : HTTPStatus = 200
25 | static let created : HTTPStatus = 201
| |- warning: static property 'created' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'created' 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
26 | static let noContent : HTTPStatus = 204
27 |
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:26:14: warning: static property 'noContent' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct HTTPStatus: RawRepresentable, Hashable {
| `- note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
10 | public let rawValue : Int
11 | public init(rawValue status: Int) { self.rawValue = status }
:
24 | static let ok : HTTPStatus = 200
25 | static let created : HTTPStatus = 201
26 | static let noContent : HTTPStatus = 204
| |- warning: static property 'noContent' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noContent' 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
27 |
28 | static let badRequest : HTTPStatus = 400
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:28:14: warning: static property 'badRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct HTTPStatus: RawRepresentable, Hashable {
| `- note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
10 | public let rawValue : Int
11 | public init(rawValue status: Int) { self.rawValue = status }
:
26 | static let noContent : HTTPStatus = 204
27 |
28 | static let badRequest : HTTPStatus = 400
| |- warning: static property 'badRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'badRequest' 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
29 | static let paymentRequired : HTTPStatus = 402
30 | static let forbidden : HTTPStatus = 403
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:29:14: warning: static property 'paymentRequired' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct HTTPStatus: RawRepresentable, Hashable {
| `- note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
10 | public let rawValue : Int
11 | public init(rawValue status: Int) { self.rawValue = status }
:
27 |
28 | static let badRequest : HTTPStatus = 400
29 | static let paymentRequired : HTTPStatus = 402
| |- warning: static property 'paymentRequired' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'paymentRequired' 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
30 | static let forbidden : HTTPStatus = 403
31 | static let notFound : HTTPStatus = 404
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:30:14: warning: static property 'forbidden' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct HTTPStatus: RawRepresentable, Hashable {
| `- note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
10 | public let rawValue : Int
11 | public init(rawValue status: Int) { self.rawValue = status }
:
28 | static let badRequest : HTTPStatus = 400
29 | static let paymentRequired : HTTPStatus = 402
30 | static let forbidden : HTTPStatus = 403
| |- warning: static property 'forbidden' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'forbidden' 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
31 | static let notFound : HTTPStatus = 404
32 |
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:31:14: warning: static property 'notFound' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct HTTPStatus: RawRepresentable, Hashable {
| `- note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
10 | public let rawValue : Int
11 | public init(rawValue status: Int) { self.rawValue = status }
:
29 | static let paymentRequired : HTTPStatus = 402
30 | static let forbidden : HTTPStatus = 403
31 | static let notFound : HTTPStatus = 404
| |- warning: static property 'notFound' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'notFound' 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
32 |
33 | static let serverError : HTTPStatus = 500
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:33:14: warning: static property 'serverError' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct HTTPStatus: RawRepresentable, Hashable {
| `- note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
10 | public let rawValue : Int
11 | public init(rawValue status: Int) { self.rawValue = status }
:
31 | static let notFound : HTTPStatus = 404
32 |
33 | static let serverError : HTTPStatus = 500
| |- warning: static property 'serverError' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'serverError' 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
34 | }
35 |
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift:9:32: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
7 |
8 | public struct StringEncodingError : Swift.Error {
9 | public let encoding : String.Encoding
| `- warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
10 | }
11 |
Foundation.String:3:19: note: type declared here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | extension String {
3 | public struct Encoding : RawRepresentable, Sendable, Equatable {
| `- note: type declared here
4 | public var rawValue: UInt
5 | public init(rawValue: UInt)
SwiftCompile normal arm64 Compiling\ HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPMethod.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:31:14: warning: static property 'GET' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let GET : HTTPMethod = "GET"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:31:14: note: annotate 'GET' with '@MainActor' if property should only be accessed from the main actor
static let GET : HTTPMethod = "GET"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:31:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let GET : HTTPMethod = "GET"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:32:14: warning: static property 'POST' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let POST : HTTPMethod = "POST"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:32:14: note: annotate 'POST' with '@MainActor' if property should only be accessed from the main actor
static let POST : HTTPMethod = "POST"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:32:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let POST : HTTPMethod = "POST"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:33:14: warning: static property 'MKCALENDAR' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let MKCALENDAR : HTTPMethod = "MKCALENDAR"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:33:14: note: annotate 'MKCALENDAR' with '@MainActor' if property should only be accessed from the main actor
static let MKCALENDAR : HTTPMethod = "MKCALENDAR"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:33:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let MKCALENDAR : HTTPMethod = "MKCALENDAR"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:34:14: warning: static property 'DELETE' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let DELETE : HTTPMethod = "DELETE"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:34:14: note: annotate 'DELETE' with '@MainActor' if property should only be accessed from the main actor
static let DELETE : HTTPMethod = "DELETE"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:34:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let DELETE : HTTPMethod = "DELETE"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:35:14: warning: static property 'HEAD' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let HEAD : HTTPMethod = "HEAD"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:35:14: note: annotate 'HEAD' with '@MainActor' if property should only be accessed from the main actor
static let HEAD : HTTPMethod = "HEAD"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:35:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let HEAD : HTTPMethod = "HEAD"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:36:14: warning: static property 'PUT' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let PUT : HTTPMethod = "PUT"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:36:14: note: annotate 'PUT' with '@MainActor' if property should only be accessed from the main actor
static let PUT : HTTPMethod = "PUT"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:36:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let PUT : HTTPMethod = "PUT"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:37:14: warning: static property 'CONNECT' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let CONNECT : HTTPMethod = "CONNECT"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:37:14: note: annotate 'CONNECT' with '@MainActor' if property should only be accessed from the main actor
static let CONNECT : HTTPMethod = "CONNECT"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:37:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let CONNECT : HTTPMethod = "CONNECT"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:38:14: warning: static property 'OPTIONS' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let OPTIONS : HTTPMethod = "OPTIONS"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:38:14: note: annotate 'OPTIONS' with '@MainActor' if property should only be accessed from the main actor
static let OPTIONS : HTTPMethod = "OPTIONS"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:38:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let OPTIONS : HTTPMethod = "OPTIONS"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:39:14: warning: static property 'TRACE' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let TRACE : HTTPMethod = "TRACE"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:39:14: note: annotate 'TRACE' with '@MainActor' if property should only be accessed from the main actor
static let TRACE : HTTPMethod = "TRACE"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:39:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let TRACE : HTTPMethod = "TRACE"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:40:14: warning: static property 'COPY' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let COPY : HTTPMethod = "COPY"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:40:14: note: annotate 'COPY' with '@MainActor' if property should only be accessed from the main actor
static let COPY : HTTPMethod = "COPY"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:40:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let COPY : HTTPMethod = "COPY"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:41:14: warning: static property 'LOCK' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let LOCK : HTTPMethod = "LOCK"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:41:14: note: annotate 'LOCK' with '@MainActor' if property should only be accessed from the main actor
static let LOCK : HTTPMethod = "LOCK"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:41:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let LOCK : HTTPMethod = "LOCK"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:42:14: warning: static property 'MKCOL' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let MKCOL : HTTPMethod = "MKCOL"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:42:14: note: annotate 'MKCOL' with '@MainActor' if property should only be accessed from the main actor
static let MKCOL : HTTPMethod = "MKCOL"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:42:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let MKCOL : HTTPMethod = "MKCOL"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:43:14: warning: static property 'MOVE' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let MOVE : HTTPMethod = "MOVE"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:43:14: note: annotate 'MOVE' with '@MainActor' if property should only be accessed from the main actor
static let MOVE : HTTPMethod = "MOVE"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:43:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let MOVE : HTTPMethod = "MOVE"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:44:14: warning: static property 'PROPFIND' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let PROPFIND : HTTPMethod = "PROPFIND"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:44:14: note: annotate 'PROPFIND' with '@MainActor' if property should only be accessed from the main actor
static let PROPFIND : HTTPMethod = "PROPFIND"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:44:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let PROPFIND : HTTPMethod = "PROPFIND"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:45:14: warning: static property 'PROPPATCH' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let PROPPATCH : HTTPMethod = "PROPPATCH"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:45:14: note: annotate 'PROPPATCH' with '@MainActor' if property should only be accessed from the main actor
static let PROPPATCH : HTTPMethod = "PROPPATCH"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:45:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let PROPPATCH : HTTPMethod = "PROPPATCH"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:46:14: warning: static property 'SEARCH' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let SEARCH : HTTPMethod = "SEARCH"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:46:14: note: annotate 'SEARCH' with '@MainActor' if property should only be accessed from the main actor
static let SEARCH : HTTPMethod = "SEARCH"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:46:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let SEARCH : HTTPMethod = "SEARCH"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:47:14: warning: static property 'UNLOCK' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let UNLOCK : HTTPMethod = "UNLOCK"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:47:14: note: annotate 'UNLOCK' with '@MainActor' if property should only be accessed from the main actor
static let UNLOCK : HTTPMethod = "UNLOCK"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:47:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let UNLOCK : HTTPMethod = "UNLOCK"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:48:14: warning: static property 'REPORT' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let REPORT : HTTPMethod = "REPORT"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:48:14: note: annotate 'REPORT' with '@MainActor' if property should only be accessed from the main actor
static let REPORT : HTTPMethod = "REPORT"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:48:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let REPORT : HTTPMethod = "REPORT"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:49:14: warning: static property 'MKACTIVITY' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let MKACTIVITY : HTTPMethod = "MKACTIVITY"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:49:14: note: annotate 'MKACTIVITY' with '@MainActor' if property should only be accessed from the main actor
static let MKACTIVITY : HTTPMethod = "MKACTIVITY"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:49:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let MKACTIVITY : HTTPMethod = "MKACTIVITY"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:50:14: warning: static property 'CHECKOUT' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let CHECKOUT : HTTPMethod = "CHECKOUT"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:50:14: note: annotate 'CHECKOUT' with '@MainActor' if property should only be accessed from the main actor
static let CHECKOUT : HTTPMethod = "CHECKOUT"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:50:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let CHECKOUT : HTTPMethod = "CHECKOUT"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:51:14: warning: static property 'MERGE' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let MERGE : HTTPMethod = "MERGE"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:51:14: note: annotate 'MERGE' with '@MainActor' if property should only be accessed from the main actor
static let MERGE : HTTPMethod = "MERGE"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:51:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let MERGE : HTTPMethod = "MERGE"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:52:14: warning: static property 'MSEARCH' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let MSEARCH : HTTPMethod = "MSEARCH"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:52:14: note: annotate 'MSEARCH' with '@MainActor' if property should only be accessed from the main actor
static let MSEARCH : HTTPMethod = "MSEARCH"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:52:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let MSEARCH : HTTPMethod = "MSEARCH"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:53:14: warning: static property 'NOTIFY' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let NOTIFY : HTTPMethod = "NOTIFY"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:53:14: note: annotate 'NOTIFY' with '@MainActor' if property should only be accessed from the main actor
static let NOTIFY : HTTPMethod = "NOTIFY"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:53:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let NOTIFY : HTTPMethod = "NOTIFY"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:54:14: warning: static property 'SUBSCRIBE' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let SUBSCRIBE : HTTPMethod = "SUBSCRIBE"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:54:14: note: annotate 'SUBSCRIBE' with '@MainActor' if property should only be accessed from the main actor
static let SUBSCRIBE : HTTPMethod = "SUBSCRIBE"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:54:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let SUBSCRIBE : HTTPMethod = "SUBSCRIBE"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:55:14: warning: static property 'UNSUBSCRIBE' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let UNSUBSCRIBE : HTTPMethod = "UNSUBSCRIBE"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:55:14: note: annotate 'UNSUBSCRIBE' with '@MainActor' if property should only be accessed from the main actor
static let UNSUBSCRIBE : HTTPMethod = "UNSUBSCRIBE"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:55:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let UNSUBSCRIBE : HTTPMethod = "UNSUBSCRIBE"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:56:14: warning: static property 'PATCH' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let PATCH : HTTPMethod = "PATCH"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:56:14: note: annotate 'PATCH' with '@MainActor' if property should only be accessed from the main actor
static let PATCH : HTTPMethod = "PATCH"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:56:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let PATCH : HTTPMethod = "PATCH"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:57:14: warning: static property 'PURGE' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
static let PURGE : HTTPMethod = "PURGE"
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:8:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:57:14: note: annotate 'PURGE' with '@MainActor' if property should only be accessed from the main actor
static let PURGE : HTTPMethod = "PURGE"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPMethod.swift:57:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let PURGE : HTTPMethod = "PURGE"
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPStatus.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:24:14: warning: static property 'ok' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
static let ok : HTTPStatus = 200
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:9:15: note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
public struct HTTPStatus: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:24:14: note: annotate 'ok' with '@MainActor' if property should only be accessed from the main actor
static let ok : HTTPStatus = 200
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:24:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let ok : HTTPStatus = 200
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:25:14: warning: static property 'created' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
static let created : HTTPStatus = 201
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:9:15: note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
public struct HTTPStatus: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:25:14: note: annotate 'created' with '@MainActor' if property should only be accessed from the main actor
static let created : HTTPStatus = 201
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:25:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let created : HTTPStatus = 201
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:26:14: warning: static property 'noContent' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
static let noContent : HTTPStatus = 204
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:9:15: note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
public struct HTTPStatus: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:26:14: note: annotate 'noContent' with '@MainActor' if property should only be accessed from the main actor
static let noContent : HTTPStatus = 204
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:26:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let noContent : HTTPStatus = 204
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:28:14: warning: static property 'badRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
static let badRequest : HTTPStatus = 400
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:9:15: note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
public struct HTTPStatus: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:28:14: note: annotate 'badRequest' with '@MainActor' if property should only be accessed from the main actor
static let badRequest : HTTPStatus = 400
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:28:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let badRequest : HTTPStatus = 400
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:29:14: warning: static property 'paymentRequired' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
static let paymentRequired : HTTPStatus = 402
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:9:15: note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
public struct HTTPStatus: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:29:14: note: annotate 'paymentRequired' with '@MainActor' if property should only be accessed from the main actor
static let paymentRequired : HTTPStatus = 402
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:29:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let paymentRequired : HTTPStatus = 402
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:30:14: warning: static property 'forbidden' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
static let forbidden : HTTPStatus = 403
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:9:15: note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
public struct HTTPStatus: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:30:14: note: annotate 'forbidden' with '@MainActor' if property should only be accessed from the main actor
static let forbidden : HTTPStatus = 403
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:30:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let forbidden : HTTPStatus = 403
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:31:14: warning: static property 'notFound' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
static let notFound : HTTPStatus = 404
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:9:15: note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
public struct HTTPStatus: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:31:14: note: annotate 'notFound' with '@MainActor' if property should only be accessed from the main actor
static let notFound : HTTPStatus = 404
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:31:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notFound : HTTPStatus = 404
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:33:14: warning: static property 'serverError' is not concurrency-safe because non-'Sendable' type 'HTTPStatus' may have shared mutable state; this is an error in the Swift 6 language mode
static let serverError : HTTPStatus = 500
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:9:15: note: consider making struct 'HTTPStatus' conform to the 'Sendable' protocol
public struct HTTPStatus: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:33:14: note: annotate 'serverError' with '@MainActor' if property should only be accessed from the main actor
static let serverError : HTTPStatus = 500
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift:33:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let serverError : HTTPStatus = 500
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/HTTPServer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:109:35: warning: converting non-sendable function value to '@Sendable (NWConnection) -> Void' may introduce data races
listener.newConnectionHandler = handleNewConnection
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:110:35: warning: converting non-sendable function value to '@Sendable (NWListener.State) -> Void' may introduce data races
listener.stateUpdateHandler = handleListenerStateChange
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:231:7: warning: capture of 'self' with non-sendable type 'HTTPServer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
self.handleStateChange($0, on: connection)
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:30:20: note: class 'HTTPServer' does not conform to the 'Sendable' protocol
public final class HTTPServer {
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:242:25: warning: capture of 'self' with non-sendable type 'HTTPServer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
guard let state = self.clients[oid] else { // already cancelled.
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:30:20: note: class 'HTTPServer' does not conform to the 'Sendable' protocol
public final class HTTPServer {
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:252:26: warning: capture of 'self' with non-sendable type 'HTTPServer' in an isolated local function; this is an error in the Swift 6 language mode
else if let cb = self._errorCB {
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:30:20: note: class 'HTTPServer' does not conform to the 'Sendable' protocol
public final class HTTPServer {
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:299:26: warning: capture of 'self' with non-sendable type 'HTTPServer' in an isolated closure; this is an error in the Swift 6 language mode
if let state = self.clients[oid],
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift:30:20: note: class 'HTTPServer' does not conform to the 'Sendable' protocol
public final class HTTPServer {
^
SwiftCompile normal arm64 Compiling\ IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/IncomingMessage.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/ServerResponse.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:143:46: warning: capture of 'self' with non-sendable type 'ServerResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
if let error = error { self.handleWriteError(error) }
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:46:12: note: class 'ServerResponse' does not conform to the 'Sendable' protocol
open class ServerResponse {
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:179:46: warning: capture of 'self' with non-sendable type 'ServerResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
if let error = error { self.handleWriteError(error) }
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:46:12: note: class 'ServerResponse' does not conform to the 'Sendable' protocol
open class ServerResponse {
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:213:23: warning: capture of 'callbacks' with non-sendable type '[(ServerResponse) -> Void]' in a `@Sendable` closure; this is an error in the Swift 6 language mode
callbacks.forEach { $0(self) }
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:213:23: note: a function type must be marked '@Sendable' to conform to 'Sendable'
callbacks.forEach { $0(self) }
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:213:46: warning: capture of 'self' with non-sendable type 'ServerResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
callbacks.forEach { $0(self) }
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:46:12: note: class 'ServerResponse' does not conform to the 'Sendable' protocol
open class ServerResponse {
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:213:46: warning: capture of 'self' with non-sendable type 'ServerResponse' in an isolated closure; this is an error in the Swift 6 language mode
callbacks.forEach { $0(self) }
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:46:12: note: class 'ServerResponse' does not conform to the 'Sendable' protocol
open class ServerResponse {
^
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift:233:51: warning: converting non-sendable function value to '@Sendable (NWError?) -> Void' may introduce data races
completion: .contentProcessed(handleWriteResult(_:)))
^
SwiftCompile normal arm64 Compiling\ StringEncodingError.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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/NWHTTPServer/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/HTTPStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/IncomingMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/ServerResponse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NWHTTPServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.o -index-unit-output-path /NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/StringEncodingError.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NWHTTPServer/StringEncodingError.swift:9:32: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
public let encoding : String.Encoding
^
Foundation.String:3:19: note: type declared here
public struct Encoding : RawRepresentable, Sendable, Equatable {
^
SwiftDriverJobDiscovery normal arm64 Emitting module for NWHTTPServer (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
SwiftDriver\ Compilation\ Requirements NWHTTPServer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
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 NWHTTPServer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer-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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling StringEncodingError.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/NWHTTPServer-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer-Swift.h (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/NWHTTPServer-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.swiftmodule (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.swiftdoc (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.abi.json (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.swiftsourceinfo (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_const_extract_protocols.json (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.SwiftFileList (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd-OutputFileMap.json (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd-OutputFileMap.json
SwiftDriver samplehttpd normal arm64 com.apple.xcode.tools.swift.compiler (in target 'samplehttpd' from project 'NWHTTPProtocol')
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 samplehttpd -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd-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/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ samplehttpd (in target 'samplehttpd' from project 'NWHTTPProtocol')
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/samplehttpd/main.swift -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name samplehttpd -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.abi.json
SwiftCompile normal arm64 Compiling\ main.swift /Users/admin/builder/spi-builder-workspace/Sources/samplehttpd/main.swift (in target 'samplehttpd' from project 'NWHTTPProtocol')
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/samplehttpd/main.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name samplehttpd -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.o -index-unit-output-path /NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/samplehttpd/main.swift (in target 'samplehttpd' from project 'NWHTTPProtocol')
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/samplehttpd/main.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name samplehttpd -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.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/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.o -index-unit-output-path /NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/main.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling HTTPMethod.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
SwiftDriverJobDiscovery normal arm64 Emitting module for samplehttpd (in target 'samplehttpd' from project 'NWHTTPProtocol')
SwiftDriver\ Compilation\ Requirements samplehttpd normal arm64 com.apple.xcode.tools.swift.compiler (in target 'samplehttpd' from project 'NWHTTPProtocol')
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 samplehttpd -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd-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/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftdoc (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftmodule (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.abi.json (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftsourceinfo (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling HTTPStatus.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
SwiftDriverJobDiscovery normal arm64 Compiling main.swift (in target 'samplehttpd' from project 'NWHTTPProtocol')
SwiftDriver\ Compilation samplehttpd normal arm64 com.apple.xcode.tools.swift.compiler (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name samplehttpd -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd-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/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling HTTPServer.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPContext.swift (in target 'NWHTTPProtocol' from project 'NWHTTPProtocol')
SwiftDriverJobDiscovery normal arm64 Compiling ServerResponse.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPMessage.swift (in target 'NWHTTPProtocol' from project 'NWHTTPProtocol')
SwiftDriverJobDiscovery normal arm64 Compiling IncomingMessage.swift (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
SwiftDriver\ Compilation NWHTTPServer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NWHTTPServer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer-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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.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/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling HTTPProtocol.swift (in target 'NWHTTPProtocol' from project 'NWHTTPProtocol')
SwiftDriver\ Compilation NWHTTPProtocol normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NWHTTPProtocol' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NWHTTPProtocol -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CHTTPParser.modulemap -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol-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/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol.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/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CHTTPParser/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.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/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPProtocol.o normal (in target 'NWHTTPProtocol' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPProtocol.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPProtocol.o (in target 'NWHTTPProtocol' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPProtocol.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.LinkFileList (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.LinkFileList
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.o normal (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.o (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/NWHTTPServer.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.LinkFileList (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.LinkFileList
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd normal (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/samplehttpd.build/Objects-normal/arm64/samplehttpd_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPProtocol.build/Objects-normal/arm64/NWHTTPProtocol.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NWHTTPProtocol.build/Debug/NWHTTPServer.build/Objects-normal/arm64/NWHTTPServer.swiftmodule
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd (in target 'samplehttpd' from project 'NWHTTPProtocol')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/samplehttpd
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'NWHTTPProtocol' from project 'NWHTTPProtocol')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CHTTPParser' from project 'NWHTTPProtocol')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'NWHTTPProtocol' from project 'NWHTTPProtocol')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'NWHTTPServer' from project 'NWHTTPProtocol')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'samplehttpd' from project 'NWHTTPProtocol')
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:tvOS Simulator, id:8B1ABE64-0401-443E-812F-247A4FBB5BDB, OS:17.4, name:Apple TV }
{ platform:tvOS Simulator, id:1CFD7C1E-15D0-43C5-AF27-909F7506EEF8, OS:17.4, name:Apple TV 4K (3rd generation) }
{ platform:tvOS Simulator, id:2F8EA46A-629D-4072-B00C-F903D55C3177, OS:17.4, name:Apple TV 4K (3rd generation) (at 1080p) }
{ platform:visionOS Simulator, id:91219D42-BD52-4AED-96DD-B55E31EB00BB, OS:1.1, name:Apple Vision Pro }
{ platform:watchOS Simulator, id:DE04AC0A-986B-4FBA-9496-F35677425C97, OS:10.4, name:Apple Watch SE (40mm) (2nd generation) }
{ platform:watchOS Simulator, id:4BE5427F-5FC7-449C-B254-3F404CE79B2F, OS:10.4, name:Apple Watch SE (44mm) (2nd generation) }
{ platform:watchOS Simulator, id:B1E30F2A-196D-43FB-B903-C3CF777EDD8E, OS:10.4, name:Apple Watch Series 5 (40mm) }
{ platform:watchOS Simulator, id:2F36C8D1-FB3D-4D85-A931-07B6EFBD4E4F, OS:10.4, name:Apple Watch Series 5 (44mm) }
{ platform:watchOS Simulator, id:CF595720-5AAE-408E-8353-1C54D9068D3E, OS:10.4, name:Apple Watch Series 6 (40mm) }
{ platform:watchOS Simulator, id:8F6954D5-8415-4A06-8701-3C7F4ACB2488, OS:10.4, name:Apple Watch Series 6 (44mm) }
{ platform:watchOS Simulator, id:F60A3AB2-C846-4E63-9A50-5E6DBD6A2777, OS:10.4, name:Apple Watch Series 7 (41mm) }
{ platform:watchOS Simulator, id:F72F2121-983A-4C32-A0D4-0C7BA61073C9, OS:10.4, name:Apple Watch Series 7 (45mm) }
{ platform:watchOS Simulator, id:86A5CFD7-08C3-40A4-B2A6-2F3A8CB8BDA5, OS:10.4, name:Apple Watch Series 9 (41mm) }
{ platform:watchOS Simulator, id:B22A08B0-18B6-43BC-94F1-5C2F83724B73, OS:10.4, name:Apple Watch Series 9 (45mm) }
{ platform:watchOS Simulator, id:797FC64C-7930-4151-8822-6349FA58EFA0, OS:10.4, name:Apple Watch Ultra 2 (49mm) }
{ platform:iOS Simulator, id:80B3B926-14C6-407B-AD45-937DD9D118A2, OS:17.4, name:iPad (10th generation) }
{ platform:iOS Simulator, id:DCA453EF-4DA0-4BCB-9EDB-B627F480EC88, OS:17.4, name:iPad Air (5th generation) }
{ platform:iOS Simulator, id:1DD2445B-C99B-432E-99AB-F239A53F76A7, OS:17.4, name:iPad Pro (11-inch) (4th generation) }
{ platform:iOS Simulator, id:63A2100A-3ABC-479B-927E-0927E96A78B0, OS:17.4, name:iPad Pro (12.9-inch) (6th generation) }
{ platform:iOS Simulator, id:182006EF-3CD1-439B-B898-2FF003963B39, OS:17.4, name:iPad mini (6th generation) }
{ platform:iOS Simulator, id:E86EA00F-56E9-4BD5-BE25-B4AE5E09CD43, OS:17.4, name:iPhone 15 }
{ platform:iOS Simulator, id:724EDFB5-2285-4CCF-A274-5CEAC57CE7ED, OS:17.4, name:iPhone 15 Plus }
{ platform:iOS Simulator, id:FA8EB545-B4CA-4062-86F4-C39DEAD04F1E, OS:17.4, name:iPhone 15 Pro }
{ platform:iOS Simulator, id:4C84A4B0-ABA2-4072-B35C-2EF2B0D49AA7, OS:17.4, name:iPhone 15 Pro Max }
{ platform:iOS Simulator, id:82B3845C-C246-4FEC-B1FB-D4892A314D10, OS:17.4, name:iPhone SE (3rd generation) }
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "NWHTTPProtocol",
"name" : "NWHTTPProtocol",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "CHTTPParser",
"targets" : [
"CHTTPParser"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "NWHTTPProtocol",
"targets" : [
"NWHTTPProtocol"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "NWHTTPServer",
"targets" : [
"NWHTTPServer"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "samplehttpd",
"targets" : [
"samplehttpd"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "samplehttpd",
"module_type" : "SwiftTarget",
"name" : "samplehttpd",
"path" : "Sources/samplehttpd",
"product_memberships" : [
"samplehttpd"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"NWHTTPServer"
],
"type" : "executable"
},
{
"c99name" : "NWHTTPServer",
"module_type" : "SwiftTarget",
"name" : "NWHTTPServer",
"path" : "Sources/NWHTTPServer",
"product_memberships" : [
"NWHTTPServer",
"samplehttpd"
],
"sources" : [
"HTTPMethod.swift",
"HTTPServer.swift",
"HTTPStatus.swift",
"IncomingMessage.swift",
"ServerResponse.swift",
"StringEncodingError.swift"
],
"target_dependencies" : [
"NWHTTPProtocol"
],
"type" : "library"
},
{
"c99name" : "NWHTTPProtocol",
"module_type" : "SwiftTarget",
"name" : "NWHTTPProtocol",
"path" : "Sources/NWHTTPProtocol",
"product_memberships" : [
"NWHTTPProtocol",
"NWHTTPServer",
"samplehttpd"
],
"sources" : [
"HTTPContext.swift",
"HTTPMessage.swift",
"HTTPProtocol.swift"
],
"target_dependencies" : [
"CHTTPParser"
],
"type" : "library"
},
{
"c99name" : "CHTTPParser",
"module_type" : "ClangTarget",
"name" : "CHTTPParser",
"path" : "Sources/CHTTPParser",
"product_memberships" : [
"CHTTPParser",
"NWHTTPProtocol",
"NWHTTPServer",
"samplehttpd"
],
"sources" : [
"http_parser.c"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Done.