Build Information
Failed to build NozeIO, reference master (983ced
), with Swift 6.1 for tvOS using Xcode 16.3 on 26 Apr 2025 17:10:34 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme NozeIO-Package -destination generic/platform=tvOS
Build Log
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/xsys/Module.swift:17:12: warning: let 'module' is not concurrency-safe because non-'Sendable' type 'XSysModule' may have shared mutable state; this is an error in the Swift 6 language mode
public let module = XSysModule()
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/Module.swift:15:15: note: consider making struct 'XSysModule' conform to the 'Sendable' protocol
public struct XSysModule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/xsys/Module.swift:17:12: note: add '@MainActor' to make let 'module' part of global actor 'MainActor'
public let module = XSysModule()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/xsys/Module.swift:17:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let module = XSysModule()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/xsys/POSIXError.swift:183:3: warning: extension declares a conformance of imported type 'POSIXErrorCode' to imported protocol 'Error'; this will not behave correctly if the owners of '_errno' introduce this conformance in the future
extension POSIXErrorCode : Error {}
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/POSIXError.swift:183:3: note: add '@retroactive' to silence this warning
extension POSIXErrorCode : Error {}
^ ~~~~~
@retroactive Error
/Users/admin/builder/spi-builder-workspace/Sources/xsys/fd.swift:61:14: warning: let 'open' is not concurrency-safe because non-'Sendable' type 'xsysOpenType' (aka '(UnsafePointer<Int8>, Int32) -> Int32') may have shared mutable state; this is an error in the Swift 6 language mode
public let open : xsysOpenType = Darwin.open
^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/xsys/fd.swift:61:14: note: add '@MainActor' to make let 'open' part of global actor 'MainActor'
public let open : xsysOpenType = Darwin.open
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/xsys/fd.swift:61:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let open : xsysOpenType = Darwin.open
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift:43:13: warning: let 'dlHandle' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer?' may have shared mutable state; this is an error in the Swift 6 language mode
private let dlHandle = dlopen(nil, RTLD_NOW)
^
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
@frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift:43:13: note: add '@MainActor' to make let 'dlHandle' part of global actor 'MainActor'
private let dlHandle = dlopen(nil, RTLD_NOW)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift:43:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let dlHandle = dlopen(nil, RTLD_NOW)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift:44:13: warning: let 'fnFcntl' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer?' may have shared mutable state; this is an error in the Swift 6 language mode
private let fnFcntl = dlsym(dlHandle, "fcntl")
^
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
@frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift:44:13: note: add '@MainActor' to make let 'fnFcntl' part of global actor 'MainActor'
private let fnFcntl = dlsym(dlHandle, "fcntl")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift:44:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let fnFcntl = dlsym(dlHandle, "fcntl")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift:45:13: warning: let 'fnIoctl' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer?' may have shared mutable state; this is an error in the Swift 6 language mode
private let fnIoctl = dlsym(dlHandle, "ioctl")
^
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
@frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift:45:13: note: add '@MainActor' to make let 'fnIoctl' part of global actor 'MainActor'
private let fnIoctl = dlsym(dlHandle, "ioctl")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift:45:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let fnIoctl = dlsym(dlHandle, "ioctl")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/xsys/misc.swift:80:37: error: 'posix_spawn' is unavailable in tvOS
public let posix_spawn = Darwin.posix_spawn
^~~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/usr/include/spawn.h:60:9: note: 'posix_spawn' has been explicitly marked unavailable here
int posix_spawn(pid_t * __restrict, const char * __restrict,
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/timespec.swift:86:1: warning: extension declares a conformance of imported type 'timespec' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of '_time' introduce this conformance in the future
extension timespec: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/timespec.swift:86:1: note: add '@retroactive' to silence this warning
extension timespec: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
/Users/admin/builder/spi-builder-workspace/Sources/xsys/timespec.swift:97:1: warning: extension declares a conformance of imported type 'timeval' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'sys_time' introduce this conformance in the future
extension timeval: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/timespec.swift:97:1: note: add '@retroactive' to silence this warning
extension timeval: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
SwiftDriverJobDiscovery normal arm64 Emitting module for base64 (in target 'base64' from project 'NozeIO')
SwiftEmitModule normal arm64 Emitting\ module\ for\ http_parser (in target 'http_parser' from project 'NozeIO')
EmitSwiftModule normal arm64 (in target 'http_parser' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:220:14: warning: static property 'csGET' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csGET = "GET".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:220:14: note: add '@MainActor' to make static property 'csGET' part of global actor 'MainActor'
static let csGET = "GET".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:220:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csGET = "GET".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:221:14: warning: static property 'csHEAD' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csHEAD = "HEAD".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:221:14: note: add '@MainActor' to make static property 'csHEAD' part of global actor 'MainActor'
static let csHEAD = "HEAD".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:221:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csHEAD = "HEAD".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:222:14: warning: static property 'csPUT' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csPUT = "PUT".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:222:14: note: add '@MainActor' to make static property 'csPUT' part of global actor 'MainActor'
static let csPUT = "PUT".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:222:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csPUT = "PUT".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:223:14: warning: static property 'csDELETE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csDELETE = "DELETE".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:223:14: note: add '@MainActor' to make static property 'csDELETE' part of global actor 'MainActor'
static let csDELETE = "DELETE".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:223:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csDELETE = "DELETE".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:224:14: warning: static property 'csPOST' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csPOST = "POST".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:224:14: note: add '@MainActor' to make static property 'csPOST' part of global actor 'MainActor'
static let csPOST = "POST".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:224:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csPOST = "POST".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:225:14: warning: static property 'csOPTIONS' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csOPTIONS = "OPTIONS".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:225:14: note: add '@MainActor' to make static property 'csOPTIONS' part of global actor 'MainActor'
static let csOPTIONS = "OPTIONS".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:225:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csOPTIONS = "OPTIONS".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:227:14: warning: static property 'csPROPFIND' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csPROPFIND = "PROPFIND".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:227:14: note: add '@MainActor' to make static property 'csPROPFIND' part of global actor 'MainActor'
static let csPROPFIND = "PROPFIND".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:227:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csPROPFIND = "PROPFIND".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:228:14: warning: static property 'csPROPPATCH' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csPROPPATCH = "PROPPATCH".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:228:14: note: add '@MainActor' to make static property 'csPROPPATCH' part of global actor 'MainActor'
static let csPROPPATCH = "PROPPATCH".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:228:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csPROPPATCH = "PROPPATCH".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:229:14: warning: static property 'csMKCOL' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csMKCOL = "MKCOL".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:229:14: note: add '@MainActor' to make static property 'csMKCOL' part of global actor 'MainActor'
static let csMKCOL = "MKCOL".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:229:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csMKCOL = "MKCOL".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:231:14: warning: static property 'csREPORT' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csREPORT = "REPORT".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:231:14: note: add '@MainActor' to make static property 'csREPORT' part of global actor 'MainActor'
static let csREPORT = "REPORT".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:231:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csREPORT = "REPORT".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:233:14: warning: static property 'csMKCALENDAR' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csMKCALENDAR = "MKCALENDAR".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:233:14: note: add '@MainActor' to make static property 'csMKCALENDAR' part of global actor 'MainActor'
static let csMKCALENDAR = "MKCALENDAR".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:233:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csMKCALENDAR = "MKCALENDAR".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:235:14: warning: static property 'csCONNECT' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csCONNECT = "CONNECT".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:235:14: note: add '@MainActor' to make static property 'csCONNECT' part of global actor 'MainActor'
static let csCONNECT = "CONNECT".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:235:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csCONNECT = "CONNECT".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:236:14: warning: static property 'csTRACE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csTRACE = "TRACE".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:236:14: note: add '@MainActor' to make static property 'csTRACE' part of global actor 'MainActor'
static let csTRACE = "TRACE".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:236:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csTRACE = "TRACE".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:238:14: warning: static property 'csCOPY' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csCOPY = "COPY".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:238:14: note: add '@MainActor' to make static property 'csCOPY' part of global actor 'MainActor'
static let csCOPY = "COPY".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:238:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csCOPY = "COPY".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:239:14: warning: static property 'csMOVE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csMOVE = "MOVE".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:239:14: note: add '@MainActor' to make static property 'csMOVE' part of global actor 'MainActor'
static let csMOVE = "MOVE".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:239:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csMOVE = "MOVE".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:240:14: warning: static property 'csLOCK' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csLOCK = "LOCK".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:240:14: note: add '@MainActor' to make static property 'csLOCK' part of global actor 'MainActor'
static let csLOCK = "LOCK".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:240:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csLOCK = "LOCK".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:241:14: warning: static property 'csUNLOCK' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csUNLOCK = "UNLOCK".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:241:14: note: add '@MainActor' to make static property 'csUNLOCK' part of global actor 'MainActor'
static let csUNLOCK = "UNLOCK".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:241:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csUNLOCK = "UNLOCK".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:243:14: warning: static property 'csSEARCH' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csSEARCH = "SEARCH".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:243:14: note: add '@MainActor' to make static property 'csSEARCH' part of global actor 'MainActor'
static let csSEARCH = "SEARCH".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:243:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csSEARCH = "SEARCH".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:245:14: warning: static property 'csMKACTIVITY' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csMKACTIVITY = "MKACTIVITY".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:245:14: note: add '@MainActor' to make static property 'csMKACTIVITY' part of global actor 'MainActor'
static let csMKACTIVITY = "MKACTIVITY".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:245:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csMKACTIVITY = "MKACTIVITY".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:246:14: warning: static property 'csCHECKOUT' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csCHECKOUT = "CHECKOUT".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:246:14: note: add '@MainActor' to make static property 'csCHECKOUT' part of global actor 'MainActor'
static let csCHECKOUT = "CHECKOUT".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:246:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csCHECKOUT = "CHECKOUT".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:247:14: warning: static property 'csMERGE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csMERGE = "MERGE".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:247:14: note: add '@MainActor' to make static property 'csMERGE' part of global actor 'MainActor'
static let csMERGE = "MERGE".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:247:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csMERGE = "MERGE".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:249:14: warning: static property 'csMSEARCH' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csMSEARCH = "M-SEARCH".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:249:14: note: add '@MainActor' to make static property 'csMSEARCH' part of global actor 'MainActor'
static let csMSEARCH = "M-SEARCH".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:249:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csMSEARCH = "M-SEARCH".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:250:14: warning: static property 'csNOTIFY' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csNOTIFY = "NOTIFY".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:250:14: note: add '@MainActor' to make static property 'csNOTIFY' part of global actor 'MainActor'
static let csNOTIFY = "NOTIFY".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:250:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csNOTIFY = "NOTIFY".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:251:14: warning: static property 'csSUBSCRIBE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csSUBSCRIBE = "SUBSCRIBE".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:251:14: note: add '@MainActor' to make static property 'csSUBSCRIBE' part of global actor 'MainActor'
static let csSUBSCRIBE = "SUBSCRIBE".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:251:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csSUBSCRIBE = "SUBSCRIBE".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:252:14: warning: static property 'csUNSUBSCRIBE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csUNSUBSCRIBE = "UNSUBSCRIBE".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:252:14: note: add '@MainActor' to make static property 'csUNSUBSCRIBE' part of global actor 'MainActor'
static let csUNSUBSCRIBE = "UNSUBSCRIBE".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:252:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csUNSUBSCRIBE = "UNSUBSCRIBE".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:254:14: warning: static property 'csPATCH' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csPATCH = "PATCH".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:254:14: note: add '@MainActor' to make static property 'csPATCH' part of global actor 'MainActor'
static let csPATCH = "PATCH".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:254:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csPATCH = "PATCH".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:255:14: warning: static property 'csPURGE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csPURGE = "PURGE".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:255:14: note: add '@MainActor' to make static property 'csPURGE' part of global actor 'MainActor'
static let csPURGE = "PURGE".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:255:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csPURGE = "PURGE".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:257:14: warning: static property 'csACL' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csACL = "ACL".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:257:14: note: add '@MainActor' to make static property 'csACL' part of global actor 'MainActor'
static let csACL = "ACL".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:257:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csACL = "ACL".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:258:14: warning: static property 'csBIND' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csBIND = "BIND".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:258:14: note: add '@MainActor' to make static property 'csBIND' part of global actor 'MainActor'
static let csBIND = "BIND".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:258:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csBIND = "BIND".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:259:14: warning: static property 'csUNBIND' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csUNBIND = "UNBIND".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:259:14: note: add '@MainActor' to make static property 'csUNBIND' part of global actor 'MainActor'
static let csUNBIND = "UNBIND".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:259:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csUNBIND = "UNBIND".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:260:14: warning: static property 'csREBIND' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csREBIND = "REBIND".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:260:14: note: add '@MainActor' to make static property 'csREBIND' part of global actor 'MainActor'
static let csREBIND = "REBIND".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:260:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csREBIND = "REBIND".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:262:14: warning: static property 'csLINK' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csLINK = "LINK".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:262:14: note: add '@MainActor' to make static property 'csLINK' part of global actor 'MainActor'
static let csLINK = "LINK".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:262:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csLINK = "LINK".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:263:14: warning: static property 'csUNLINK' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
static let csUNLINK = "UNLINK".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:263:14: note: add '@MainActor' to make static property 'csUNLINK' part of global actor 'MainActor'
static let csUNLINK = "UNLINK".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPMethod.swift:263:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let csUNLINK = "UNLINK".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:21:14: warning: static property 'F_CHUNKED' is not concurrency-safe because non-'Sendable' type 'HTTPParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
static let F_CHUNKED = HTTPParserOptions(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:10:15: note: consider making struct 'HTTPParserOptions' conform to the 'Sendable' protocol
public struct HTTPParserOptions : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:21:14: note: add '@MainActor' to make static property 'F_CHUNKED' part of global actor 'MainActor'
static let F_CHUNKED = HTTPParserOptions(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:21:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let F_CHUNKED = HTTPParserOptions(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:22:14: warning: static property 'F_CONNECTION_KEEP_ALIVE' is not concurrency-safe because non-'Sendable' type 'HTTPParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
static let F_CONNECTION_KEEP_ALIVE = HTTPParserOptions(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:10:15: note: consider making struct 'HTTPParserOptions' conform to the 'Sendable' protocol
public struct HTTPParserOptions : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:22:14: note: add '@MainActor' to make static property 'F_CONNECTION_KEEP_ALIVE' part of global actor 'MainActor'
static let F_CONNECTION_KEEP_ALIVE = HTTPParserOptions(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:22:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let F_CONNECTION_KEEP_ALIVE = HTTPParserOptions(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:23:14: warning: static property 'F_CONNECTION_CLOSE' is not concurrency-safe because non-'Sendable' type 'HTTPParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
static let F_CONNECTION_CLOSE = HTTPParserOptions(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:10:15: note: consider making struct 'HTTPParserOptions' conform to the 'Sendable' protocol
public struct HTTPParserOptions : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:23:14: note: add '@MainActor' to make static property 'F_CONNECTION_CLOSE' part of global actor 'MainActor'
static let F_CONNECTION_CLOSE = HTTPParserOptions(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:23:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let F_CONNECTION_CLOSE = HTTPParserOptions(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:24:14: warning: static property 'F_CONNECTION_UPGRADE' is not concurrency-safe because non-'Sendable' type 'HTTPParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
static let F_CONNECTION_UPGRADE = HTTPParserOptions(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:10:15: note: consider making struct 'HTTPParserOptions' conform to the 'Sendable' protocol
public struct HTTPParserOptions : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:24:14: note: add '@MainActor' to make static property 'F_CONNECTION_UPGRADE' part of global actor 'MainActor'
static let F_CONNECTION_UPGRADE = HTTPParserOptions(rawValue: 1 << 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:24:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let F_CONNECTION_UPGRADE = HTTPParserOptions(rawValue: 1 << 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:25:14: warning: static property 'F_TRAILING' is not concurrency-safe because non-'Sendable' type 'HTTPParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
static let F_TRAILING = HTTPParserOptions(rawValue: 1 << 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:10:15: note: consider making struct 'HTTPParserOptions' conform to the 'Sendable' protocol
public struct HTTPParserOptions : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:25:14: note: add '@MainActor' to make static property 'F_TRAILING' part of global actor 'MainActor'
static let F_TRAILING = HTTPParserOptions(rawValue: 1 << 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:25:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let F_TRAILING = HTTPParserOptions(rawValue: 1 << 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:26:14: warning: static property 'F_UPGRADE' is not concurrency-safe because non-'Sendable' type 'HTTPParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
static let F_UPGRADE = HTTPParserOptions(rawValue: 1 << 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:10:15: note: consider making struct 'HTTPParserOptions' conform to the 'Sendable' protocol
public struct HTTPParserOptions : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:26:14: note: add '@MainActor' to make static property 'F_UPGRADE' part of global actor 'MainActor'
static let F_UPGRADE = HTTPParserOptions(rawValue: 1 << 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:26:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let F_UPGRADE = HTTPParserOptions(rawValue: 1 << 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:27:14: warning: static property 'F_SKIPBODY' is not concurrency-safe because non-'Sendable' type 'HTTPParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
static let F_SKIPBODY = HTTPParserOptions(rawValue: 1 << 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:10:15: note: consider making struct 'HTTPParserOptions' conform to the 'Sendable' protocol
public struct HTTPParserOptions : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:27:14: note: add '@MainActor' to make static property 'F_SKIPBODY' part of global actor 'MainActor'
static let F_SKIPBODY = HTTPParserOptions(rawValue: 1 << 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/HTTPParserState.swift:27:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let F_SKIPBODY = HTTPParserOptions(rawValue: 1 << 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:39:14: warning: static property 'SCHEMA' is not concurrency-safe because non-'Sendable' type 'HTTPParserURLFields' may have shared mutable state; this is an error in the Swift 6 language mode
static let SCHEMA = HTTPParserURLFields(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:31:15: note: consider making struct 'HTTPParserURLFields' conform to the 'Sendable' protocol
public struct HTTPParserURLFields : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:39:14: note: add '@MainActor' to make static property 'SCHEMA' part of global actor 'MainActor'
static let SCHEMA = HTTPParserURLFields(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:39:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let SCHEMA = HTTPParserURLFields(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:40:14: warning: static property 'HOST' is not concurrency-safe because non-'Sendable' type 'HTTPParserURLFields' may have shared mutable state; this is an error in the Swift 6 language mode
static let HOST = HTTPParserURLFields(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:31:15: note: consider making struct 'HTTPParserURLFields' conform to the 'Sendable' protocol
public struct HTTPParserURLFields : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:40:14: note: add '@MainActor' to make static property 'HOST' part of global actor 'MainActor'
static let HOST = HTTPParserURLFields(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:40:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let HOST = HTTPParserURLFields(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:41:14: warning: static property 'PORT' is not concurrency-safe because non-'Sendable' type 'HTTPParserURLFields' may have shared mutable state; this is an error in the Swift 6 language mode
static let PORT = HTTPParserURLFields(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:31:15: note: consider making struct 'HTTPParserURLFields' conform to the 'Sendable' protocol
public struct HTTPParserURLFields : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:41:14: note: add '@MainActor' to make static property 'PORT' part of global actor 'MainActor'
static let PORT = HTTPParserURLFields(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:41:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let PORT = HTTPParserURLFields(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:42:14: warning: static property 'PATH' is not concurrency-safe because non-'Sendable' type 'HTTPParserURLFields' may have shared mutable state; this is an error in the Swift 6 language mode
static let PATH = HTTPParserURLFields(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:31:15: note: consider making struct 'HTTPParserURLFields' conform to the 'Sendable' protocol
public struct HTTPParserURLFields : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:42:14: note: add '@MainActor' to make static property 'PATH' part of global actor 'MainActor'
static let PATH = HTTPParserURLFields(rawValue: 1 << 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:42:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let PATH = HTTPParserURLFields(rawValue: 1 << 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:43:14: warning: static property 'QUERY' is not concurrency-safe because non-'Sendable' type 'HTTPParserURLFields' may have shared mutable state; this is an error in the Swift 6 language mode
static let QUERY = HTTPParserURLFields(rawValue: 1 << 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:31:15: note: consider making struct 'HTTPParserURLFields' conform to the 'Sendable' protocol
public struct HTTPParserURLFields : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:43:14: note: add '@MainActor' to make static property 'QUERY' part of global actor 'MainActor'
static let QUERY = HTTPParserURLFields(rawValue: 1 << 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:43:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let QUERY = HTTPParserURLFields(rawValue: 1 << 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:44:14: warning: static property 'FRAGMENT' is not concurrency-safe because non-'Sendable' type 'HTTPParserURLFields' may have shared mutable state; this is an error in the Swift 6 language mode
static let FRAGMENT = HTTPParserURLFields(rawValue: 1 << 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:31:15: note: consider making struct 'HTTPParserURLFields' conform to the 'Sendable' protocol
public struct HTTPParserURLFields : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:44:14: note: add '@MainActor' to make static property 'FRAGMENT' part of global actor 'MainActor'
static let FRAGMENT = HTTPParserURLFields(rawValue: 1 << 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:44:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let FRAGMENT = HTTPParserURLFields(rawValue: 1 << 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:45:14: warning: static property 'USERINFO' is not concurrency-safe because non-'Sendable' type 'HTTPParserURLFields' may have shared mutable state; this is an error in the Swift 6 language mode
static let USERINFO = HTTPParserURLFields(rawValue: 1 << 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:31:15: note: consider making struct 'HTTPParserURLFields' conform to the 'Sendable' protocol
public struct HTTPParserURLFields : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:45:14: note: add '@MainActor' to make static property 'USERINFO' part of global actor 'MainActor'
static let USERINFO = HTTPParserURLFields(rawValue: 1 << 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/URLParser.swift:45:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let USERINFO = HTTPParserURLFields(rawValue: 1 << 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/ascii.swift:160:5: warning: let 'tokens' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
let tokens : UnsafePointer<CChar> = copyArrayToBuffer(array: tokensArray)
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/ascii.swift:160:5: note: add '@MainActor' to make let 'tokens' part of global actor 'MainActor'
let tokens : UnsafePointer<CChar> = copyArrayToBuffer(array: tokensArray)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/ascii.swift:160:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let tokens : UnsafePointer<CChar> = copyArrayToBuffer(array: tokensArray)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/ascii.swift:173:5: warning: let 'unhex' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<Int8>' may have shared mutable state; this is an error in the Swift 6 language mode
let unhex : UnsafePointer<Int8> = copyArrayToBuffer(array: unhexArray)
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/ascii.swift:173:5: note: add '@MainActor' to make let 'unhex' part of global actor 'MainActor'
let unhex : UnsafePointer<Int8> = copyArrayToBuffer(array: unhexArray)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/ascii.swift:173:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let unhex : UnsafePointer<Int8> = copyArrayToBuffer(array: unhexArray)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/ascii.swift:224:5: warning: let 'normal_url_char' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<UInt8>' may have shared mutable state; this is an error in the Swift 6 language mode
let normal_url_char : UnsafePointer<UInt8> =
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/ascii.swift:224:5: note: add '@MainActor' to make let 'normal_url_char' part of global actor 'MainActor'
let normal_url_char : UnsafePointer<UInt8> =
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/ascii.swift:224:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let normal_url_char : UnsafePointer<UInt8> =
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1840:5: warning: let 'PROXY_CONNECTION' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
let PROXY_CONNECTION = "proxy-connection".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1840:5: note: add '@MainActor' to make let 'PROXY_CONNECTION' part of global actor 'MainActor'
let PROXY_CONNECTION = "proxy-connection".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1840:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let PROXY_CONNECTION = "proxy-connection".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1841:5: warning: let 'CONNECTION' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
let CONNECTION = "connection".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1841:5: note: add '@MainActor' to make let 'CONNECTION' part of global actor 'MainActor'
let CONNECTION = "connection".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1841:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let CONNECTION = "connection".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1842:5: warning: let 'CONTENT_LENGTH' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
let CONTENT_LENGTH = "content-length".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1842:5: note: add '@MainActor' to make let 'CONTENT_LENGTH' part of global actor 'MainActor'
let CONTENT_LENGTH = "content-length".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1842:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let CONTENT_LENGTH = "content-length".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1843:5: warning: let 'TRANSFER_ENCODING' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
let TRANSFER_ENCODING = "transfer-encoding".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1843:5: note: add '@MainActor' to make let 'TRANSFER_ENCODING' part of global actor 'MainActor'
let TRANSFER_ENCODING = "transfer-encoding".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1843:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let TRANSFER_ENCODING = "transfer-encoding".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1844:5: warning: let 'UPGRADE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
let UPGRADE = "upgrade".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1844:5: note: add '@MainActor' to make let 'UPGRADE' part of global actor 'MainActor'
let UPGRADE = "upgrade".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1844:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let UPGRADE = "upgrade".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1845:5: warning: let 'CHUNKED' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
let CHUNKED = "chunked".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1845:5: note: add '@MainActor' to make let 'CHUNKED' part of global actor 'MainActor'
let CHUNKED = "chunked".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1845:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let CHUNKED = "chunked".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1846:5: warning: let 'KEEP_ALIVE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
let KEEP_ALIVE = "keep-alive".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1846:5: note: add '@MainActor' to make let 'KEEP_ALIVE' part of global actor 'MainActor'
let KEEP_ALIVE = "keep-alive".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1846:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let KEEP_ALIVE = "keep-alive".makeCString()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1847:5: warning: let 'CLOSE' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
let CLOSE = "close".makeCString()
^
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1847:5: note: add '@MainActor' to make let 'CLOSE' part of global actor 'MainActor'
let CLOSE = "close".makeCString()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/http_parser/http_parser.swift:1847:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let CLOSE = "close".makeCString()
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Base64.swift (in target 'base64' from project 'NozeIO')
SwiftDriver\ Compilation\ Requirements base64 normal arm64 com.apple.xcode.tools.swift.compiler (in target 'base64' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name base64 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64-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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.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/NozeIO.build/Debug-appletvos/base64.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for Freddy (in target 'Freddy' from project 'NozeIO')
SwiftEmitModule normal arm64 Emitting\ module\ for\ CryptoSwift (in target 'CryptoSwift' from project 'NozeIO')
EmitSwiftModule normal arm64 (in target 'CryptoSwift' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:24:20: warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
static func ==<Base>(lhs: BatchedCollectionIndex<Base>, rhs: BatchedCollectionIndex<Base>) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:19:31: note: 'Base' previously declared here
struct BatchedCollectionIndex<Base: Collection> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:28:20: warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
static func < <Base>(lhs: BatchedCollectionIndex<Base>, rhs: BatchedCollectionIndex<Base>) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:19:31: note: 'Base' previously declared here
struct BatchedCollectionIndex<Base: Collection> {
^
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/base64-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64-Swift.h (in target 'base64' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/base64-Swift.h
SwiftDriverJobDiscovery normal arm64 Emitting module for CryptoSwift (in target 'CryptoSwift' from project 'NozeIO')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.swiftmodule (in target 'base64' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.swiftdoc (in target 'base64' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.abi.json (in target 'base64' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.swiftsourceinfo (in target 'base64' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriver\ Compilation\ Requirements Freddy normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Freddy' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Freddy -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy-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/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.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/NozeIO.build/Debug-appletvos/Freddy.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.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/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements CryptoSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptoSwift' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptoSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-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/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.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/NozeIO.build/Debug-appletvos/CryptoSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.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/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-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-appletvos/Freddy-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy-Swift.h (in target 'Freddy' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Freddy-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Freddy.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.swiftmodule (in target 'Freddy' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Freddy.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Freddy.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.swiftdoc (in target 'Freddy' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Freddy.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Freddy.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.abi.json (in target 'Freddy' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Freddy.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Freddy.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.swiftsourceinfo (in target 'Freddy' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Freddy.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CryptoSwift-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-Swift.h (in target 'CryptoSwift' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CryptoSwift-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CryptoSwift.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftmodule (in target 'CryptoSwift' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CryptoSwift.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CryptoSwift.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftdoc (in target 'CryptoSwift' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CryptoSwift.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CryptoSwift.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.abi.json (in target 'CryptoSwift' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CryptoSwift.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CryptoSwift.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftsourceinfo (in target 'CryptoSwift' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CryptoSwift.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ ioctl.swift,\ misc.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/misc.swift (in target 'xsys' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift (in target 'xsys' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/xsys/misc.swift (in target 'xsys' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ sockaddr_any.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/sockaddr_any.swift (in target 'xsys' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/xsys/sockaddr_any.swift (in target 'xsys' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for http_parser (in target 'http_parser' from project 'NozeIO')
SwiftDriver\ Compilation\ Requirements http_parser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'http_parser' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name http_parser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser-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/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser.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/NozeIO.build/Debug-appletvos/http_parser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.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/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling MustacheNode.swift (in target 'mustache' from project 'NozeIO')
SwiftCompile normal arm64 Compiling\ time.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/time.swift (in target 'xsys' from project 'NozeIO')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/http_parser-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser-Swift.h (in target 'http_parser' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/http_parser-Swift.h
** BUILD FAILED **
The following build commands failed:
SwiftEmitModule normal arm64 Emitting\ module\ for\ xsys (in target 'xsys' from project 'NozeIO')
EmitSwiftModule normal arm64 (in target 'xsys' from project 'NozeIO')
Building workspace spi-builder-workspace with scheme NozeIO-Package
(3 failures)
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
NozeIO: /Users/admin/builder/spi-builder-workspace
resolved source packages: NozeIO
{
"dependencies" : [
],
"manifest_display_name" : "NozeIO",
"name" : "NozeIO",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Freddy",
"targets" : [
"Freddy"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "CryptoSwift",
"targets" : [
"CryptoSwift"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "http_parser",
"targets" : [
"http_parser"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "base64",
"targets" : [
"base64"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "mustache",
"targets" : [
"mustache"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "xsys",
"targets" : [
"xsys"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "core",
"targets" : [
"core"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "leftpad",
"targets" : [
"leftpad"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "events",
"targets" : [
"events"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "streams",
"targets" : [
"streams"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "json",
"targets" : [
"json"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "fs",
"targets" : [
"fs"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "crypto",
"targets" : [
"crypto"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "dns",
"targets" : [
"dns"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "net",
"targets" : [
"net"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "dgram",
"targets" : [
"dgram"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "process",
"targets" : [
"process"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "console",
"targets" : [
"console"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "http",
"targets" : [
"http"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "child_process",
"targets" : [
"child_process"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "connect",
"targets" : [
"connect"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "express",
"targets" : [
"express"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "redis",
"targets" : [
"redis"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "cows",
"targets" : [
"cows"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "xsys",
"module_type" : "SwiftTarget",
"name" : "xsys",
"path" : "Sources/xsys",
"product_memberships" : [
"xsys",
"core",
"leftpad",
"events",
"streams",
"json",
"fs",
"crypto",
"dns",
"net",
"dgram",
"process",
"console",
"http",
"child_process",
"connect",
"express",
"redis",
"cows"
],
"sources" : [
"Module.swift",
"POSIXError.swift",
"SocketAddress.swift",
"UUID.swift",
"dylib.swift",
"fd.swift",
"ioctl.swift",
"misc.swift",
"ntohs.swift",
"sockaddr_any.swift",
"socket.swift",
"time.swift",
"timespec.swift",
"timeval_any.swift"
],
"type" : "library"
},
{
"c99name" : "streams",
"module_type" : "SwiftTarget",
"name" : "streams",
"path" : "Sources/streams",
"product_memberships" : [
"streams",
"json",
"fs",
"crypto",
"net",
"dgram",
"process",
"console",
"http",
"child_process",
"connect",
"express",
"redis"
],
"sources" : [
"Duplex.swift",
"DuplexStream.swift",
"GReadableSourceType.swift",
"GReadableStreamType.swift",
"GWritableStreamType.swift",
"GWritableTargetType.swift",
"Module.swift",
"PipeSourceError.swift",
"ReadableByteStreamType.swift",
"ReadableStream.swift",
"SourceStream.swift",
"Stream.swift",
"StreamPromise.swift",
"TargetStream.swift",
"WritableByteStreamType.swift",
"WritableStream.swift",
"adaptors/IteratorSource.swift",
"adaptors/SinkTarget.swift",
"bucket/ArrayBuffer.swift",
"bucket/Bucket.swift",
"bucket/ListBuffer.swift",
"callback/Readable.swift",
"callback/Transform.swift",
"callback/Writable.swift",
"extra/ConcatTarget.swift",
"extra/NullWritableStream.swift",
"extra/Through2.swift",
"extra/TransformStream.swift",
"extra/WritableByteStreamWrapper.swift",
"pipes/Sequence2StreamPipe.swift",
"pipes/Stream2StreamPipe.swift",
"pipes/String2StreamPipe.swift",
"strings/CharacterToUTF8.swift",
"strings/EncodingError.swift",
"strings/StringToUTF8.swift",
"strings/UTF8toCharacter.swift",
"strings/UTF8toLines.swift",
"strings/UniqStrings.swift"
],
"target_dependencies" : [
"core",
"events"
],
"type" : "library"
},
{
"c99name" : "redis",
"module_type" : "SwiftTarget",
"name" : "redis",
"path" : "Sources/redis",
"product_memberships" : [
"redis"
],
"sources" : [
"CallbackHelpers.swift",
"Extensions.swift",
"Module.swift",
"RedisClient.swift",
"RedisCoding.swift",
"RedisCommands.swift",
"RedisConnection.swift",
"RedisParser.swift",
"RedisPrint.swift",
"RedisRetry.swift",
"RedisValue.swift",
"RedisWritableStream.swift"
],
"target_dependencies" : [
"core",
"xsys",
"events",
"streams",
"net",
"console"
],
"type" : "library"
},
{
"c99name" : "process",
"module_type" : "SwiftTarget",
"name" : "process",
"path" : "Sources/process",
"product_memberships" : [
"process",
"console",
"http",
"child_process",
"connect",
"express",
"redis"
],
"sources" : [
"Environment.swift",
"FileSystem.swift",
"Messages.swift",
"Module.swift",
"Stdio.swift"
],
"target_dependencies" : [
"core",
"xsys",
"streams",
"fs"
],
"type" : "library"
},
{
"c99name" : "net",
"module_type" : "SwiftTarget",
"name" : "net",
"path" : "Sources/net",
"product_memberships" : [
"net",
"dgram",
"http",
"connect",
"express",
"redis"
],
"sources" : [
"DNS.swift",
"Module.swift",
"Server.swift",
"Socket.swift",
"SocketAddress.swift",
"SocketSourceTarget.swift",
"Util.swift"
],
"target_dependencies" : [
"core",
"xsys",
"events",
"streams",
"fs",
"dns"
],
"type" : "library"
},
{
"c99name" : "mustache",
"module_type" : "SwiftTarget",
"name" : "mustache",
"path" : "Sources/mustache",
"product_memberships" : [
"mustache",
"express"
],
"sources" : [
"HTMLEscape.swift",
"Helpers.swift",
"MustacheNode.swift",
"MustacheParser.swift",
"MustacheRenderingContext.swift",
"SimpleKVC.swift"
],
"type" : "library"
},
{
"c99name" : "leftpad",
"module_type" : "SwiftTarget",
"name" : "leftpad",
"path" : "Sources/leftpad",
"product_memberships" : [
"leftpad",
"connect",
"express"
],
"sources" : [
"Module.swift"
],
"target_dependencies" : [
"core"
],
"type" : "library"
},
{
"c99name" : "json",
"module_type" : "SwiftTarget",
"name" : "json",
"path" : "Sources/json",
"product_memberships" : [
"json",
"connect",
"express"
],
"sources" : [
"JSONWritableStream.swift",
"JsonFile.swift",
"Module.swift",
"Stringify.swift"
],
"target_dependencies" : [
"core",
"streams",
"Freddy",
"fs"
],
"type" : "library"
},
{
"c99name" : "http_parser",
"module_type" : "SwiftTarget",
"name" : "http_parser",
"path" : "Sources/http_parser",
"product_memberships" : [
"http_parser",
"http",
"connect",
"express"
],
"sources" : [
"CString.swift",
"HTTPError.swift",
"HTTPMethod.swift",
"HTTPParserState.swift",
"URLParser.swift",
"ascii.swift",
"http_parser.swift",
"http_parser_settings.swift"
],
"type" : "library"
},
{
"c99name" : "http",
"module_type" : "SwiftTarget",
"name" : "http",
"path" : "Sources/http",
"product_memberships" : [
"http",
"connect",
"express"
],
"sources" : [
"Agent.swift",
"BasicAuth.swift",
"ClientRequest.swift",
"Cookies.swift",
"Extensions.swift",
"HTTPConnection.swift",
"HTTPMessageWrapper.swift",
"HTTPStatus.swift",
"IncomingMessage.swift",
"IncomingMessageParser.swift",
"Misc.swift",
"Module.swift",
"QueryString.swift",
"RequestOptions.swift",
"Server.swift",
"ServerResponse.swift",
"URL.swift"
],
"target_dependencies" : [
"http_parser",
"core",
"events",
"streams",
"net",
"console",
"base64"
],
"type" : "library"
},
{
"c99name" : "fs",
"module_type" : "SwiftTarget",
"name" : "fs",
"path" : "Sources/fs",
"product_memberships" : [
"json",
"fs",
"net",
"dgram",
"process",
"console",
"http",
"child_process",
"connect",
"express",
"redis"
],
"sources" : [
"AsyncWrapper.swift",
"Convenience.swift",
"Directory.swift",
"ErrnoError.swift",
"FSWatcher.swift",
"FileDescriptor.swift",
"FileDescriptorStream.swift",
"FileSource.swift",
"FileTarget.swift",
"GCDChannelBase.swift",
"Module.swift",
"Path.swift",
"PosixWrappers.swift",
"StatStruct.swift",
"StdInSource.swift",
"StdOutTarget.swift",
"Streams.swift",
"Temp.swift",
"UnixUtils.swift"
],
"target_dependencies" : [
"core",
"xsys",
"events",
"streams"
],
"type" : "library"
},
{
"c99name" : "express",
"module_type" : "SwiftTarget",
"name" : "express",
"path" : "Sources/express",
"product_memberships" : [
"express"
],
"sources" : [
"Express.swift",
"IncomingMessage.swift",
"JSON.swift",
"MiddlewareObject.swift",
"Module.swift",
"Mustache.swift",
"Render.swift",
"Route.swift",
"RouteKeeper.swift",
"Router.swift",
"ServerResponse.swift",
"Settings.swift"
],
"target_dependencies" : [
"core",
"xsys",
"events",
"streams",
"http",
"connect",
"mustache"
],
"type" : "library"
},
{
"c99name" : "events",
"module_type" : "SwiftTarget",
"name" : "events",
"path" : "Sources/events",
"product_memberships" : [
"events",
"streams",
"json",
"fs",
"crypto",
"net",
"dgram",
"process",
"console",
"http",
"child_process",
"connect",
"express",
"redis"
],
"sources" : [
"ErrorEmitter.swift",
"EventEmitter.swift",
"EventListenerSet.swift",
"Module.swift"
],
"target_dependencies" : [
"core"
],
"type" : "library"
},
{
"c99name" : "dns",
"module_type" : "SwiftTarget",
"name" : "dns",
"path" : "Sources/dns",
"product_memberships" : [
"dns",
"net",
"dgram",
"http",
"connect",
"express",
"redis"
],
"sources" : [
"Lookup.swift",
"Module.swift"
],
"target_dependencies" : [
"core",
"xsys"
],
"type" : "library"
},
{
"c99name" : "dgram",
"module_type" : "SwiftTarget",
"name" : "dgram",
"path" : "Sources/dgram",
"product_memberships" : [
"dgram"
],
"sources" : [
"Internals.swift",
"Module.swift",
"Socket.swift"
],
"target_dependencies" : [
"net"
],
"type" : "library"
},
{
"c99name" : "crypto",
"module_type" : "SwiftTarget",
"name" : "crypto",
"path" : "Sources/crypto",
"product_memberships" : [
"crypto"
],
"sources" : [
"Hash.swift",
"MD5Hash.swift",
"Module.swift"
],
"target_dependencies" : [
"core",
"xsys",
"events",
"streams",
"CryptoSwift"
],
"type" : "library"
},
{
"c99name" : "cows",
"module_type" : "SwiftTarget",
"name" : "cows",
"path" : "Sources/cows",
"product_memberships" : [
"cows"
],
"sources" : [
"Module.swift",
"UniqueRandomArray.swift",
"cows.swift"
],
"target_dependencies" : [
"core",
"xsys"
],
"type" : "library"
},
{
"c99name" : "core",
"module_type" : "SwiftTarget",
"name" : "core",
"path" : "Sources/core",
"product_memberships" : [
"core",
"leftpad",
"events",
"streams",
"json",
"fs",
"crypto",
"dns",
"net",
"dgram",
"process",
"console",
"http",
"child_process",
"connect",
"express",
"redis",
"cows"
],
"sources" : [
"ByteBucket.swift",
"CIDictionary.swift",
"Extras.swift",
"Logger.swift",
"Module.swift",
"NozeCore.swift",
"NozeModules.swift",
"Promise.swift",
"RawByteBuffer.swift",
"Swift3.swift"
],
"target_dependencies" : [
"xsys"
],
"type" : "library"
},
{
"c99name" : "console",
"module_type" : "SwiftTarget",
"name" : "console",
"path" : "Sources/console",
"product_memberships" : [
"console",
"http",
"connect",
"express",
"redis"
],
"sources" : [
"Console.swift",
"Module.swift"
],
"target_dependencies" : [
"core",
"xsys",
"events",
"streams",
"process"
],
"type" : "library"
},
{
"c99name" : "connect",
"module_type" : "SwiftTarget",
"name" : "connect",
"path" : "Sources/connect",
"product_memberships" : [
"connect",
"express"
],
"sources" : [
"BodyParser.swift",
"CORS.swift",
"Connect.swift",
"CookieParser.swift",
"Logger.swift",
"MethodOverride.swift",
"Module.swift",
"Pause.swift",
"QS.swift",
"ServeStatic.swift",
"Session.swift",
"TypeIs.swift"
],
"target_dependencies" : [
"core",
"xsys",
"events",
"streams",
"http",
"console",
"Freddy",
"json",
"leftpad"
],
"type" : "library"
},
{
"c99name" : "child_process",
"module_type" : "SwiftTarget",
"name" : "child_process",
"path" : "Sources/child_process",
"product_memberships" : [
"child_process"
],
"sources" : [
"ChildProcess.swift",
"ChildProcessPipes.swift",
"Module.swift",
"PipeSourceTarget.swift",
"Spawn.swift",
"StdioAction.swift"
],
"target_dependencies" : [
"core",
"xsys",
"streams",
"process",
"fs"
],
"type" : "library"
},
{
"c99name" : "base64",
"module_type" : "SwiftTarget",
"name" : "base64",
"path" : "Sources/base64",
"product_memberships" : [
"base64",
"http",
"connect",
"express"
],
"sources" : [
"Base64.swift"
],
"type" : "library"
},
{
"c99name" : "Freddy",
"module_type" : "SwiftTarget",
"name" : "Freddy",
"path" : "Sources/Freddy",
"product_memberships" : [
"Freddy",
"json",
"connect",
"express"
],
"sources" : [
"JSON.swift",
"JSONDecodable.swift",
"JSONEncodable.swift",
"JSONEncodingDetector.swift",
"JSONLiteralConvertible.swift",
"JSONParser.swift",
"JSONSubscripting.swift",
"Swift3.swift"
],
"type" : "library"
},
{
"c99name" : "CryptoSwift",
"module_type" : "SwiftTarget",
"name" : "CryptoSwift",
"path" : "Sources/CryptoSwift",
"product_memberships" : [
"CryptoSwift",
"crypto"
],
"sources" : [
"ArrayExtension.swift",
"BatchedCollection.swift",
"Bit.swift",
"BytesSequence.swift",
"CSArrayType+Extensions.swift",
"Collection+Extension.swift",
"DigestType.swift",
"Generics.swift",
"Int+Extension.swift",
"IntegerConvertible.swift",
"MD5.swift",
"Operators.swift",
"Updatable.swift",
"Utils.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"base64",
"child_process",
"connect",
"console",
"core",
"cows",
"crypto",
"CryptoSwift",
"dgram",
"dns",
"events",
"express",
"Freddy",
"fs",
"http",
"http_parser",
"json",
"leftpad",
"mustache",
"net",
"NozeIO-Package",
"process",
"redis",
"streams",
"xsys"
]
}
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme NozeIO-Package -destination generic/platform=tvOS
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme NozeIO-Package -destination generic/platform=tvOS
Resolve Package Graph
Resolved source packages:
NozeIO: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (48 targets)
Target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
Target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
Target 'redis' in project 'NozeIO'
➜ Explicit dependency on target 'redis' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'console' in project 'NozeIO'
Target 'redis' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'console' in project 'NozeIO'
Target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
Target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
Target 'mustache' in project 'NozeIO'
➜ Explicit dependency on target 'mustache' in project 'NozeIO'
Target 'leftpad' in project 'NozeIO'
➜ Explicit dependency on target 'leftpad' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
Target 'json' in project 'NozeIO'
➜ Explicit dependency on target 'json' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'Freddy' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
Target 'http_parser' in project 'NozeIO'
➜ Explicit dependency on target 'http_parser' in project 'NozeIO'
Target 'http' in project 'NozeIO'
➜ Explicit dependency on target 'http' in project 'NozeIO'
➜ Explicit dependency on target 'http_parser' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'console' in project 'NozeIO'
➜ Explicit dependency on target 'base64' in project 'NozeIO'
Target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
Target 'express' in project 'NozeIO'
➜ Explicit dependency on target 'express' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'http_parser' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'console' in project 'NozeIO'
➜ Explicit dependency on target 'base64' in project 'NozeIO'
➜ Explicit dependency on target 'http' in project 'NozeIO'
➜ Explicit dependency on target 'Freddy' in project 'NozeIO'
➜ Explicit dependency on target 'json' in project 'NozeIO'
➜ Explicit dependency on target 'leftpad' in project 'NozeIO'
➜ Explicit dependency on target 'connect' in project 'NozeIO'
➜ Explicit dependency on target 'mustache' in project 'NozeIO'
Target 'express' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'http_parser' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'console' in project 'NozeIO'
➜ Explicit dependency on target 'base64' in project 'NozeIO'
➜ Explicit dependency on target 'http' in project 'NozeIO'
➜ Explicit dependency on target 'Freddy' in project 'NozeIO'
➜ Explicit dependency on target 'json' in project 'NozeIO'
➜ Explicit dependency on target 'leftpad' in project 'NozeIO'
➜ Explicit dependency on target 'connect' in project 'NozeIO'
➜ Explicit dependency on target 'mustache' in project 'NozeIO'
Target 'mustache' in project 'NozeIO' (no dependencies)
Target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
Target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
Target 'dgram' in project 'NozeIO'
➜ Explicit dependency on target 'dgram' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
Target 'dgram' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
Target 'crypto' in project 'NozeIO'
➜ Explicit dependency on target 'crypto' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'CryptoSwift' in project 'NozeIO'
Target 'crypto' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'CryptoSwift' in project 'NozeIO'
Target 'cows' in project 'NozeIO'
➜ Explicit dependency on target 'cows' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
Target 'cows' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
Target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
Target 'console' in project 'NozeIO'
➜ Explicit dependency on target 'console' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
Target 'connect' in project 'NozeIO'
➜ Explicit dependency on target 'connect' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'http_parser' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'console' in project 'NozeIO'
➜ Explicit dependency on target 'base64' in project 'NozeIO'
➜ Explicit dependency on target 'http' in project 'NozeIO'
➜ Explicit dependency on target 'Freddy' in project 'NozeIO'
➜ Explicit dependency on target 'json' in project 'NozeIO'
➜ Explicit dependency on target 'leftpad' in project 'NozeIO'
Target 'connect' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'http_parser' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'console' in project 'NozeIO'
➜ Explicit dependency on target 'base64' in project 'NozeIO'
➜ Explicit dependency on target 'http' in project 'NozeIO'
➜ Explicit dependency on target 'Freddy' in project 'NozeIO'
➜ Explicit dependency on target 'json' in project 'NozeIO'
➜ Explicit dependency on target 'leftpad' in project 'NozeIO'
Target 'leftpad' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
Target 'json' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'Freddy' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
Target 'http' in project 'NozeIO'
➜ Explicit dependency on target 'http_parser' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'console' in project 'NozeIO'
➜ Explicit dependency on target 'base64' in project 'NozeIO'
Target 'console' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
Target 'net' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'dns' in project 'NozeIO'
Target 'dns' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
Target 'http_parser' in project 'NozeIO' (no dependencies)
Target 'child_process' in project 'NozeIO'
➜ Explicit dependency on target 'child_process' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
Target 'child_process' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'process' in project 'NozeIO'
Target 'process' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'fs' in project 'NozeIO'
Target 'fs' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'streams' in project 'NozeIO'
Target 'streams' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'events' in project 'NozeIO'
Target 'events' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
➜ Explicit dependency on target 'core' in project 'NozeIO'
Target 'core' in project 'NozeIO'
➜ Explicit dependency on target 'xsys' in project 'NozeIO'
Target 'xsys' in project 'NozeIO' (no dependencies)
Target 'base64' in project 'NozeIO'
➜ Explicit dependency on target 'base64' in project 'NozeIO'
Target 'base64' in project 'NozeIO' (no dependencies)
Target 'Freddy' in project 'NozeIO'
➜ Explicit dependency on target 'Freddy' in project 'NozeIO'
Target 'Freddy' in project 'NozeIO' (no dependencies)
Target 'CryptoSwift' in project 'NozeIO'
➜ Explicit dependency on target 'CryptoSwift' in project 'NozeIO'
Target 'CryptoSwift' in project 'NozeIO' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: b8209e138806ee064d1fdf78caac6d93
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/b8209e138806ee064d1fdf78caac6d93.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache
SwiftDriver xsys normal arm64 com.apple.xcode.tools.swift.compiler (in target 'xsys' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name xsys -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys-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/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys.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/NozeIO.build/Debug-appletvos/xsys.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.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/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver base64 normal arm64 com.apple.xcode.tools.swift.compiler (in target 'base64' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name base64 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64-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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.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/NozeIO.build/Debug-appletvos/base64.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver http_parser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'http_parser' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name http_parser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser-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/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser.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/NozeIO.build/Debug-appletvos/http_parser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/http_parser.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/NozeIO.build/Debug-appletvos/http_parser.build/Objects-normal/arm64/http_parser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver CryptoSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptoSwift' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptoSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-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/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.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/NozeIO.build/Debug-appletvos/CryptoSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/CryptoSwift.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/NozeIO.build/Debug-appletvos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver mustache normal arm64 com.apple.xcode.tools.swift.compiler (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name mustache -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache-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/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.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/NozeIO.build/Debug-appletvos/mustache.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.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/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver Freddy normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Freddy' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Freddy -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy-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/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy.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/NozeIO.build/Debug-appletvos/Freddy.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/Freddy.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/NozeIO.build/Debug-appletvos/Freddy.build/Objects-normal/arm64/Freddy-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ base64 (in target 'base64' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/base64/Base64.swift (in target 'base64' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Base64.swift /Users/admin/builder/spi-builder-workspace/Sources/base64/Base64.swift (in target 'base64' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/base64/Base64.swift (in target 'base64' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ MustacheNode.swift /Users/admin/builder/spi-builder-workspace/Sources/mustache/MustacheNode.swift (in target 'mustache' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/mustache/MustacheNode.swift (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/mustache/Helpers.swift (in target 'mustache' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/mustache/Helpers.swift (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ mustache (in target 'mustache' from project 'NozeIO')
EmitSwiftModule normal arm64 (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ MustacheRenderingContext.swift /Users/admin/builder/spi-builder-workspace/Sources/mustache/MustacheRenderingContext.swift (in target 'mustache' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/mustache/MustacheRenderingContext.swift (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ HTMLEscape.swift /Users/admin/builder/spi-builder-workspace/Sources/mustache/HTMLEscape.swift (in target 'mustache' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/mustache/HTMLEscape.swift (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ MustacheParser.swift /Users/admin/builder/spi-builder-workspace/Sources/mustache/MustacheParser.swift (in target 'mustache' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/mustache/MustacheParser.swift (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SimpleKVC.swift /Users/admin/builder/spi-builder-workspace/Sources/mustache/SimpleKVC.swift (in target 'mustache' from project 'NozeIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/mustache/SimpleKVC.swift (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ http_parser (in target 'http_parser' from project 'NozeIO')
EmitSwiftModule normal arm64 (in target 'http_parser' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ xsys (in target 'xsys' from project 'NozeIO')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/xsys/Module.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/POSIXError.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/SocketAddress.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/UUID.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/dylib.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/fd.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/ioctl.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/misc.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/ntohs.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/sockaddr_any.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/socket.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/time.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/timespec.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/timeval_any.swift -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.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 -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.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.3.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 -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name xsys -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.4 -target-sdk-name appletvos18.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/xsys.build/Objects-normal/arm64/xsys.abi.json
EmitSwiftModule normal arm64 (in target 'xsys' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/xsys/POSIXError.swift:183:3: warning: extension declares a conformance of imported type 'POSIXErrorCode' to imported protocol 'Error'; this will not behave correctly if the owners of '_errno' introduce this conformance in the future
extension POSIXErrorCode : Error {}
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/POSIXError.swift:183:3: note: add '@retroactive' to silence this warning
extension POSIXErrorCode : Error {}
^ ~~~~~
@retroactive Error
/Users/admin/builder/spi-builder-workspace/Sources/xsys/misc.swift:80:37: error: 'posix_spawn' is unavailable in tvOS
public let posix_spawn = Darwin.posix_spawn
^~~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/usr/include/spawn.h:60:9: note: 'posix_spawn' has been explicitly marked unavailable here
int posix_spawn(pid_t * __restrict, const char * __restrict,
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/timespec.swift:86:1: warning: extension declares a conformance of imported type 'timespec' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of '_time' introduce this conformance in the future
extension timespec: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/timespec.swift:86:1: note: add '@retroactive' to silence this warning
extension timespec: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
/Users/admin/builder/spi-builder-workspace/Sources/xsys/timespec.swift:97:1: warning: extension declares a conformance of imported type 'timeval' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'sys_time' introduce this conformance in the future
extension timeval: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/xsys/timespec.swift:97:1: note: add '@retroactive' to silence this warning
extension timeval: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
SwiftDriverJobDiscovery normal arm64 Emitting module for base64 (in target 'base64' from project 'NozeIO')
SwiftDriver\ Compilation\ Requirements base64 normal arm64 com.apple.xcode.tools.swift.compiler (in target 'base64' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name base64 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64-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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.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/NozeIO.build/Debug-appletvos/base64.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Base64.swift (in target 'base64' from project 'NozeIO')
SwiftEmitModule normal arm64 Emitting\ module\ for\ Freddy (in target 'Freddy' from project 'NozeIO')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.abi.json (in target 'base64' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/base64.build/Objects-normal/arm64/base64.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/base64.swiftmodule/arm64-apple-tvos.abi.json
SwiftDriverJobDiscovery normal arm64 Emitting module for mustache (in target 'mustache' from project 'NozeIO')
SwiftDriver\ Compilation\ Requirements mustache normal arm64 com.apple.xcode.tools.swift.compiler (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name mustache -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache-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/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.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/NozeIO.build/Debug-appletvos/mustache.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.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/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ CryptoSwift (in target 'CryptoSwift' from project 'NozeIO')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/mustache-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache-Swift.h (in target 'mustache' from project 'NozeIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/mustache-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling MustacheRenderingContext.swift (in target 'mustache' from project 'NozeIO')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/mustache.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.swiftmodule (in target 'mustache' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/mustache.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/mustache.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.swiftdoc (in target 'mustache' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/mustache.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/mustache.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.abi.json (in target 'mustache' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/mustache.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/mustache.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.swiftsourceinfo (in target 'mustache' from project 'NozeIO')
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/NozeIO.build/Debug-appletvos/mustache.build/Objects-normal/arm64/mustache.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/mustache.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ time.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/time.swift (in target 'xsys' from project 'NozeIO')
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
SwiftEmitModule normal arm64 Emitting\ module\ for\ xsys (in target 'xsys' from project 'NozeIO')
EmitSwiftModule normal arm64 (in target 'xsys' from project 'NozeIO')
SwiftCompile normal arm64 Compiling\ time.swift /Users/admin/builder/spi-builder-workspace/Sources/xsys/time.swift (in target 'xsys' from project 'NozeIO')
Building workspace spi-builder-workspace with scheme NozeIO-Package
(4 failures)
BUILD FAILURE 6.1 tvOS