Build Information
Successful build of DLog, reference master (42db6f
), with Swift 6.1 for tvOS using Xcode 16.3 on 28 Apr 2025 07:33:30 UTC.
Swift 6 data race errors: 73
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme DLog-Package -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
public static let time = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:53:21: note: add '@MainActor' to make static property 'time' part of global actor 'MainActor'
public static let time = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:53:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let time = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:56:21: warning: static property 'level' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let level = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:56:21: note: add '@MainActor' to make static property 'level' part of global actor 'MainActor'
public static let level = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:56:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let level = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:59:21: warning: static property 'category' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let category = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:59:21: note: add '@MainActor' to make static property 'category' part of global actor 'MainActor'
public static let category = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:59:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let category = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:62:21: warning: static property 'padding' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let padding = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:62:21: note: add '@MainActor' to make static property 'padding' part of global actor 'MainActor'
public static let padding = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:62:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let padding = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:65:21: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Self(5)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:65:21: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Self(5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:65:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Self(5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:68:21: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let location = Self(6)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:68:21: note: add '@MainActor' to make static property 'location' part of global actor 'MainActor'
public static let location = Self(6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:68:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let location = Self(6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:71:21: warning: static property 'metadata' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let metadata = Self(7)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:71:21: note: add '@MainActor' to make static property 'metadata' part of global actor 'MainActor'
public static let metadata = Self(7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:71:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let metadata = Self(7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:74:21: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let compact: Self = [.sign, .time]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:74:21: note: add '@MainActor' to make static property 'compact' part of global actor 'MainActor'
public static let compact: Self = [.sign, .time]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:74:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let compact: Self = [.sign, .time]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:77:21: warning: static property 'regular' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let regular: Self = [.sign, .time, .category, .padding, .type, .location, .metadata]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:77:21: note: add '@MainActor' to make static property 'regular' part of global actor 'MainActor'
public static let regular: Self = [.sign, .time, .category, .padding, .type, .location, .metadata]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:77:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let regular: Self = [.sign, .time, .category, .padding, .type, .location, .metadata]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:34:17: warning: let 'byteCountFormatter' is not concurrency-safe because non-'Sendable' type 'ByteCountFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let byteCountFormatter = ByteCountFormatter()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h:39:12: note: class 'ByteCountFormatter' does not conform to the 'Sendable' protocol
@interface NSByteCountFormatter : NSFormatter
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:34:17: note: add '@MainActor' to make let 'byteCountFormatter' part of global actor 'MainActor'
fileprivate let byteCountFormatter = ByteCountFormatter()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:34:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let byteCountFormatter = ByteCountFormatter()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:139:21: warning: static property 'octal' is not concurrency-safe because non-'Sendable' type 'LogIntFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let octal = Self.octal()
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:128:13: note: consider making enum 'LogIntFormatting' conform to the 'Sendable' protocol
public enum LogIntFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:139:21: note: add '@MainActor' to make static property 'octal' part of global actor 'MainActor'
public static let octal = Self.octal()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:139:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let octal = Self.octal()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:151:21: warning: static property 'hex' is not concurrency-safe because non-'Sendable' type 'LogIntFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hex = Self.hex()
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:128:13: note: consider making enum 'LogIntFormatting' conform to the 'Sendable' protocol
public enum LogIntFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:151:21: note: add '@MainActor' to make static property 'hex' part of global actor 'MainActor'
public static let hex = Self.hex()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:151:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hex = Self.hex()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:161:21: warning: static property 'byteCount' is not concurrency-safe because non-'Sendable' type 'LogIntFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let byteCount = Self.byteCount(allowedUnits: .useAll)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:128:13: note: consider making enum 'LogIntFormatting' conform to the 'Sendable' protocol
public enum LogIntFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:161:21: note: add '@MainActor' to make static property 'byteCount' part of global actor 'MainActor'
public static let byteCount = Self.byteCount(allowedUnits: .useAll)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:161:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let byteCount = Self.byteCount(allowedUnits: .useAll)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:171:21: warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'LogIntFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let number = Self.number(style: .decimal)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:128:13: note: consider making enum 'LogIntFormatting' conform to the 'Sendable' protocol
public enum LogIntFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:171:21: note: add '@MainActor' to make static property 'number' part of global actor 'MainActor'
public static let number = Self.number(style: .decimal)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:171:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let number = Self.number(style: .decimal)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:188:21: warning: static property 'time' is not concurrency-safe because non-'Sendable' type 'LogIntFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let time = Self.time(unitsStyle: .abbreviated)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:128:13: note: consider making enum 'LogIntFormatting' conform to the 'Sendable' protocol
public enum LogIntFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:188:21: note: add '@MainActor' to make static property 'time' part of global actor 'MainActor'
public static let time = Self.time(unitsStyle: .abbreviated)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:188:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let time = Self.time(unitsStyle: .abbreviated)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:199:21: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'LogIntFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let date = Self.date(dateStyle: .short, timeStyle: .short)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:128:13: note: consider making enum 'LogIntFormatting' conform to the 'Sendable' protocol
public enum LogIntFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:199:21: note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
public static let date = Self.date(dateStyle: .short, timeStyle: .short)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:199:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let date = Self.date(dateStyle: .short, timeStyle: .short)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:262:21: warning: static property 'fixed' is not concurrency-safe because non-'Sendable' type 'LogFloatFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fixed = Self.fixed()
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:254:13: note: consider making enum 'LogFloatFormatting' conform to the 'Sendable' protocol
public enum LogFloatFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:262:21: note: add '@MainActor' to make static property 'fixed' part of global actor 'MainActor'
public static let fixed = Self.fixed()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:262:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fixed = Self.fixed()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:273:21: warning: static property 'hex' is not concurrency-safe because non-'Sendable' type 'LogFloatFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hex = Self.hex()
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:254:13: note: consider making enum 'LogFloatFormatting' conform to the 'Sendable' protocol
public enum LogFloatFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:273:21: note: add '@MainActor' to make static property 'hex' part of global actor 'MainActor'
public static let hex = Self.hex()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:273:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hex = Self.hex()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:282:21: warning: static property 'exponential' is not concurrency-safe because non-'Sendable' type 'LogFloatFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let exponential = Self.exponential()
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:254:13: note: consider making enum 'LogFloatFormatting' conform to the 'Sendable' protocol
public enum LogFloatFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:282:21: note: add '@MainActor' to make static property 'exponential' part of global actor 'MainActor'
public static let exponential = Self.exponential()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:282:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let exponential = Self.exponential()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:292:21: warning: static property 'hybrid' is not concurrency-safe because non-'Sendable' type 'LogFloatFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hybrid = Self.hybrid()
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:254:13: note: consider making enum 'LogFloatFormatting' conform to the 'Sendable' protocol
public enum LogFloatFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:292:21: note: add '@MainActor' to make static property 'hybrid' part of global actor 'MainActor'
public static let hybrid = Self.hybrid()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:292:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hybrid = Self.hybrid()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:308:21: warning: static property 'time' is not concurrency-safe because non-'Sendable' type 'LogFloatFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let time = Self.time(unitsStyle: .abbreviated)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:254:13: note: consider making enum 'LogFloatFormatting' conform to the 'Sendable' protocol
public enum LogFloatFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:308:21: note: add '@MainActor' to make static property 'time' part of global actor 'MainActor'
public static let time = Self.time(unitsStyle: .abbreviated)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:308:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let time = Self.time(unitsStyle: .abbreviated)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:319:21: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'LogFloatFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let date = Self.date(dateStyle: .short, timeStyle: .short)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:254:13: note: consider making enum 'LogFloatFormatting' conform to the 'Sendable' protocol
public enum LogFloatFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:319:21: note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
public static let date = Self.date(dateStyle: .short, timeStyle: .short)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:319:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let date = Self.date(dateStyle: .short, timeStyle: .short)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:322:21: warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'LogFloatFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
public static let number = Self.number(style: .decimal)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:254:13: note: consider making enum 'LogFloatFormatting' conform to the 'Sendable' protocol
public enum LogFloatFormatting {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:322:21: note: add '@MainActor' to make static property 'number' part of global actor 'MainActor'
public static let number = Self.number(style: .decimal)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:322:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let number = Self.number(style: .decimal)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:40:21: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'IntervalOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let average = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:30:15: note: consider making struct 'IntervalOptions' conform to the 'Sendable' protocol
public struct IntervalOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:40:21: note: add '@MainActor' to make static property 'average' part of global actor 'MainActor'
public static let average = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:40:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let average = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:43:21: warning: static property 'count' is not concurrency-safe because non-'Sendable' type 'IntervalOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let count = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:30:15: note: consider making struct 'IntervalOptions' conform to the 'Sendable' protocol
public struct IntervalOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:43:21: note: add '@MainActor' to make static property 'count' part of global actor 'MainActor'
public static let count = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:43:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let count = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:46:21: warning: static property 'duration' is not concurrency-safe because non-'Sendable' type 'IntervalOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let duration = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:30:15: note: consider making struct 'IntervalOptions' conform to the 'Sendable' protocol
public struct IntervalOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:46:21: note: add '@MainActor' to make static property 'duration' part of global actor 'MainActor'
public static let duration = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:46:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let duration = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:49:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'IntervalOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let max = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:30:15: note: consider making struct 'IntervalOptions' conform to the 'Sendable' protocol
public struct IntervalOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:49:21: note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
public static let max = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:49:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let max = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:52:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'IntervalOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let min = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:30:15: note: consider making struct 'IntervalOptions' conform to the 'Sendable' protocol
public struct IntervalOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:52:21: note: add '@MainActor' to make static property 'min' part of global actor 'MainActor'
public static let min = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:52:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let min = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:55:21: warning: static property 'total' is not concurrency-safe because non-'Sendable' type 'IntervalOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let total = Self(5)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:30:15: note: consider making struct 'IntervalOptions' conform to the 'Sendable' protocol
public struct IntervalOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:55:21: note: add '@MainActor' to make static property 'total' part of global actor 'MainActor'
public static let total = Self(5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:55:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let total = Self(5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:58:21: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'IntervalOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let compact: Self = [.duration, .average]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:30:15: note: consider making struct 'IntervalOptions' conform to the 'Sendable' protocol
public struct IntervalOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:58:21: note: add '@MainActor' to make static property 'compact' part of global actor 'MainActor'
public static let compact: Self = [.duration, .average]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:58:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let compact: Self = [.duration, .average]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:61:21: warning: static property 'regular' is not concurrency-safe because non-'Sendable' type 'IntervalOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let regular: Self = [.duration, .average, .count, .total]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:30:15: note: consider making struct 'IntervalOptions' conform to the 'Sendable' protocol
public struct IntervalOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:61:21: note: add '@MainActor' to make static property 'regular' part of global actor 'MainActor'
public static let regular: Self = [.duration, .average, .count, .total]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:61:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let regular: Self = [.duration, .average, .count, .total]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:93:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'StatisticsStore' may have shared mutable state; this is an error in the Swift 6 language mode
static let shared = StatisticsStore()
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:92:19: note: class 'StatisticsStore' does not conform to the 'Sendable' protocol
fileprivate class StatisticsStore {
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:93:14: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
static let shared = StatisticsStore()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift:93:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let shared = StatisticsStore()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift:30:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ScopeStack' may have shared mutable state; this is an error in the Swift 6 language mode
static let shared = ScopeStack()
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift:29:7: note: class 'ScopeStack' does not conform to the 'Sendable' protocol
class ScopeStack {
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift:30:14: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
static let shared = ScopeStack()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift:30:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let shared = ScopeStack()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift:39:22: warning: static property 'types' is not concurrency-safe because non-'Sendable' type '[LogType : OSLogType]' may have shared mutable state; this is an error in the Swift 6 language mode
private static let types: [LogType : OSLogType] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift:67:13: note: consider making enum 'LogType' conform to the 'Sendable' protocol
public enum LogType : Int {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift:39:22: note: add '@MainActor' to make static property 'types' part of global actor 'MainActor'
private static let types: [LogType : OSLogType] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift:39:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let types: [LogType : OSLogType] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:81:14: warning: static property 'icons' is not concurrency-safe because non-'Sendable' type '[LogType : String]' may have shared mutable state; this is an error in the Swift 6 language mode
static let icons: [LogType : String] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift:67:13: note: consider making enum 'LogType' conform to the 'Sendable' protocol
public enum LogType : Int {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:81:14: note: add '@MainActor' to make static property 'icons' part of global actor 'MainActor'
static let icons: [LogType : String] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:81:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let icons: [LogType : String] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:97:14: warning: static property 'titles' is not concurrency-safe because non-'Sendable' type '[LogType : String]' may have shared mutable state; this is an error in the Swift 6 language mode
static let titles: [LogType : String] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift:67:13: note: consider making enum 'LogType' conform to the 'Sendable' protocol
public enum LogType : Int {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:97:14: note: add '@MainActor' to make static property 'titles' part of global actor 'MainActor'
static let titles: [LogType : String] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:97:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let titles: [LogType : String] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:125:22: warning: static property 'tags' is not concurrency-safe because non-'Sendable' type '[LogType : Text.Tag]' may have shared mutable state; this is an error in the Swift 6 language mode
private static let tags: [LogType : Tag] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift:67:13: note: consider making enum 'LogType' conform to the 'Sendable' protocol
public enum LogType : Int {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:125:22: note: add '@MainActor' to make static property 'tags' part of global actor 'MainActor'
private static let tags: [LogType : Tag] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:125:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let tags: [LogType : Tag] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:39:21: warning: static property 'function' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let function = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:39:21: note: add '@MainActor' to make static property 'function' part of global actor 'MainActor'
public static let function = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:39:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let function = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:42:21: warning: static property 'process' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let process = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:42:21: note: add '@MainActor' to make static property 'process' part of global actor 'MainActor'
public static let process = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:42:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let process = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:45:21: warning: static property 'queue' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let queue = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:45:21: note: add '@MainActor' to make static property 'queue' part of global actor 'MainActor'
public static let queue = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:45:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let queue = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:48:21: warning: static property 'stack' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let stack = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:48:21: note: add '@MainActor' to make static property 'stack' part of global actor 'MainActor'
public static let stack = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:48:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let stack = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:51:21: warning: static property 'thread' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let thread = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:51:21: note: add '@MainActor' to make static property 'thread' part of global actor 'MainActor'
public static let thread = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:51:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let thread = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:54:21: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let compact: Self = [.thread, .function]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:54:21: note: add '@MainActor' to make static property 'compact' part of global actor 'MainActor'
public static let compact: Self = [.thread, .function]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:54:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let compact: Self = [.thread, .function]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:57:21: warning: static property 'regular' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let regular: Self = [.thread, .queue, .function]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:57:21: note: add '@MainActor' to make static property 'regular' part of global actor 'MainActor'
public static let regular: Self = [.thread, .queue, .function]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:57:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let regular: Self = [.thread, .queue, .function]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:40:21: warning: static property 'cpu' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let cpu = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:40:21: note: add '@MainActor' to make static property 'cpu' part of global actor 'MainActor'
public static let cpu = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:40:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let cpu = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:43:21: warning: static property 'guid' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let guid = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:43:21: note: add '@MainActor' to make static property 'guid' part of global actor 'MainActor'
public static let guid = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:43:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let guid = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:46:21: warning: static property 'memory' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let memory = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:46:21: note: add '@MainActor' to make static property 'memory' part of global actor 'MainActor'
public static let memory = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:46:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let memory = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:49:21: warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let name = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:49:21: note: add '@MainActor' to make static property 'name' part of global actor 'MainActor'
public static let name = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:49:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let name = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:52:21: warning: static property 'pid' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pid = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:52:21: note: add '@MainActor' to make static property 'pid' part of global actor 'MainActor'
public static let pid = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:52:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pid = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:55:21: warning: static property 'threads' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let threads = Self(5)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:55:21: note: add '@MainActor' to make static property 'threads' part of global actor 'MainActor'
public static let threads = Self(5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:55:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let threads = Self(5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:58:21: warning: static property 'wakeups' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let wakeups = Self(6)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:58:21: note: add '@MainActor' to make static property 'wakeups' part of global actor 'MainActor'
public static let wakeups = Self(6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:58:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let wakeups = Self(6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:61:21: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let compact: Self = [.cpu, .memory, .pid, .threads]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:61:21: note: add '@MainActor' to make static property 'compact' part of global actor 'MainActor'
public static let compact: Self = [.cpu, .memory, .pid, .threads]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:61:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let compact: Self = [.cpu, .memory, .pid, .threads]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:75:21: warning: static property 'interrupt' is not concurrency-safe because non-'Sendable' type 'WakeupsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let interrupt = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:65:15: note: consider making struct 'WakeupsOptions' conform to the 'Sendable' protocol
public struct WakeupsOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:75:21: note: add '@MainActor' to make static property 'interrupt' part of global actor 'MainActor'
public static let interrupt = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:75:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let interrupt = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:78:21: warning: static property 'idle' is not concurrency-safe because non-'Sendable' type 'WakeupsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let idle = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:65:15: note: consider making struct 'WakeupsOptions' conform to the 'Sendable' protocol
public struct WakeupsOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:78:21: note: add '@MainActor' to make static property 'idle' part of global actor 'MainActor'
public static let idle = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:78:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let idle = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:81:21: warning: static property 'timer' is not concurrency-safe because non-'Sendable' type 'WakeupsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let timer = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:65:15: note: consider making struct 'WakeupsOptions' conform to the 'Sendable' protocol
public struct WakeupsOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:81:21: note: add '@MainActor' to make static property 'timer' part of global actor 'MainActor'
public static let timer = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:81:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let timer = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:39:21: warning: static property 'address' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let address = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:39:21: note: add '@MainActor' to make static property 'address' part of global actor 'MainActor'
public static let address = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:39:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let address = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:42:21: warning: static property 'frame' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let frame = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:42:21: note: add '@MainActor' to make static property 'frame' part of global actor 'MainActor'
public static let frame = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:42:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let frame = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:45:21: warning: static property 'module' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let module = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:45:21: note: add '@MainActor' to make static property 'module' part of global actor 'MainActor'
public static let module = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:45:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let module = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:48:21: warning: static property 'offset' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let offset = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:48:21: note: add '@MainActor' to make static property 'offset' part of global actor 'MainActor'
public static let offset = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:48:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let offset = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:51:21: warning: static property 'symbol' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let symbol = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:51:21: note: add '@MainActor' to make static property 'symbol' part of global actor 'MainActor'
public static let symbol = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:51:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let symbol = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:74:21: warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let name = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:74:21: note: add '@MainActor' to make static property 'name' part of global actor 'MainActor'
public static let name = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:74:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let name = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:77:21: warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let number = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:77:21: note: add '@MainActor' to make static property 'number' part of global actor 'MainActor'
public static let number = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:77:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let number = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:80:21: warning: static property 'priority' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let priority = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:80:21: note: add '@MainActor' to make static property 'priority' part of global actor 'MainActor'
public static let priority = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:80:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let priority = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:83:21: warning: static property 'qos' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let qos = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:83:21: note: add '@MainActor' to make static property 'qos' part of global actor 'MainActor'
public static let qos = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:83:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let qos = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:86:21: warning: static property 'stackSize' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let stackSize = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:86:21: note: add '@MainActor' to make static property 'stackSize' part of global actor 'MainActor'
public static let stackSize = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:86:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let stackSize = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:89:21: warning: static property 'tid' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let tid = Self(5)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:89:21: note: add '@MainActor' to make static property 'tid' part of global actor 'MainActor'
public static let tid = Self(5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:89:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tid = Self(5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:92:21: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let compact: Self = [.number, .name]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:92:21: note: add '@MainActor' to make static property 'compact' part of global actor 'MainActor'
public static let compact: Self = [.number, .name]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:92:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let compact: Self = [.number, .name]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:95:21: warning: static property 'regular' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let regular: Self = [.number, .name, .qos]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:95:21: note: add '@MainActor' to make static property 'regular' part of global actor 'MainActor'
public static let regular: Self = [.number, .name, .qos]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:95:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let regular: Self = [.number, .name, .qos]
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ TraceFunc.swift,\ TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift (in target 'DLog' from project 'DLog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:40:21: warning: static property 'cpu' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let cpu = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:40:21: note: add '@MainActor' to make static property 'cpu' part of global actor 'MainActor'
public static let cpu = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:40:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let cpu = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:43:21: warning: static property 'guid' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let guid = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:43:21: note: add '@MainActor' to make static property 'guid' part of global actor 'MainActor'
public static let guid = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:43:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let guid = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:46:21: warning: static property 'memory' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let memory = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:46:21: note: add '@MainActor' to make static property 'memory' part of global actor 'MainActor'
public static let memory = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:46:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let memory = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:49:21: warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let name = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:49:21: note: add '@MainActor' to make static property 'name' part of global actor 'MainActor'
public static let name = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:49:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let name = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:52:21: warning: static property 'pid' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pid = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:52:21: note: add '@MainActor' to make static property 'pid' part of global actor 'MainActor'
public static let pid = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:52:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pid = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:55:21: warning: static property 'threads' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let threads = Self(5)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:55:21: note: add '@MainActor' to make static property 'threads' part of global actor 'MainActor'
public static let threads = Self(5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:55:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let threads = Self(5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:58:21: warning: static property 'wakeups' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let wakeups = Self(6)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:58:21: note: add '@MainActor' to make static property 'wakeups' part of global actor 'MainActor'
public static let wakeups = Self(6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:58:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let wakeups = Self(6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:61:21: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'ProcessOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let compact: Self = [.cpu, .memory, .pid, .threads]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:29:15: note: consider making struct 'ProcessOptions' conform to the 'Sendable' protocol
public struct ProcessOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:61:21: note: add '@MainActor' to make static property 'compact' part of global actor 'MainActor'
public static let compact: Self = [.cpu, .memory, .pid, .threads]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:61:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let compact: Self = [.cpu, .memory, .pid, .threads]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:75:21: warning: static property 'interrupt' is not concurrency-safe because non-'Sendable' type 'WakeupsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let interrupt = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:65:15: note: consider making struct 'WakeupsOptions' conform to the 'Sendable' protocol
public struct WakeupsOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:75:21: note: add '@MainActor' to make static property 'interrupt' part of global actor 'MainActor'
public static let interrupt = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:75:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let interrupt = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:78:21: warning: static property 'idle' is not concurrency-safe because non-'Sendable' type 'WakeupsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let idle = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:65:15: note: consider making struct 'WakeupsOptions' conform to the 'Sendable' protocol
public struct WakeupsOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:78:21: note: add '@MainActor' to make static property 'idle' part of global actor 'MainActor'
public static let idle = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:78:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let idle = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:81:21: warning: static property 'timer' is not concurrency-safe because non-'Sendable' type 'WakeupsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let timer = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:65:15: note: consider making struct 'WakeupsOptions' conform to the 'Sendable' protocol
public struct WakeupsOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:81:21: note: add '@MainActor' to make static property 'timer' part of global actor 'MainActor'
public static let timer = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift:81:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let timer = Self(2)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for NetConsole (in target 'NetConsole' from project 'DLog')
SwiftDriver\ Compilation\ Requirements NetConsole normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NetConsole' from project 'DLog')
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 NetConsole -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole-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/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for DLog (in target 'DLog' from project 'DLog')
SwiftCompile normal arm64 Compiling\ TraceStack.swift,\ TraceThread.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift (in target 'DLog' from project 'DLog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:39:21: warning: static property 'address' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let address = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:39:21: note: add '@MainActor' to make static property 'address' part of global actor 'MainActor'
public static let address = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:39:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let address = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:42:21: warning: static property 'frame' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let frame = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:42:21: note: add '@MainActor' to make static property 'frame' part of global actor 'MainActor'
public static let frame = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:42:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let frame = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:45:21: warning: static property 'module' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let module = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:45:21: note: add '@MainActor' to make static property 'module' part of global actor 'MainActor'
public static let module = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:45:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let module = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:48:21: warning: static property 'offset' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let offset = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:48:21: note: add '@MainActor' to make static property 'offset' part of global actor 'MainActor'
public static let offset = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:48:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let offset = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:51:21: warning: static property 'symbol' is not concurrency-safe because non-'Sendable' type 'StackOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let symbol = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:29:15: note: consider making struct 'StackOptions' conform to the 'Sendable' protocol
public struct StackOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:51:21: note: add '@MainActor' to make static property 'symbol' part of global actor 'MainActor'
public static let symbol = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift:51:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let symbol = Self(4)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:74:21: warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let name = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:74:21: note: add '@MainActor' to make static property 'name' part of global actor 'MainActor'
public static let name = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:74:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let name = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:77:21: warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let number = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:77:21: note: add '@MainActor' to make static property 'number' part of global actor 'MainActor'
public static let number = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:77:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let number = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:80:21: warning: static property 'priority' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let priority = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:80:21: note: add '@MainActor' to make static property 'priority' part of global actor 'MainActor'
public static let priority = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:80:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let priority = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:83:21: warning: static property 'qos' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let qos = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:83:21: note: add '@MainActor' to make static property 'qos' part of global actor 'MainActor'
public static let qos = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:83:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let qos = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:86:21: warning: static property 'stackSize' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let stackSize = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:86:21: note: add '@MainActor' to make static property 'stackSize' part of global actor 'MainActor'
public static let stackSize = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:86:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let stackSize = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:89:21: warning: static property 'tid' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let tid = Self(5)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:89:21: note: add '@MainActor' to make static property 'tid' part of global actor 'MainActor'
public static let tid = Self(5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:89:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tid = Self(5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:92:21: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let compact: Self = [.number, .name]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:92:21: note: add '@MainActor' to make static property 'compact' part of global actor 'MainActor'
public static let compact: Self = [.number, .name]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:92:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let compact: Self = [.number, .name]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:95:21: warning: static property 'regular' is not concurrency-safe because non-'Sendable' type 'ThreadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let regular: Self = [.number, .name, .qos]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:64:15: note: consider making struct 'ThreadOptions' conform to the 'Sendable' protocol
public struct ThreadOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:95:21: note: add '@MainActor' to make static property 'regular' part of global actor 'MainActor'
public static let regular: Self = [.number, .name, .qos]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift:95:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let regular: Self = [.number, .name, .qos]
^
nonisolated(unsafe)
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftmodule (in target 'NetConsole' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole.swiftmodule/arm64-apple-tvos.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling TraceStack.swift, TraceThread.swift (in target 'DLog' from project 'DLog')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftdoc (in target 'NetConsole' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.abi.json (in target 'NetConsole' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftsourceinfo (in target 'NetConsole' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriver\ Compilation\ Requirements DLog normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DLog' from project 'DLog')
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 DLog -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog-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/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.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/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ Text.swift,\ Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift (in target 'DLog' from project 'DLog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:81:14: warning: static property 'icons' is not concurrency-safe because non-'Sendable' type '[LogType : String]' may have shared mutable state; this is an error in the Swift 6 language mode
static let icons: [LogType : String] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift:67:13: note: consider making enum 'LogType' conform to the 'Sendable' protocol
public enum LogType : Int {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:81:14: note: add '@MainActor' to make static property 'icons' part of global actor 'MainActor'
static let icons: [LogType : String] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:81:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let icons: [LogType : String] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:97:14: warning: static property 'titles' is not concurrency-safe because non-'Sendable' type '[LogType : String]' may have shared mutable state; this is an error in the Swift 6 language mode
static let titles: [LogType : String] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift:67:13: note: consider making enum 'LogType' conform to the 'Sendable' protocol
public enum LogType : Int {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:97:14: note: add '@MainActor' to make static property 'titles' part of global actor 'MainActor'
static let titles: [LogType : String] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:97:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let titles: [LogType : String] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:125:22: warning: static property 'tags' is not concurrency-safe because non-'Sendable' type '[LogType : Text.Tag]' may have shared mutable state; this is an error in the Swift 6 language mode
private static let tags: [LogType : Tag] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift:67:13: note: consider making enum 'LogType' conform to the 'Sendable' protocol
public enum LogType : Int {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:125:22: note: add '@MainActor' to make static property 'tags' part of global actor 'MainActor'
private static let tags: [LogType : Tag] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift:125:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let tags: [LogType : Tag] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:39:21: warning: static property 'function' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let function = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:39:21: note: add '@MainActor' to make static property 'function' part of global actor 'MainActor'
public static let function = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:39:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let function = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:42:21: warning: static property 'process' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let process = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:42:21: note: add '@MainActor' to make static property 'process' part of global actor 'MainActor'
public static let process = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:42:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let process = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:45:21: warning: static property 'queue' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let queue = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:45:21: note: add '@MainActor' to make static property 'queue' part of global actor 'MainActor'
public static let queue = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:45:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let queue = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:48:21: warning: static property 'stack' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let stack = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:48:21: note: add '@MainActor' to make static property 'stack' part of global actor 'MainActor'
public static let stack = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:48:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let stack = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:51:21: warning: static property 'thread' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let thread = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:51:21: note: add '@MainActor' to make static property 'thread' part of global actor 'MainActor'
public static let thread = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:51:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let thread = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:54:21: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let compact: Self = [.thread, .function]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:54:21: note: add '@MainActor' to make static property 'compact' part of global actor 'MainActor'
public static let compact: Self = [.thread, .function]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:54:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let compact: Self = [.thread, .function]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:57:21: warning: static property 'regular' is not concurrency-safe because non-'Sendable' type 'TraceOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let regular: Self = [.thread, .queue, .function]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:29:15: note: consider making struct 'TraceOptions' conform to the 'Sendable' protocol
public struct TraceOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:57:21: note: add '@MainActor' to make static property 'regular' part of global actor 'MainActor'
public static let regular: Self = [.thread, .queue, .function]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift:57:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let regular: Self = [.thread, .queue, .function]
^
nonisolated(unsafe)
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/DLog-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog-Swift.h (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/DLog-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling Arguments.swift (in target 'NetConsole' from project 'DLog')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.swiftmodule (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.swiftdoc (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.abi.json (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.swiftsourceinfo (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ File.swift,\ Filter.swift,\ LogConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/File.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Filter.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift (in target 'DLog' from project 'DLog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/File.swift (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DLog/File.swift:74:11: warning: capture of 'self' with non-sendable type 'File' in a '@Sendable' closure
self.file?.write(data)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/File.swift:31:14: note: class 'File' does not conform to the 'Sendable' protocol
public class File : LogOutput {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/Filter.swift (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:50:21: warning: static property 'sign' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sign = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:50:21: note: add '@MainActor' to make static property 'sign' part of global actor 'MainActor'
public static let sign = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:50:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sign = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:53:21: warning: static property 'time' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let time = Self(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:53:21: note: add '@MainActor' to make static property 'time' part of global actor 'MainActor'
public static let time = Self(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:53:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let time = Self(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:56:21: warning: static property 'level' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let level = Self(2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:56:21: note: add '@MainActor' to make static property 'level' part of global actor 'MainActor'
public static let level = Self(2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:56:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let level = Self(2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:59:21: warning: static property 'category' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let category = Self(3)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:59:21: note: add '@MainActor' to make static property 'category' part of global actor 'MainActor'
public static let category = Self(3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:59:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let category = Self(3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:62:21: warning: static property 'padding' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let padding = Self(4)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:62:21: note: add '@MainActor' to make static property 'padding' part of global actor 'MainActor'
public static let padding = Self(4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:62:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let padding = Self(4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:65:21: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Self(5)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:65:21: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Self(5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:65:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Self(5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:68:21: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let location = Self(6)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:68:21: note: add '@MainActor' to make static property 'location' part of global actor 'MainActor'
public static let location = Self(6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:68:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let location = Self(6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:71:21: warning: static property 'metadata' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let metadata = Self(7)
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:71:21: note: add '@MainActor' to make static property 'metadata' part of global actor 'MainActor'
public static let metadata = Self(7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:71:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let metadata = Self(7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:74:21: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let compact: Self = [.sign, .time]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:74:21: note: add '@MainActor' to make static property 'compact' part of global actor 'MainActor'
public static let compact: Self = [.sign, .time]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:74:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let compact: Self = [.sign, .time]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:77:21: warning: static property 'regular' is not concurrency-safe because non-'Sendable' type 'LogOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let regular: Self = [.sign, .time, .category, .padding, .type, .location, .metadata]
^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:40:15: note: consider making struct 'LogOptions' conform to the 'Sendable' protocol
public struct LogOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:77:21: note: add '@MainActor' to make static property 'regular' part of global actor 'MainActor'
public static let regular: Self = [.sign, .time, .category, .padding, .type, .location, .metadata]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogConfig.swift:77:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let regular: Self = [.sign, .time, .category, .padding, .type, .location, .metadata]
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling TraceFunc.swift, TraceProcess.swift (in target 'DLog' from project 'DLog')
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.o /Users/admin/builder/spi-builder-workspace/Sources/DLogObjC/DLog.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'DLogObjC' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp
builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.dia -c /Users/admin/builder/spi-builder-workspace/Sources/DLogObjC/DLog.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.o -index-unit-output-path /DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.o
SwiftDriverJobDiscovery normal arm64 Compiling main.swift (in target 'NetConsole' from project 'DLog')
SwiftDriver\ Compilation NetConsole normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NetConsole' from project 'DLog')
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 NetConsole -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole-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/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole normal (in target 'NetConsole' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole
SwiftDriverJobDiscovery normal arm64 Compiling LogMessage.swift, LogMetadata.swift, LogOutput.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling LogPrivacy.swift, LogProtocol.swift, LogScope.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling Mach.swift, Net.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling LogFormat.swift, LogInterval.swift, LogItem.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling OSLog.swift, Standard.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling Atomic.swift, DLog.swift, Dynamic.swift (in target 'DLog' from project 'DLog')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole (in target 'NetConsole' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/NetConsole
SwiftDriverJobDiscovery normal arm64 Compiling File.swift, Filter.swift, LogConfig.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling Text.swift, Trace.swift (in target 'DLog' from project 'DLog')
SwiftDriver\ Compilation DLog normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DLog' from project 'DLog')
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 DLog -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog-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/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.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/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.o normal (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.o
ExtractAppIntentsMetadata (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
/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 DLog --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DLog --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/DLog.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/DLog.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLog.build/Objects-normal/arm64/DLog.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-28 00:33:29.020 appintentsmetadataprocessor[729:4102] Starting appintentsmetadataprocessor export
2025-04-28 00:33:29.058 appintentsmetadataprocessor[729:4102] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.o (in target 'DLog' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLog.o
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-CXI37ZNUQN0HC0LN5QHOIPEQ0.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-CXI37ZNUQN0HC0LN5QHOIPEQ0.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-B0OXBQWD0G271R4K69BZ90G9E.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-B0OXBQWD0G271R4K69BZ90G9E.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-380YEVSJ3NHYD1VGIV98STQFK.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-380YEVSJ3NHYD1VGIV98STQFK.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-E90723FCGW82UWTIRD7DD5AL6.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-E90723FCGW82UWTIRD7DD5AL6.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-D9H28DAD3GBO9CKKGUM6HMPOC.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-D9H28DAD3GBO9CKKGUM6HMPOC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-CYWKQDR5PYU012JJVNUTM8NVW.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-CYWKQDR5PYU012JJVNUTM8NVW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-1ESYNIYVA7YF0XLR948IP2HJT.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-1ESYNIYVA7YF0XLR948IP2HJT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-EMLO4VJ78H1ONYY2XRG69TZDS.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-EMLO4VJ78H1ONYY2XRG69TZDS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-EASGK7AWYNN1RU945WX900AT2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-EASGK7AWYNN1RU945WX900AT2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-E3EPR2VOO8AA2YR3U5KZ443B8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-E3EPR2VOO8AA2YR3U5KZ443B8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-715Y7PDRY3Z262I251FKPMLBV.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-715Y7PDRY3Z262I251FKPMLBV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-94Z89PDJGG4GQUKZRYPRPBAMZ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-94Z89PDJGG4GQUKZRYPRPBAMZ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-9K72GAU4JFA8OW33S2B74P0WZ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-9K72GAU4JFA8OW33S2B74P0WZ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-6NNI2J700G1B66E0KGC5VZBNN.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-6NNI2J700G1B66E0KGC5VZBNN.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-8EPJ3794R5GBMPL35UB6S935Y.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-8EPJ3794R5GBMPL35UB6S935Y.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-6FH4C9061B85Q44KP4T6B9QZH.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-6FH4C9061B85Q44KP4T6B9QZH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-5QWMIITVE6DRY7HFKAHYZKUDZ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-5QWMIITVE6DRY7HFKAHYZKUDZ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-X8SKIAGLZ9ZL06CTYIFTXW5G.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-X8SKIAGLZ9ZL06CTYIFTXW5G.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-4YE2GH998J416PYCKP0MFENQ8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-4YE2GH998J416PYCKP0MFENQ8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-AQ3TGRWKPKF0VNXR9AFESB6SY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-AQ3TGRWKPKF0VNXR9AFESB6SY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-72F5PL60TM64CWGDM9ECSAA4A.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-72F5PL60TM64CWGDM9ECSAA4A.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-F2T9277OCD28FKXKZYGSSP4T2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-F2T9277OCD28FKXKZYGSSP4T2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-2R1IDKTQ1MQ64F4KULR36WBJ3.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-2R1IDKTQ1MQ64F4KULR36WBJ3.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-B3PWYC44P0VU38E46AQJ7NBF4.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-B3PWYC44P0VU38E46AQJ7NBF4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-CYANPKPQK3LDWW615J0DTNWL0.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-CYANPKPQK3LDWW615J0DTNWL0.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-BZNVMSN91OFLJMRJLR9Q6YV0V.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-BZNVMSN91OFLJMRJLR9Q6YV0V.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-OQTXXRUXBT7YSR7YIMLWWRQC.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-OQTXXRUXBT7YSR7YIMLWWRQC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-AD792U9T4WN6J4UVVWOM6N3OD.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-AD792U9T4WN6J4UVVWOM6N3OD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-83RVSSKON9D6L7QR0AQPSA755.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-83RVSSKON9D6L7QR0AQPSA755.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-3O4WRAVAQUDCNQK6NTOK977VT.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-3O4WRAVAQUDCNQK6NTOK977VT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-CLN0DYGCL7BX4N0RYI6PKWXG0.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-CLN0DYGCL7BX4N0RYI6PKWXG0.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-4ZPEPM91O9IZ8E7GWZXQG14IY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-4ZPEPM91O9IZ8E7GWZXQG14IY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-DEUEPA0AF00EB06T2IY34QCNT.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-DEUEPA0AF00EB06T2IY34QCNT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-EL361CEMUYLBEYNHXRWBDQC20.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-EL361CEMUYLBEYNHXRWBDQC20.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-CX2BLPRHA0K5JM1QRNNH1836R.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-CX2BLPRHA0K5JM1QRNNH1836R.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-88U3LG035C3YKO2W4XJ2YCNLH.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-88U3LG035C3YKO2W4XJ2YCNLH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-56WVMYA29JH3ZDXPITG08ODNV.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-56WVMYA29JH3ZDXPITG08ODNV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-DO2OGL3GUES8J2A89M3V6A15E.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-DO2OGL3GUES8J2A89M3V6A15E.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-BBEG19B77N3WIGUH8A6QI2Y1B.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-BBEG19B77N3WIGUH8A6QI2Y1B.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-K3VDKK1F9AH40X4AR1NAWNKJ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-K3VDKK1F9AH40X4AR1NAWNKJ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-7MFDSQEIZ1AR1CRONJ26M8WYA.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-7MFDSQEIZ1AR1CRONJ26M8WYA.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-83JW8B4AOAQ2KHUKZ1W6OQQ05.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-83JW8B4AOAQ2KHUKZ1W6OQQ05.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-80CXUM1DZO4M7UZL9WK16VKZY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-80CXUM1DZO4M7UZL9WK16VKZY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-C91WG4LVDYLEIUQMUHGLLGXN3.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-C91WG4LVDYLEIUQMUHGLLGXN3.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-ER8Y0TIB00H3PJQ6OP2IRK5PE.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-ER8Y0TIB00H3PJQ6OP2IRK5PE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-BE1PMP938BJY10M1MDTCTS20X.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-BE1PMP938BJY10M1MDTCTS20X.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-9JKWKCGETN7VMVQCJU7YL5CUK.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-9JKWKCGETN7VMVQCJU7YL5CUK.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-8JLKRSDXLRJ5X7D4P43YX5N2B.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-8JLKRSDXLRJ5X7D4P43YX5N2B.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-66BKK2IDL0BPANZBHDGKNMB4H.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-66BKK2IDL0BPANZBHDGKNMB4H.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-AMWYJZTGL0KVPLQOA88T6KPAZ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-AMWYJZTGL0KVPLQOA88T6KPAZ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-YF63HG5I2P3527TG9V4OVTOK.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-YF63HG5I2P3527TG9V4OVTOK.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-8HS03K7RD8SAG74U0DCX58AMO.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-8HS03K7RD8SAG74U0DCX58AMO.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-8WR7LEYYRN4V54YOUI5C0X1VD.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-8WR7LEYYRN4V54YOUI5C0X1VD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-CONAIDFLYBK9V934LM0ZANAH5.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-CONAIDFLYBK9V934LM0ZANAH5.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-JNBFU4TWVO8VPYX67307DBB4.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-JNBFU4TWVO8VPYX67307DBB4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-BHRX6HYE5SXPW5BERBSCUSU52.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-BHRX6HYE5SXPW5BERBSCUSU52.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-1SHJB085UOHNYJOE4WNIV7ZR2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-1SHJB085UOHNYJOE4WNIV7ZR2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-BQH2WC2V0UAAGYWXB0M2HVUK6.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-BQH2WC2V0UAAGYWXB0M2HVUK6.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-4BIOKUHXTAZNGER4Z7AAE4HDA.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-4BIOKUHXTAZNGER4Z7AAE4HDA.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-3SW2T3HGVPMWGCY0L22MWG4TE.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-3SW2T3HGVPMWGCY0L22MWG4TE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-2IZ5KIJGSX24P76BVY6CCC1FM.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-2IZ5KIJGSX24P76BVY6CCC1FM.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-15F4GELUMSYI9CIILHC3RJODF.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-15F4GELUMSYI9CIILHC3RJODF.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-5LFHGBYNRN8SLZZSCRBFBVV5O.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-5LFHGBYNRN8SLZZSCRBFBVV5O.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-8PBWMO8JCLCQLMCYFKBDEHJPW.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-8PBWMO8JCLCQLMCYFKBDEHJPW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-B1627EZ5RTLIGSQPB1B8V7M6G.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-B1627EZ5RTLIGSQPB1B8V7M6G.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DLog-DOGG7LXE4JZ1D4X3ZFSGPFQQP.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DLog-DOGG7LXE4JZ1D4X3ZFSGPFQQP.scan
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.o /Users/admin/builder/spi-builder-workspace/Sources/DLogObjC/DLog.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'DLogObjC' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.dia -c /Users/admin/builder/spi-builder-workspace/Sources/DLogObjC/DLog.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.o -index-unit-output-path /DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLog.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLogObjC.o normal (in target 'DLogObjC' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLogObjC.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLogObjC_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-appletvos/DLogObjC.build/Objects-normal/arm64/DLogObjC_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLogObjC.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLogObjC.o (in target 'DLogObjC' from project 'DLog')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DLogObjC.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "DLog",
"name" : "DLog",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "macos",
"version" : "10.14"
},
{
"name" : "tvos",
"version" : "12.0"
},
{
"name" : "visionos",
"version" : "1.0"
},
{
"name" : "watchos",
"version" : "5.0"
}
],
"products" : [
{
"name" : "DLog",
"targets" : [
"DLog"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "DLogObjC",
"targets" : [
"DLogObjC"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "NetConsole",
"targets" : [
"NetConsole"
],
"type" : {
"executable" : null
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "NetConsole",
"module_type" : "SwiftTarget",
"name" : "NetConsole",
"path" : "Sources/NetConsole",
"product_memberships" : [
"NetConsole"
],
"sources" : [
"Arguments.swift",
"main.swift"
],
"type" : "executable"
},
{
"c99name" : "DLogTestsObjC",
"module_type" : "ClangTarget",
"name" : "DLogTestsObjC",
"path" : "Tests/DLogTestsObjC",
"sources" : [
"DLogTestsObjC.m"
],
"target_dependencies" : [
"DLogObjC"
],
"type" : "test"
},
{
"c99name" : "DLogTests",
"module_type" : "SwiftTarget",
"name" : "DLogTests",
"path" : "Tests/DLogTests",
"sources" : [
"DLogTests.swift"
],
"target_dependencies" : [
"DLog"
],
"type" : "test"
},
{
"c99name" : "DLogObjC",
"module_type" : "ClangTarget",
"name" : "DLogObjC",
"path" : "Sources/DLogObjC",
"product_memberships" : [
"DLogObjC"
],
"sources" : [
"DLog.m"
],
"target_dependencies" : [
"DLog"
],
"type" : "library"
},
{
"c99name" : "DLog",
"module_type" : "SwiftTarget",
"name" : "DLog",
"path" : "Sources/DLog",
"product_memberships" : [
"DLog",
"DLogObjC"
],
"sources" : [
"Atomic.swift",
"DLog.swift",
"Dynamic.swift",
"File.swift",
"Filter.swift",
"LogConfig.swift",
"LogFormat.swift",
"LogInterval.swift",
"LogItem.swift",
"LogMessage.swift",
"LogMetadata.swift",
"LogOutput.swift",
"LogPrivacy.swift",
"LogProtocol.swift",
"LogScope.swift",
"Mach.swift",
"Net.swift",
"OSLog.swift",
"Standard.swift",
"Text.swift",
"Trace.swift",
"TraceFunc.swift",
"TraceProcess.swift",
"TraceStack.swift",
"TraceThread.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.