Build Information
Failed to build sEndpointSecurity, reference 0.3.3 (89716a
), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 28 Apr 2025 00:30:51 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme sEndpointSecurity -destination platform=macOS,arch=arm64
Build Log
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift:27:13: warning: let 'log' is not concurrency-safe because non-'Sendable' type 'any SpellbookLog' may have shared mutable state; this is an error in the Swift 6 language mode
private let log = SpellbookLogger.internalLog(.client)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/SpellbookLog.swift:25:17: note: protocol 'SpellbookLog' does not conform to the 'Sendable' protocol
public protocol SpellbookLog {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift:25:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SpellbookFoundation'
import SpellbookFoundation
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift:27:13: note: add '@MainActor' to make let 'log' part of global actor 'MainActor'
private let log = SpellbookLogger.internalLog(.client)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift:27:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let log = SpellbookLogger.internalLog(.client)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift:47:23: warning: capture of 'self' with non-sendable type 'ESMuteProcess?' in a '@Sendable' closure
guard let self else { return }
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift:29:22: note: class 'ESMuteProcess' does not conform to the 'Sendable' protocol
internal final class ESMuteProcess {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:50:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ESConverter.Config' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = Self(execArgs: false, execEnv: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:38:19: note: consider making struct 'Config' conform to the 'Sendable' protocol
public struct Config: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:50:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default` = Self(execArgs: false, execEnv: false)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = Self(execArgs: false, execEnv: false)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:51:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'ESConverter.Config' may have shared mutable state; this is an error in the Swift 6 language mode
public static let full = Self(execArgs: true, execEnv: true)
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:38:19: note: consider making struct 'Config' conform to the 'Sendable' protocol
public struct Config: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:51:23: note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
public static let full = Self(execArgs: true, execEnv: true)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let full = Self(execArgs: true, execEnv: true)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:593:40: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
.init(instigator: esProcess(es.instigator), source: esFile(es.source), target: esFile(es.target))
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:593:40: note: coalesce using '??' to provide a default when the optional value contains 'nil'
.init(instigator: esProcess(es.instigator), source: esFile(es.source), target: esFile(es.target))
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:593:40: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
.init(instigator: esProcess(es.instigator), source: esFile(es.source), target: esFile(es.target))
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:825:66: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.pointee.data.od.pointee.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:825:66: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.pointee.data.od.pointee.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:825:66: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.pointee.data.od.pointee.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:833:71: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.pointee.data.touchid.pointee.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:833:71: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.pointee.data.touchid.pointee.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:833:71: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.pointee.data.touchid.pointee.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:839:69: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.pointee.data.token.pointee.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:839:69: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.pointee.data.token.pointee.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:839:69: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.pointee.data.token.pointee.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:981:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:981:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:981:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:989:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:989:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:989:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1010:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1010:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1010:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1019:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1019:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1019:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1052:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1052:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1052:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1063:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1063:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1063:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1074:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1074:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1074:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1085:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1085:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1085:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1096:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1096:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1096:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1106:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1106:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1106:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1116:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1116:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1116:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1129:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1129:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1129:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1142:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1142:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1142:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1158:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1158:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1158:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1168:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1168:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1168:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1178:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1178:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1178:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1188:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1188:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1188:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
SwiftDriverJobDiscovery normal arm64 Compiling SBUnit.swift, SpellbookLog.swift, Utils.swift, WildcardExpression.swift, DictionaryCodingKey.swift, DictionaryReader.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 Compiling\ ESServiceSubscriptionStore.swift,\ ESSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESServiceSubscriptionStore.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESSubscription.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESServiceSubscriptionStore.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESServiceSubscriptionStore.swift:27:13: warning: let 'log' is not concurrency-safe because non-'Sendable' type 'any SpellbookLog' may have shared mutable state; this is an error in the Swift 6 language mode
private let log = SpellbookLogger.internalLog(.service)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/SpellbookLog.swift:25:17: note: protocol 'SpellbookLog' does not conform to the 'Sendable' protocol
public protocol SpellbookLog {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESServiceSubscriptionStore.swift:25:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SpellbookFoundation'
import SpellbookFoundation
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESServiceSubscriptionStore.swift:27:13: note: add '@MainActor' to make let 'log' part of global actor 'MainActor'
private let log = SpellbookLogger.internalLog(.service)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESServiceSubscriptionStore.swift:27:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let log = SpellbookLogger.internalLog(.service)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESSubscription.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Proxies.swift, Benchmark.swift, CancellationToken.swift, Environment.swift, Extensions - Codable.swift, Extensions - Collections.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 Compiling\ ESNativeClient.swift,\ ESNativeTypeDescriptions.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeClient.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeTypeDescriptions.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeClient.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeTypeDescriptions.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:36:1: warning: extension declares a conformance of imported type 'es_event_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_event_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:36:1: note: add '@retroactive' to silence this warning
extension es_event_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:339:1: warning: extension declares a conformance of imported type 'es_auth_result_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_auth_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:339:1: note: add '@retroactive' to silence this warning
extension es_auth_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:352:1: warning: extension declares a conformance of imported type 'es_action_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_action_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:352:1: note: add '@retroactive' to silence this warning
extension es_action_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:365:1: warning: extension declares a conformance of imported type 'es_result_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_result_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:365:1: note: add '@retroactive' to silence this warning
extension es_result_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:378:1: warning: extension declares a conformance of imported type 'es_return_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_return_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:378:1: note: add '@retroactive' to silence this warning
extension es_return_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:391:1: warning: extension declares a conformance of imported type 'es_respond_result_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_respond_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:391:1: note: add '@retroactive' to silence this warning
extension es_respond_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:412:1: warning: extension declares a conformance of imported type 'es_new_client_result_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_new_client_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:412:1: note: add '@retroactive' to silence this warning
extension es_new_client_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:435:1: warning: extension declares a conformance of imported type 'es_clear_cache_result_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_clear_cache_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:435:1: note: add '@retroactive' to silence this warning
extension es_clear_cache_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:450:1: warning: extension declares a conformance of imported type 'es_proc_check_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_proc_check_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:450:1: note: add '@retroactive' to silence this warning
extension es_proc_check_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:479:1: warning: extension declares a conformance of imported type 'es_proc_suspend_resume_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_proc_suspend_resume_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:479:1: note: add '@retroactive' to silence this warning
extension es_proc_suspend_resume_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:494:1: warning: extension declares a conformance of imported type 'es_set_or_clear_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_set_or_clear_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:494:1: note: add '@retroactive' to silence this warning
extension es_set_or_clear_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:507:1: warning: extension declares a conformance of imported type 'es_mute_path_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_mute_path_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:507:1: note: add '@retroactive' to silence this warning
extension es_mute_path_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:524:1: warning: extension declares a conformance of imported type 'es_mute_inversion_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_mute_inversion_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:524:1: note: add '@retroactive' to silence this warning
extension es_mute_inversion_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:541:1: warning: extension declares a conformance of imported type 'es_mute_inverted_return_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_mute_inverted_return_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:541:1: note: add '@retroactive' to silence this warning
extension es_mute_inverted_return_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:556:1: warning: extension declares a conformance of imported type 'es_btm_item_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_btm_item_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:556:1: note: add '@retroactive' to silence this warning
extension es_btm_item_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:575:1: warning: extension declares a conformance of imported type 'es_touchid_mode_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_touchid_mode_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:575:1: note: add '@retroactive' to silence this warning
extension es_touchid_mode_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:588:1: warning: extension declares a conformance of imported type 'es_auto_unlock_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_auto_unlock_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:588:1: note: add '@retroactive' to silence this warning
extension es_auto_unlock_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:601:1: warning: extension declares a conformance of imported type 'es_openssh_login_result_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_openssh_login_result_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:601:1: note: add '@retroactive' to silence this warning
extension es_openssh_login_result_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:630:1: warning: extension declares a conformance of imported type 'es_address_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_address_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:630:1: note: add '@retroactive' to silence this warning
extension es_address_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:649:1: warning: extension declares a conformance of imported type 'es_profile_source_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_profile_source_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:649:1: note: add '@retroactive' to silence this warning
extension es_profile_source_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:662:1: warning: extension declares a conformance of imported type 'es_sudo_plugin_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_sudo_plugin_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:662:1: note: add '@retroactive' to silence this warning
extension es_sudo_plugin_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:683:1: warning: extension declares a conformance of imported type 'es_authorization_rule_class_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_authorization_rule_class_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:683:1: note: add '@retroactive' to silence this warning
extension es_authorization_rule_class_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:706:1: warning: extension declares a conformance of imported type 'es_od_account_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_od_account_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:706:1: note: add '@retroactive' to silence this warning
extension es_od_account_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:719:1: warning: extension declares a conformance of imported type 'es_od_record_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_od_record_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:719:1: note: add '@retroactive' to silence this warning
extension es_od_record_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:732:1: warning: extension declares a conformance of imported type 'es_xpc_domain_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_xpc_domain_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:732:1: note: add '@retroactive' to silence this warning
extension es_xpc_domain_type_t: ESNativeType {
^
SwiftCompile normal arm64 Compiling\ Log.swift,\ Utils.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Utils.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Log.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Log.swift:38:25: warning: reference to class property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
SpellbookLogger.default.with(subsystem: sEndpointSecurityLog.subsystem, category: category.rawValue)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/SpellbookLog.swift:127:23: note: class property declared here
public static var `default` = SpellbookLogger(name: "default")
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Utils.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Utils.swift:29:47: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
self.async(flags: flags, execute: work)
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Utils.swift:27:68: note: parameter 'work' is implicitly non-sendable
internal func async(flags: DispatchWorkItemFlags = [], execute work: @escaping () -> Void) {
^
@Sendable
SwiftCompile normal arm64 Compiling\ ESClientProtocol.swift,\ ESClientTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientProtocol.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:38:23: warning: static property 'allow' is not concurrency-safe because non-'Sendable' type 'ESAuthResolution' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allow = ESAuthResolution(result: .auth(true), cache: true)
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:27:15: note: consider making struct 'ESAuthResolution' conform to the 'Sendable' protocol
public struct ESAuthResolution: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:38:23: note: add '@MainActor' to make static property 'allow' part of global actor 'MainActor'
public static let allow = ESAuthResolution(result: .auth(true), cache: true)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allow = ESAuthResolution(result: .auth(true), cache: true)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:39:23: warning: static property 'allowOnce' is not concurrency-safe because non-'Sendable' type 'ESAuthResolution' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allowOnce = ESAuthResolution(result: .auth(true), cache: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:27:15: note: consider making struct 'ESAuthResolution' conform to the 'Sendable' protocol
public struct ESAuthResolution: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:39:23: note: add '@MainActor' to make static property 'allowOnce' part of global actor 'MainActor'
public static let allowOnce = ESAuthResolution(result: .auth(true), cache: false)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allowOnce = ESAuthResolution(result: .auth(true), cache: false)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:40:23: warning: static property 'deny' is not concurrency-safe because non-'Sendable' type 'ESAuthResolution' may have shared mutable state; this is an error in the Swift 6 language mode
public static let deny = ESAuthResolution(result: .auth(false), cache: true)
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:27:15: note: consider making struct 'ESAuthResolution' conform to the 'Sendable' protocol
public struct ESAuthResolution: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:40:23: note: add '@MainActor' to make static property 'deny' part of global actor 'MainActor'
public static let deny = ESAuthResolution(result: .auth(false), cache: true)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let deny = ESAuthResolution(result: .auth(false), cache: true)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:41:23: warning: static property 'denyOnce' is not concurrency-safe because non-'Sendable' type 'ESAuthResolution' may have shared mutable state; this is an error in the Swift 6 language mode
public static let denyOnce = ESAuthResolution(result: .auth(false), cache: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:27:15: note: consider making struct 'ESAuthResolution' conform to the 'Sendable' protocol
public struct ESAuthResolution: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:41:23: note: add '@MainActor' to make static property 'denyOnce' part of global actor 'MainActor'
public static let denyOnce = ESAuthResolution(result: .auth(false), cache: false)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let denyOnce = ESAuthResolution(result: .auth(false), cache: false)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:46:16: warning: stored property 'result' of 'Sendable'-conforming generic struct 'ESError' has non-sendable type 'T'; this is an error in the Swift 6 language mode
public var result: T
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:44:23: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public struct ESError<T: RawRepresentable>: Error, Codable where T: Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:94:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'ESEventSet' may have shared mutable state; this is an error in the Swift 6 language mode
public static let empty = ESEventSet(events: [])
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:77:15: note: consider making struct 'ESEventSet' conform to the 'Sendable' protocol
public struct ESEventSet: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:94:23: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
public static let empty = ESEventSet(events: [])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let empty = ESEventSet(events: [])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:95:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ESEventSet' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all = ESEventSet(events: (0..<ES_EVENT_TYPE_LAST.rawValue).map(es_event_type_t.init(rawValue:)))
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:77:15: note: consider making struct 'ESEventSet' conform to the 'Sendable' protocol
public struct ESEventSet: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:95:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static let all = ESEventSet(events: (0..<ES_EVENT_TYPE_LAST.rawValue).map(es_event_type_t.init(rawValue:)))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all = ESEventSet(events: (0..<ES_EVENT_TYPE_LAST.rawValue).map(es_event_type_t.init(rawValue:)))
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ESXPCInternals.swift,\ ESXPCListener.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCInternals.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCInternals.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift:28:13: warning: let 'log' is not concurrency-safe because non-'Sendable' type 'any SpellbookLog' may have shared mutable state; this is an error in the Swift 6 language mode
private let log = SpellbookLogger.internalLog(.xpc)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/SpellbookLog.swift:25:17: note: protocol 'SpellbookLog' does not conform to the 'Sendable' protocol
public protocol SpellbookLog {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SpellbookFoundation'
import SpellbookFoundation
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift:28:13: note: add '@MainActor' to make let 'log' part of global actor 'MainActor'
private let log = SpellbookLogger.internalLog(.xpc)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift:28:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let log = SpellbookLogger.internalLog(.xpc)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift:290:68: warning: passing non-sendable parameter 'errorHandler' to function expecting a @Sendable closure
let proxy = remoteObject.remoteObjectProxyWithErrorHandler(errorHandler)
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift:281:9: note: parameter 'errorHandler' is implicitly non-sendable
errorHandler: @escaping (Error) -> Void,
^
@Sendable
SwiftDriverJobDiscovery normal arm64 Compiling SynchronousExecutor.swift, Boxing.swift, Closure.swift, CommonError.swift, Refreshable.swift, Resource (RAII).swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriverJobDiscovery normal arm64 Compiling Unsafe.swift, Exceptions.swift, DeviceInfo.swift, Atomic.swift, BlockingQueue.swift, ConcurrentBlockOperation.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriverJobDiscovery normal arm64 Compiling Extensions - Comparable.swift, Extensions - Formatters.swift, Extensions - NSError.swift, Extensions - Other.swift, Extensions - StandardTypes.swift, ObjectBuilder.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriverJobDiscovery normal arm64 Compiling Extensions - CoreGraphics.swift, AuditToken.swift, BridgedCEnum.swift, IOKitError.swift, Mach.swift, POD+Swift.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 Compiling\ ESTypes.swift,\ ESService.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESService.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESTypes.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESService.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Log.swift, Utils.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftDriverJobDiscovery normal arm64 Compiling ESClientProtocol.swift, ESClientTypes.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftDriver\ Compilation SpellbookFoundation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SpellbookFoundation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SpellbookFoundationObjC.modulemap -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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation-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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundationObjC -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ESXPCInternals.swift, ESXPCListener.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftDriverJobDiscovery normal arm64 Compiling ESMessagePtr.swift, ESMutePath.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftDriverJobDiscovery normal arm64 Compiling ESServiceSubscriptionStore.swift, ESSubscription.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.o normal (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.o
SwiftDriverJobDiscovery normal arm64 Compiling ESNativeTypeUtils.swift, ESClient.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftDriverJobDiscovery normal arm64 Compiling ESNativeClient.swift, ESNativeTypeDescriptions.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
ExtractAppIntentsMetadata (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SpellbookFoundation --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier swiftspellbook.SpellbookFoundation --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/SpellbookFoundation.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/SpellbookFoundation.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
SwiftDriverJobDiscovery normal arm64 Compiling ESXPCClient.swift, ESXPCConnection.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:6ec46a70af9fedf38ac89a65f2dcbfd2a5ba1f2e, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:6ec46a70af9fedf38ac89a65f2dcbfd2a5ba1f2e, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:6ec46a70af9fedf38ac89a65f2dcbfd2a5ba1f2e, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:6ec46a70af9fedf38ac89a65f2dcbfd2a5ba1f2e, name:My Mac }
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64 Compiling\ ESMuteProcess.swift,\ ESConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
Building workspace spi-builder-workspace with scheme sEndpointSecurity
(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:
SwiftSpellbook: https://github.com/Alkenso/SwiftSpellbook.git @ 0.4.2
sEndpointSecurity: /Users/admin/builder/spi-builder-workspace
resolved source packages: SwiftSpellbook, sEndpointSecurity
{
"dependencies" : [
{
"identity" : "swiftspellbook",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.2",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Alkenso/SwiftSpellbook.git"
}
],
"manifest_display_name" : "sEndpointSecurity",
"name" : "sEndpointSecurity",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "11.0"
}
],
"products" : [
{
"name" : "sEndpointSecurity",
"targets" : [
"sEndpointSecurity"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "sEndpointSecurityTests",
"module_type" : "SwiftTarget",
"name" : "sEndpointSecurityTests",
"path" : "Sources/sEndpointSecurityTests",
"product_dependencies" : [
"SpellbookTestUtils"
],
"sources" : [
"ESClientTests.swift",
"ESClientTypesTests.swift",
"ESListener/ESServiceTests.swift",
"ESListener/MockESClient.swift",
"ESMutePathTests.swift",
"ESMuteProcessTests.swift",
"MockNativeClient.swift",
"TestUtils.swift"
],
"target_dependencies" : [
"sEndpointSecurity"
],
"type" : "test"
},
{
"c99name" : "sEndpointSecurity",
"module_type" : "SwiftTarget",
"name" : "sEndpointSecurity",
"path" : "Sources/sEndpointSecurity",
"product_dependencies" : [
"SpellbookFoundation"
],
"product_memberships" : [
"sEndpointSecurity"
],
"sources" : [
"ESClient - Native/ESNativeClient.swift",
"ESClient - Native/ESNativeTypeDescriptions.swift",
"ESClient - Native/ESNativeTypeUtils.swift",
"ESClient/ESClient.swift",
"ESClient/ESClientProtocol.swift",
"ESClient/ESClientTypes.swift",
"ESClient/ESMessagePtr.swift",
"ESClient/ESMutePath.swift",
"ESClient/ESMuteProcess.swift",
"ESMessage/ESConverter.swift",
"ESMessage/ESTypes.swift",
"ESService/ESService.swift",
"ESService/ESServiceSubscriptionStore.swift",
"ESService/ESSubscription.swift",
"Log.swift",
"Utils.swift",
"XPC/ESXPCClient.swift",
"XPC/ESXPCConnection.swift",
"XPC/ESXPCInternals.swift",
"XPC/ESXPCListener.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"sEndpointSecurity"
]
}
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme sEndpointSecurity -destination platform=macOS,arch=arm64
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 sEndpointSecurity -destination platform=macOS,arch=arm64
Resolve Package Graph
Resolved source packages:
sEndpointSecurity: /Users/admin/builder/spi-builder-workspace
SwiftSpellbook: https://github.com/Alkenso/SwiftSpellbook.git @ 0.4.2
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (5 targets)
Target 'sEndpointSecurity' in project 'sEndpointSecurity'
➜ Explicit dependency on target 'sEndpointSecurity' in project 'sEndpointSecurity'
➜ Explicit dependency on target 'SpellbookFoundation' in project 'SwiftSpellbook'
Target 'sEndpointSecurity' in project 'sEndpointSecurity'
➜ Explicit dependency on target 'SpellbookFoundation' in project 'SwiftSpellbook'
Target 'SpellbookFoundation' in project 'SwiftSpellbook'
➜ Explicit dependency on target 'SpellbookFoundation' in project 'SwiftSpellbook'
➜ Explicit dependency on target 'SpellbookFoundationObjC' in project 'SwiftSpellbook'
Target 'SpellbookFoundation' in project 'SwiftSpellbook'
➜ Explicit dependency on target 'SpellbookFoundationObjC' in project 'SwiftSpellbook'
Target 'SpellbookFoundationObjC' in project 'SwiftSpellbook' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -arch arm64 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -x objective-c++ -c /dev/null
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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -x c -c /dev/null
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/ld -version_details
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -arch arm64 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -x c -c /dev/null
Build description signature: 001a43f0feba7e333c505dd7f9d32b02
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/001a43f0feba7e333c505dd7f9d32b02.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache
SwiftDriver SpellbookFoundation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
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 SpellbookFoundation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SpellbookFoundationObjC.modulemap -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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation-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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundationObjC -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ SpellbookFoundation (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
EmitSwiftModule normal arm64 (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Extensions\ -\ Comparable.swift,\ Extensions\ -\ Formatters.swift,\ Extensions\ -\ NSError.swift,\ Extensions\ -\ Other.swift,\ Extensions\ -\ StandardTypes.swift,\ ObjectBuilder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Comparable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Formatters.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ NSError.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Other.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ StandardTypes.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/ObjectBuilder.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Comparable.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Formatters.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ NSError.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Other.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ StandardTypes.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/ObjectBuilder.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SBUnit.swift,\ SpellbookLog.swift,\ Utils.swift,\ WildcardExpression.swift,\ DictionaryCodingKey.swift,\ DictionaryReader.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/SBUnit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/SpellbookLog.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Utils.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/WildcardExpression.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/DictionaryParsing/DictionaryCodingKey.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/DictionaryParsing/DictionaryReader.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/SBUnit.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/SpellbookLog.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Utils.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/WildcardExpression.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/DictionaryParsing/DictionaryCodingKey.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/DictionaryParsing/DictionaryReader.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ DictionaryWriter.swift,\ Extensions\ -\ Bundle.swift,\ Extensions\ -\ FileManager.swift,\ FileEnumerator.swift,\ FileStore.swift,\ TemporaryDirectory.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/DictionaryParsing/DictionaryWriter.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/Extensions\ -\ Bundle.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/Extensions\ -\ FileManager.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/FileEnumerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/FileStore.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/TemporaryDirectory.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/DictionaryParsing/DictionaryWriter.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/Extensions\ -\ Bundle.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/Extensions\ -\ FileManager.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/FileEnumerator.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/FileStore.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Filesystem\ &\ Bundle/TemporaryDirectory.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ BinaryParsingError.swift,\ BinaryReader.swift,\ BinaryReaderInput.swift,\ BinaryWriter.swift,\ BinaryWriterOutput.swift,\ Extensions\ -\ Publisher.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryParsingError.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryReader.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryReaderInput.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryWriter.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryWriterOutput.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Combine/Extensions\ -\ Publisher.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryParsingError.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryReader.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryReaderInput.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryWriter.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/BinaryParsing/BinaryWriterOutput.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Combine/Extensions\ -\ Publisher.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Extensions\ -\ CoreGraphics.swift,\ AuditToken.swift,\ BridgedCEnum.swift,\ IOKitError.swift,\ Mach.swift,\ POD+Swift.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/GUI/Extensions\ -\ CoreGraphics.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/AuditToken.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/BridgedCEnum.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/IOKitError.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/Mach.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/POD+Swift.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/GUI/Extensions\ -\ CoreGraphics.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/AuditToken.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/BridgedCEnum.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/IOKitError.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/Mach.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/POD+Swift.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Proxies.swift,\ Benchmark.swift,\ CancellationToken.swift,\ Environment.swift,\ Extensions\ -\ Codable.swift,\ Extensions\ -\ Collections.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Combine/Proxies.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Benchmark.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/CancellationToken.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Environment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Codable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Collections.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Combine/Proxies.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Benchmark.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/CancellationToken.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Environment.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Codable.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Common/Extensions\ -\ Collections.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Extensions\ -\ DispatchQueue.swift,\ Extensions\ -\ Locks.swift,\ Extensions\ -\ Task.swift,\ PosixLocks.swift,\ SynchronizationUtils.swift,\ Synchronized.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Extensions\ -\ DispatchQueue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Extensions\ -\ Locks.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Extensions\ -\ Task.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/PosixLocks.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/SynchronizationUtils.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Synchronized.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Extensions\ -\ DispatchQueue.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Extensions\ -\ Locks.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Extensions\ -\ Task.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/PosixLocks.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/SynchronizationUtils.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Synchronized.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Unsafe.swift,\ Exceptions.swift,\ DeviceInfo.swift,\ Atomic.swift,\ BlockingQueue.swift,\ ConcurrentBlockOperation.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/Unsafe.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ObjC\ Bridging/Exceptions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/System\ &\ Hardware/DeviceInfo.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Atomic.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/BlockingQueue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/ConcurrentBlockOperation.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Low\ Level/Unsafe.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ObjC\ Bridging/Exceptions.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/System\ &\ Hardware/DeviceInfo.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/Atomic.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/BlockingQueue.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/ConcurrentBlockOperation.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Types.swift,\ EventAsk.swift,\ EventNotify.swift,\ Observable.swift,\ ValueObserving.swift,\ ValueStore.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Types.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/EventAsk.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/EventNotify.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/Observable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/ValueObserving.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/ValueStore.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Types.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/EventAsk.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/EventNotify.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/Observable.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/ValueObserving.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/ValueObserving/ValueStore.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SynchronousExecutor.swift,\ Boxing.swift,\ Closure.swift,\ CommonError.swift,\ Refreshable.swift,\ Resource\ (RAII).swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/SynchronousExecutor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Boxing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Closure.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/CommonError.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Refreshable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Resource\ (RAII).swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Threading\ &\ Concurrency/SynchronousExecutor.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Boxing.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Closure.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/CommonError.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Refreshable.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundation/Types\ &\ PropertyWrappers/Resource\ (RAII).swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Extensions - DispatchQueue.swift, Extensions - Locks.swift, Extensions - Task.swift, PosixLocks.swift, SynchronizationUtils.swift, Synchronized.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriverJobDiscovery normal arm64 Compiling BinaryParsingError.swift, BinaryReader.swift, BinaryReaderInput.swift, BinaryWriter.swift, BinaryWriterOutput.swift, Extensions - Publisher.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriverJobDiscovery normal arm64 Compiling Unsafe.swift, Exceptions.swift, DeviceInfo.swift, Atomic.swift, BlockingQueue.swift, ConcurrentBlockOperation.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriverJobDiscovery normal arm64 Compiling SBUnit.swift, SpellbookLog.swift, Utils.swift, WildcardExpression.swift, DictionaryCodingKey.swift, DictionaryReader.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriverJobDiscovery normal arm64 Compiling Extensions - Comparable.swift, Extensions - Formatters.swift, Extensions - NSError.swift, Extensions - Other.swift, Extensions - StandardTypes.swift, ObjectBuilder.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriverJobDiscovery normal arm64 Emitting module for SpellbookFoundation (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriver\ Compilation\ Requirements SpellbookFoundation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
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 SpellbookFoundation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SpellbookFoundationObjC.modulemap -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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation-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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundationObjC -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.swiftmodule (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook
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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.abi.json (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook
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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.swiftmodule/arm64-apple-macos.abi.json
SwiftDriver sEndpointSecurity normal arm64 com.apple.xcode.tools.swift.compiler (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
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 sEndpointSecurity -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/sEndpointSecurity.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SpellbookFoundationObjC.modulemap -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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos11.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/sEndpointSecurity-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/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/sEndpointSecurity.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/sEndpointSecurity.build/Debug/sEndpointSecurity.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/sEndpointSecurity_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundationObjC -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.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/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/sEndpointSecurity-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Proxies.swift, Benchmark.swift, CancellationToken.swift, Environment.swift, Extensions - Codable.swift, Extensions - Collections.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftDriverJobDiscovery normal arm64 Compiling DictionaryWriter.swift, Extensions - Bundle.swift, Extensions - FileManager.swift, FileEnumerator.swift, FileStore.swift, TemporaryDirectory.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 Compiling\ ESClientProtocol.swift,\ ESClientTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientProtocol.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ESNativeTypeUtils.swift,\ ESClient.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeTypeUtils.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClient.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeTypeUtils.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClient.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ESNativeClient.swift,\ ESNativeTypeDescriptions.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeClient.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeTypeDescriptions.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeClient.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeTypeDescriptions.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:36:1: warning: extension declares a conformance of imported type 'es_event_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_event_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:36:1: note: add '@retroactive' to silence this warning
extension es_event_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:339:1: warning: extension declares a conformance of imported type 'es_auth_result_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_auth_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:339:1: note: add '@retroactive' to silence this warning
extension es_auth_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:352:1: warning: extension declares a conformance of imported type 'es_action_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_action_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:352:1: note: add '@retroactive' to silence this warning
extension es_action_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:365:1: warning: extension declares a conformance of imported type 'es_result_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_result_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:365:1: note: add '@retroactive' to silence this warning
extension es_result_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:378:1: warning: extension declares a conformance of imported type 'es_return_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_return_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:378:1: note: add '@retroactive' to silence this warning
extension es_return_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:391:1: warning: extension declares a conformance of imported type 'es_respond_result_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_respond_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:391:1: note: add '@retroactive' to silence this warning
extension es_respond_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:412:1: warning: extension declares a conformance of imported type 'es_new_client_result_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_new_client_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:412:1: note: add '@retroactive' to silence this warning
extension es_new_client_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:435:1: warning: extension declares a conformance of imported type 'es_clear_cache_result_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_clear_cache_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:435:1: note: add '@retroactive' to silence this warning
extension es_clear_cache_result_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:450:1: warning: extension declares a conformance of imported type 'es_proc_check_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_proc_check_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:450:1: note: add '@retroactive' to silence this warning
extension es_proc_check_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:479:1: warning: extension declares a conformance of imported type 'es_proc_suspend_resume_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_proc_suspend_resume_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:479:1: note: add '@retroactive' to silence this warning
extension es_proc_suspend_resume_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:494:1: warning: extension declares a conformance of imported type 'es_set_or_clear_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_set_or_clear_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:494:1: note: add '@retroactive' to silence this warning
extension es_set_or_clear_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:507:1: warning: extension declares a conformance of imported type 'es_mute_path_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_mute_path_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:507:1: note: add '@retroactive' to silence this warning
extension es_mute_path_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:524:1: warning: extension declares a conformance of imported type 'es_mute_inversion_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_mute_inversion_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:524:1: note: add '@retroactive' to silence this warning
extension es_mute_inversion_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:541:1: warning: extension declares a conformance of imported type 'es_mute_inverted_return_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_mute_inverted_return_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:541:1: note: add '@retroactive' to silence this warning
extension es_mute_inverted_return_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:556:1: warning: extension declares a conformance of imported type 'es_btm_item_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_btm_item_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:556:1: note: add '@retroactive' to silence this warning
extension es_btm_item_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:575:1: warning: extension declares a conformance of imported type 'es_touchid_mode_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_touchid_mode_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:575:1: note: add '@retroactive' to silence this warning
extension es_touchid_mode_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:588:1: warning: extension declares a conformance of imported type 'es_auto_unlock_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_auto_unlock_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:588:1: note: add '@retroactive' to silence this warning
extension es_auto_unlock_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:601:1: warning: extension declares a conformance of imported type 'es_openssh_login_result_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_openssh_login_result_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:601:1: note: add '@retroactive' to silence this warning
extension es_openssh_login_result_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:630:1: warning: extension declares a conformance of imported type 'es_address_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_address_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:630:1: note: add '@retroactive' to silence this warning
extension es_address_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:649:1: warning: extension declares a conformance of imported type 'es_profile_source_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_profile_source_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:649:1: note: add '@retroactive' to silence this warning
extension es_profile_source_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:662:1: warning: extension declares a conformance of imported type 'es_sudo_plugin_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_sudo_plugin_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:662:1: note: add '@retroactive' to silence this warning
extension es_sudo_plugin_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:683:1: warning: extension declares a conformance of imported type 'es_authorization_rule_class_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_authorization_rule_class_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:683:1: note: add '@retroactive' to silence this warning
extension es_authorization_rule_class_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:706:1: warning: extension declares a conformance of imported type 'es_od_account_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_od_account_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:706:1: note: add '@retroactive' to silence this warning
extension es_od_account_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:719:1: warning: extension declares a conformance of imported type 'es_od_record_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_od_record_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:719:1: note: add '@retroactive' to silence this warning
extension es_od_record_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:732:1: warning: extension declares a conformance of imported type 'es_xpc_domain_type_t' to imported protocols 'CustomStringConvertible', 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'EndpointSecurity' introduce this conformance in the future
extension es_xpc_domain_type_t: ESNativeType {
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient - Native/ESNativeTypeDescriptions.swift:732:1: note: add '@retroactive' to silence this warning
extension es_xpc_domain_type_t: ESNativeType {
^
SwiftCompile normal arm64 Compiling\ ESMessagePtr.swift,\ ESMutePath.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMessagePtr.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMutePath.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMessagePtr.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMutePath.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ sEndpointSecurity (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
EmitSwiftModule normal arm64 (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ESServiceSubscriptionStore.swift,\ ESSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESServiceSubscriptionStore.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESSubscription.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESServiceSubscriptionStore.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESSubscription.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ESXPCClient.swift,\ ESXPCConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCClient.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCConnection.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCClient.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCConnection.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ESMuteProcess.swift,\ ESConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeClient.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeTypeDescriptions.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient\ -\ Native/ESNativeTypeUtils.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClient.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESClientTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMessagePtr.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMutePath.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESService.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESServiceSubscriptionStore.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Utils.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCClient.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCInternals.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESMuteProcess.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESMuteProcess.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESMuteProcess.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESMuteProcess.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESConverter.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESConverter.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESConverter.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESConverter.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/sEndpointSecurity_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 -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SpellbookFoundationObjC.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundationObjC -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name sEndpointSecurity -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.4 -target-sdk-name macosx15.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESMuteProcess.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESConverter.o -index-unit-output-path /sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESMuteProcess.o -index-unit-output-path /sEndpointSecurity.build/Debug/sEndpointSecurity.build/Objects-normal/arm64/ESConverter.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:593:40: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
.init(instigator: esProcess(es.instigator), source: esFile(es.source), target: esFile(es.target))
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:593:40: note: coalesce using '??' to provide a default when the optional value contains 'nil'
.init(instigator: esProcess(es.instigator), source: esFile(es.source), target: esFile(es.target))
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:593:40: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
.init(instigator: esProcess(es.instigator), source: esFile(es.source), target: esFile(es.target))
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:825:66: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.pointee.data.od.pointee.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:825:66: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.pointee.data.od.pointee.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:825:66: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.pointee.data.od.pointee.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:833:71: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.pointee.data.touchid.pointee.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:833:71: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.pointee.data.touchid.pointee.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:833:71: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.pointee.data.touchid.pointee.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:839:69: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.pointee.data.token.pointee.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:839:69: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.pointee.data.token.pointee.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:839:69: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.pointee.data.token.pointee.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:981:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:981:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:981:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:989:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:989:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:989:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1010:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1010:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1010:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1019:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1019:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1019:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1052:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1052:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1052:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1063:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1063:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1063:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1074:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1074:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1074:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1085:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1085:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1085:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1096:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1096:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1096:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1106:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1106:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1106:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1116:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1116:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1116:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1129:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1129:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1129:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1142:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1142:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1142:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1158:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1158:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1158:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1168:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1168:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1168:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1178:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1178:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1178:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1188:38: error: value of optional type 'UnsafeMutablePointer<es_process_t>?' must be unwrapped to a value of type 'UnsafeMutablePointer<es_process_t>'
instigator: esProcess(es.instigator),
^
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1188:38: note: coalesce using '??' to provide a default when the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift:1188:38: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
instigator: esProcess(es.instigator),
^
!
SwiftDriverJobDiscovery normal arm64 Compiling Types.swift, EventAsk.swift, EventNotify.swift, Observable.swift, ValueObserving.swift, ValueStore.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 Compiling\ ESXPCInternals.swift,\ ESXPCListener.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCInternals.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCInternals.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/XPC/ESXPCListener.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Extensions - CoreGraphics.swift, AuditToken.swift, BridgedCEnum.swift, IOKitError.swift, Mach.swift, POD+Swift.swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 Compiling\ Log.swift,\ Utils.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Utils.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Log.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/Utils.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling SynchronousExecutor.swift, Boxing.swift, Closure.swift, CommonError.swift, Refreshable.swift, Resource (RAII).swift (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
SwiftCompile normal arm64 Compiling\ ESTypes.swift,\ ESService.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESService.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESTypes.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESService/ESService.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ESMessagePtr.swift, ESMutePath.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftDriver\ Compilation SpellbookFoundation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SpellbookFoundation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SpellbookFoundationObjC.modulemap -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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation-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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook/Sources/SpellbookFoundationObjC -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.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/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Log.swift, Utils.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.o normal (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.o
SwiftDriverJobDiscovery normal arm64 Compiling ESClientProtocol.swift, ESClientTypes.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
ExtractAppIntentsMetadata (in target 'SpellbookFoundation' from project 'SwiftSpellbook')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftSpellbook
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SpellbookFoundation --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier swiftspellbook.SpellbookFoundation --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpellbookFoundation.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/SpellbookFoundation.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/SpellbookFoundation.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSpellbook.build/Debug/SpellbookFoundation.build/Objects-normal/arm64/SpellbookFoundation.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
SwiftDriverJobDiscovery normal arm64 Compiling ESXPCInternals.swift, ESXPCListener.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftDriverJobDiscovery normal arm64 Compiling ESNativeClient.swift, ESNativeTypeDescriptions.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftDriverJobDiscovery normal arm64 Compiling ESServiceSubscriptionStore.swift, ESSubscription.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:6ec46a70af9fedf38ac89a65f2dcbfd2a5ba1f2e, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:6ec46a70af9fedf38ac89a65f2dcbfd2a5ba1f2e, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:6ec46a70af9fedf38ac89a65f2dcbfd2a5ba1f2e, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:6ec46a70af9fedf38ac89a65f2dcbfd2a5ba1f2e, name:My Mac }
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64 Compiling\ ESMuteProcess.swift,\ ESConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESClient/ESMuteProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/sEndpointSecurity/ESMessage/ESConverter.swift (in target 'sEndpointSecurity' from project 'sEndpointSecurity')
Building workspace spi-builder-workspace with scheme sEndpointSecurity
(3 failures)
BUILD FAILURE 6.1 macosXcodebuild