Build Information
Successful build of RealHTTP, reference 1.9.0 (fcec34
), with Swift 6.0 for iOS using Xcode 16.2 on 15 Jan 2025 15:42:01 UTC.
Swift 6 data race errors: 38
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme RealHTTP -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:42:23: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:42:23: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:42:23: note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:46:23: 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
public static let connect = HTTPMethod(rawValue: "CONNECT")
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:40:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:46:23: note: annotate 'connect' with '@MainActor' if property should only be accessed from the main actor
public static let connect = HTTPMethod(rawValue: "CONNECT")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let connect = HTTPMethod(rawValue: "CONNECT")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:47:23: 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
public static let delete = HTTPMethod(rawValue: "DELETE")
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:40:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:47:23: note: annotate 'delete' with '@MainActor' if property should only be accessed from the main actor
public static let delete = HTTPMethod(rawValue: "DELETE")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let delete = HTTPMethod(rawValue: "DELETE")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:48:23: 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
public static let get = HTTPMethod(rawValue: "GET")
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:40:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:48:23: note: annotate 'get' with '@MainActor' if property should only be accessed from the main actor
public static let get = HTTPMethod(rawValue: "GET")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let get = HTTPMethod(rawValue: "GET")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:49:23: 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
public static let head = HTTPMethod(rawValue: "HEAD")
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:40:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:49:23: note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
public static let head = HTTPMethod(rawValue: "HEAD")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let head = HTTPMethod(rawValue: "HEAD")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:50:23: 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
public static let options = HTTPMethod(rawValue: "OPTIONS")
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:40:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:50:23: note: annotate 'options' with '@MainActor' if property should only be accessed from the main actor
public static let options = HTTPMethod(rawValue: "OPTIONS")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let options = HTTPMethod(rawValue: "OPTIONS")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:51:23: 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
public static let patch = HTTPMethod(rawValue: "PATCH")
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:40:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:51:23: note: annotate 'patch' with '@MainActor' if property should only be accessed from the main actor
public static let patch = HTTPMethod(rawValue: "PATCH")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let patch = HTTPMethod(rawValue: "PATCH")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:52:23: 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
public static let post = HTTPMethod(rawValue: "POST")
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:40:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:52:23: note: annotate 'post' with '@MainActor' if property should only be accessed from the main actor
public static let post = HTTPMethod(rawValue: "POST")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let post = HTTPMethod(rawValue: "POST")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:53:23: 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
public static let put = HTTPMethod(rawValue: "PUT")
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:40:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:53:23: note: annotate 'put' with '@MainActor' if property should only be accessed from the main actor
public static let put = HTTPMethod(rawValue: "PUT")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let put = HTTPMethod(rawValue: "PUT")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:54:23: 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
public static let trace = HTTPMethod(rawValue: "TRACE")
^
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:40:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:54:23: note: annotate 'trace' with '@MainActor' if property should only be accessed from the main actor
public static let trace = HTTPMethod(rawValue: "TRACE")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let trace = HTTPMethod(rawValue: "TRACE")
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for RealHTTP (in target 'RealHTTP' from project 'RealHTTP')
SwiftCompile normal arm64 Compiling\ JSONEncodable.swift,\ JSONSerializable.swift,\ HTTPBody+FormValues.swift,\ HTTPBody+Multipart.swift,\ MultipartForm+Boundary.swift,\ MultipartForm+Item.swift,\ MultipartForm.swift,\ HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.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/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.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/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.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/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.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/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.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/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.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/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.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/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.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/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/HTTPBody+Stream.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling HTTPProgress.swift, HTTPRequestPriority.swift, HTTPScheme.swift, HTTPStatusCode.swift, HTTPVersion.swift, HTTPHeaderElement+Name.swift, HTTPHeaders+Element.swift, HTTPHeaders.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriver\ Compilation\ Requirements RealHTTP normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RealHTTP -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP-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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/RealHTTP-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP-Swift.h (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/RealHTTP-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.swiftmodule (in target 'RealHTTP' from project 'RealHTTP')
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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.swiftdoc (in target 'RealHTTP' from project 'RealHTTP')
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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.abi.json (in target 'RealHTTP' from project 'RealHTTP')
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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.swiftsourceinfo (in target 'RealHTTP' from project 'RealHTTP')
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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling HTTPStubBodyMatcher.swift, HTTPStubCustomMatcher.swift, HTTPStubJSONMatcher.swift, HTTPStubRegExMatcher.swift, HTTPStubURITemplateMatcher.swift, HTTPStubURLMatcher.swift, HTTPStubMatcher.swift, HTTPDynamicStubResponse.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriverJobDiscovery normal arm64 Compiling MIMEType.swift, HTTPMetrics.swift, HTTPMetrics+Console.swift, HTTPMetricsRender.swift, URITemplate.swift, cURLHelper.swift, RealHTTP.swift, HTTPStubIgnoreRule.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPStubRequest+Matchers.swift, HTTPStubRequest+Stub.swift, HTTPStubRequest.swift, HTTPEchoResponse.swift, HTTPStubResponse.swift, Foundation+Stubber.swift, HTTPStub+Extension.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPClient.swift, HTTPClientDelegate.swift, HTTPRequest+Combine.swift, HTTPRequest.swift, HTTPResponse.swift, HTTPBody.swift, HTTPSerializableBody.swift, HTTPBody+JSON.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPDefaultValidator.swift, HTTPValidator.swift, HTTPSecurity.swift, HTTPSecurityService.swift, CertificatesSecurity.swift, SSLCertificate.swift, CredentialSecurity.swift, SelfSignedCertsSecurity.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriverJobDiscovery normal arm64 Compiling StreamContent.swift, HTTPBody+QueryString.swift, URLParametersData.swift, HTTPDataLoader+Response.swift, HTTPDataLoader.swift, HTTPResponseTransform.swift, HTTPAltRequestValidator.swift, HTTPAltTaskValidator.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriverJobDiscovery normal arm64 Compiling Foundation+Extension.swift, HTTPFormattable.swift, ThreadSafeDictionary.swift, URLRequest+Extension.swift, HTTPCacheControl.swift, HTTPContentType.swift, HTTPError.swift, HTTPMethod.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPStubDataConvertible.swift, HTTPStubber.swift, HTTPStubberErrors.swift, HTTPStubHookProtocol.swift, HTTPStubURLProtocol.swift, URLHook.swift, URLSessionHook.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriverJobDiscovery normal arm64 Compiling JSONEncodable.swift, JSONSerializable.swift, HTTPBody+FormValues.swift, HTTPBody+Multipart.swift, MultipartForm+Boundary.swift, MultipartForm+Item.swift, MultipartForm.swift, HTTPBody+Stream.swift (in target 'RealHTTP' from project 'RealHTTP')
SwiftDriver\ Compilation RealHTTP normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RealHTTP -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP-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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.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/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.o normal (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-iphoneos/RealHTTP.build/Objects-normal/arm64/RealHTTP_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.o (in target 'RealHTTP' from project 'RealHTTP')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RealHTTP.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "RealHTTP",
"name" : "RealHTTP",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "RealHTTP",
"targets" : [
"RealHTTP"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "RealHTTPTests",
"module_type" : "SwiftTarget",
"name" : "RealHTTPTests",
"path" : "Tests/RealHTTPTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/RealHTTPTests/Resources/mac_icon.jpg",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/RealHTTPTests/Resources/test_rawdata.png",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Headers+Tests.swift",
"MovieDBTest.swift",
"Requests+Tests.swift"
],
"target_dependencies" : [
"RealHTTP"
],
"type" : "test"
},
{
"c99name" : "RealHTTP",
"module_type" : "SwiftTarget",
"name" : "RealHTTP",
"path" : "Sources/RealHTTP",
"product_memberships" : [
"RealHTTP"
],
"sources" : [
"Client/HTTPClient/HTTPClient.swift",
"Client/HTTPClient/HTTPClientDelegate.swift",
"Client/HTTPRequest/HTTPRequest+Combine.swift",
"Client/HTTPRequest/HTTPRequest.swift",
"Client/HTTPResponse/HTTPResponse.swift",
"Client/Internal/HTTPBody/HTTPBody.swift",
"Client/Internal/HTTPBody/HTTPSerializableBody.swift",
"Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift",
"Client/Internal/HTTPBody/JSON/JSONEncodable.swift",
"Client/Internal/HTTPBody/JSON/JSONSerializable.swift",
"Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift",
"Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift",
"Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift",
"Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift",
"Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift",
"Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift",
"Client/Internal/HTTPBody/Stream/StreamContent.swift",
"Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift",
"Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift",
"Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift",
"Client/Internal/HTTPDataLoader/HTTPDataLoader.swift",
"Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift",
"Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift",
"Client/Internal/HTTPResponseValidator/HTTPAltTaskValidator.swift",
"Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift",
"Client/Internal/HTTPResponseValidator/HTTPValidator.swift",
"Client/Internal/HTTPSecurity/HTTPSecurity.swift",
"Client/Internal/HTTPSecurity/HTTPSecurityService.swift",
"Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift",
"Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift",
"Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift",
"Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift",
"Client/Internal/Other Structures/Foundation+Extensions/Foundation+Extension.swift",
"Client/Internal/Other Structures/Foundation+Extensions/HTTPFormattable.swift",
"Client/Internal/Other Structures/Foundation+Extensions/ThreadSafeDictionary.swift",
"Client/Internal/Other Structures/Foundation+Extensions/URLRequest+Extension.swift",
"Client/Internal/Other Structures/HTTPCacheControl.swift",
"Client/Internal/Other Structures/HTTPContentType.swift",
"Client/Internal/Other Structures/HTTPError.swift",
"Client/Internal/Other Structures/HTTPMethod.swift",
"Client/Internal/Other Structures/HTTPProgress.swift",
"Client/Internal/Other Structures/HTTPRequestPriority.swift",
"Client/Internal/Other Structures/HTTPScheme.swift",
"Client/Internal/Other Structures/HTTPStatusCode.swift",
"Client/Internal/Other Structures/HTTPVersion.swift",
"Client/Internal/Other Structures/Headers/HTTPHeaderElement+Name.swift",
"Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift",
"Client/Internal/Other Structures/Headers/HTTPHeaders.swift",
"Client/Internal/Other Structures/MIMEType.swift",
"Client/Internal/Other Structures/Metrics/HTTPMetrics.swift",
"Client/Internal/Other Structures/Metrics/Renders/HTTPMetrics+Console.swift",
"Client/Internal/Other Structures/Metrics/Renders/HTTPMetricsRender.swift",
"Client/Internal/Other Structures/URITemplate.swift",
"Client/Internal/Other Structures/cURLHelper.swift",
"RealHTTP.swift",
"Stubber/DataTypes/HTTPStubIgnoreRule.swift",
"Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubBodyMatcher.swift",
"Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubCustomMatcher.swift",
"Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubJSONMatcher.swift",
"Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubRegExMatcher.swift",
"Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURITemplateMatcher.swift",
"Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift",
"Stubber/DataTypes/Stub Matchers/HTTPStubMatcher.swift",
"Stubber/DataTypes/Stub Request/HTTPDynamicStubResponse.swift",
"Stubber/DataTypes/Stub Request/HTTPStubRequest+Matchers.swift",
"Stubber/DataTypes/Stub Request/HTTPStubRequest+Stub.swift",
"Stubber/DataTypes/Stub Request/HTTPStubRequest.swift",
"Stubber/DataTypes/Stub Response/HTTPEchoResponse.swift",
"Stubber/DataTypes/Stub Response/HTTPStubResponse.swift",
"Stubber/DataTypes/Support/Foundation+Stubber.swift",
"Stubber/DataTypes/Support/HTTPStub+Extension.swift",
"Stubber/DataTypes/Support/HTTPStubDataConvertible.swift",
"Stubber/HTTPStubber.swift",
"Stubber/HTTPStubberErrors.swift",
"Stubber/Hooks/HTTPStubHookProtocol.swift",
"Stubber/Hooks/HTTPStubURLProtocol.swift",
"Stubber/Hooks/URLHook.swift",
"Stubber/Hooks/URLSessionHook.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
Done.