This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build DLog with Swift 6.0 for iOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme DLog-Package -destination generic/platform=ios OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:39:14: warning: static property 'dso' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer' may have shared mutable state; this is an error in the Swift 6 language mode
  static let dso = UnsafeMutableRawPointer(mutating: #dsohandle)
             ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:39:14: note: annotate 'dso' with '@MainActor' if property should only be accessed from the main actor
  static let dso = UnsafeMutableRawPointer(mutating: #dsohandle)
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:39:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let dso = UnsafeMutableRawPointer(mutating: #dsohandle)
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:40:22: warning: static property 'RTLD_DEFAULT' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer?' may have shared mutable state; this is an error in the Swift 6 language mode
  private static let RTLD_DEFAULT = UnsafeMutableRawPointer(bitPattern: -2)
                     ^
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
@frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:40:22: note: annotate 'RTLD_DEFAULT' with '@MainActor' if property should only be accessed from the main actor
  private static let RTLD_DEFAULT = UnsafeMutableRawPointer(bitPattern: -2)
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:40:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static let RTLD_DEFAULT = UnsafeMutableRawPointer(bitPattern: -2)
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:50:14: warning: static property 'OS_ACTIVITY_CURRENT' is not concurrency-safe because non-'Sendable' type 'os_activity_t?' (aka 'Optional<any OS_os_activity>') may have shared mutable state; this is an error in the Swift 6 language mode
  static let OS_ACTIVITY_CURRENT: os_activity_t? = dynamic(symbol: "_os_activity_current")
             ^
os.OS_os_activity:2:17: note: protocol 'OS_os_activity' does not conform to the 'Sendable' protocol
public protocol OS_os_activity : NSObjectProtocol {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:27:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
import os
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:50:14: note: annotate 'OS_ACTIVITY_CURRENT' with '@MainActor' if property should only be accessed from the main actor
  static let OS_ACTIVITY_CURRENT: os_activity_t? = dynamic(symbol: "_os_activity_current")
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:50:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let OS_ACTIVITY_CURRENT: os_activity_t? = dynamic(symbol: "_os_activity_current")
             ^
  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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
  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: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: annotate 'symbol' with '@MainActor' if property should only be accessed from the main actor
  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)
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
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NetConsole -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios12.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-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/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 -Xfrontend -package-name -Xfrontend 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-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for DLog (in target 'DLog' from project 'DLog')
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
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name DLog -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios12.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-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/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 -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ OSLog.swift,\ Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'types' with '@MainActor' if property should only be accessed from the main actor
  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/Dynamic.swift:39:14: warning: static property 'dso' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer' may have shared mutable state; this is an error in the Swift 6 language mode
  static let dso = UnsafeMutableRawPointer(mutating: #dsohandle)
             ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:39:14: note: annotate 'dso' with '@MainActor' if property should only be accessed from the main actor
  static let dso = UnsafeMutableRawPointer(mutating: #dsohandle)
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:39:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let dso = UnsafeMutableRawPointer(mutating: #dsohandle)
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:50:14: warning: static property 'OS_ACTIVITY_CURRENT' is not concurrency-safe because non-'Sendable' type 'os_activity_t?' (aka 'Optional<any OS_os_activity>') may have shared mutable state; this is an error in the Swift 6 language mode
  static let OS_ACTIVITY_CURRENT: os_activity_t? = dynamic(symbol: "_os_activity_current")
             ^
os.OS_os_activity:2:17: note: protocol 'OS_os_activity' does not conform to the 'Sendable' protocol
public protocol OS_os_activity : NSObjectProtocol {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:27:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
import os
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:50:14: note: annotate 'OS_ACTIVITY_CURRENT' with '@MainActor' if property should only be accessed from the main actor
  static let OS_ACTIVITY_CURRENT: os_activity_t? = dynamic(symbol: "_os_activity_current")
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.swift:50:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let OS_ACTIVITY_CURRENT: os_activity_t? = dynamic(symbol: "_os_activity_current")
             ^
  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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
  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: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: annotate 'symbol' with '@MainActor' if property should only be accessed from the main actor
  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/Standard.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/OSLog.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/Standard.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ LogFormat.swift,\ LogInterval.swift,\ LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogFormat.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogInterval.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogItem.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogFormat.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogInterval.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogItem.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogFormat.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogInterval.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogItem.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogFormat.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogInterval.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogItem.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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()
                ^
Foundation.ByteCountFormatter:2:12: note: class 'ByteCountFormatter' does not conform to the 'Sendable' protocol
open class ByteCountFormatter : Formatter {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift:34:17: note: annotate 'byteCountFormatter' with '@MainActor' if property should only be accessed from the main actor
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: annotate 'octal' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'hex' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'byteCount' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'number' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'time' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'fixed' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'hex' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'exponential' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'hybrid' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'time' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'number' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
  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: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: annotate 'symbol' with '@MainActor' if property should only be accessed from the main actor
  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/LogInterval.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogFormat.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogInterval.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogItem.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogFormat.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogInterval.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogItem.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'average' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'count' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'duration' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'total' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'regular' with '@MainActor' if property should only be accessed from the main actor
  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: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
  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: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: annotate 'symbol' with '@MainActor' if property should only be accessed from the main actor
  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/LogItem.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogFormat.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogInterval.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogItem.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogFormat.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogInterval.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogItem.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
  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: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: annotate 'symbol' with '@MainActor' if property should only be accessed from the main actor
  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)
SwiftDriverJobDiscovery normal arm64 Compiling Mach.swift, Net.swift (in target 'DLog' from project 'DLog')
SwiftCompile normal arm64 Compiling\ LogPrivacy.swift,\ LogProtocol.swift,\ LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/supplementaryOutputs-5 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogPrivacy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogProtocol.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogScope.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogPrivacy.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogProtocol.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogScope.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/supplementaryOutputs-5 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogPrivacy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogProtocol.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogScope.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogPrivacy.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogProtocol.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogScope.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
  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: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: annotate 'symbol' with '@MainActor' if property should only be accessed from the main actor
  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/LogProtocol.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/supplementaryOutputs-5 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogPrivacy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogProtocol.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogScope.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogPrivacy.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogProtocol.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogScope.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift:42:21: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'DLog' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let disabled = DLog(nil)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift:31:14: note: class 'DLog' does not conform to the 'Sendable' protocol
public class DLog: LogProtocol {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift:42:21: note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
  public static let disabled = DLog(nil)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift:42:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let disabled = DLog(nil)
                    ^
  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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
  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: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: annotate 'symbol' with '@MainActor' if property should only be accessed from the main actor
  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/LogScope.swift (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DLog/Atomic.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/DLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Dynamic.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 /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogInterval.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMessage.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogOutput.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogPrivacy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogProtocol.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DLog/LogScope.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Mach.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Net.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/OSLog.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Standard.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/Trace.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceFunc.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DLog/TraceThread.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/supplementaryOutputs-5 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DLog -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogPrivacy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogProtocol.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogScope.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogPrivacy.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogProtocol.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/LogScope.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
  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/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: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
  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: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: annotate 'symbol' with '@MainActor' if property should only be accessed from the main actor
  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)
SwiftDriverJobDiscovery normal arm64 Compiling LogMessage.swift, LogMetadata.swift, LogOutput.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling Arguments.swift (in target 'NetConsole' from project 'DLog')
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
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NetConsole -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios12.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-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/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 -Xfrontend -package-name -Xfrontend 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-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TraceStack.swift, TraceThread.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling TraceFunc.swift, TraceProcess.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling Text.swift, Trace.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling Atomic.swift, DLog.swift, Dynamic.swift (in target 'DLog' from project 'DLog')
SwiftDriverJobDiscovery normal arm64 Compiling File.swift, Filter.swift, LogConfig.swift (in target 'DLog' from project 'DLog')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DLog-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DLog-Swift.h
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole normal (in target 'NetConsole' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -fprofile-instr-generate -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole
ld: library '/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.profile_ios.a' not found
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/DLogObjC.modulemap (in target 'DLogObjC' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/DLogObjC.modulemap
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DLogObjC.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/DLogObjC.modulemap (in target 'DLogObjC' 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 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/DLogObjC.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp (in target 'DLogObjC' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp
-target arm64-apple-ios12.0 -fobjc-arc -fmodules -gmodules '-fmodules-cache-path=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex' '-fmodule-name=DLogObjC' -fpascal-strings -O0 -DSWIFT_PACKAGE '-DDEBUG=1' '-DOBJC_OLD_DISPATCH_PROTOTYPES=1' -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -g -fprofile-instr-generate -fcoverage-mapping -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -I/Users/admin/builder/spi-builder-workspace/Sources/DLogObjC/include -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/DerivedSources-normal/arm64 -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/DerivedSources/arm64 -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/DerivedSources -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks '-fmodule-map-file=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DLog.modulemap' -DXcode
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -x objective-c -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-iphoneos/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-iphoneos/DLogObjC.build/Objects-normal/arm64/DLog.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLogObjC.build/Objects-normal/arm64/DLog.o -index-unit-output-path /DLog.build/Debug-iphoneos/DLogObjC.build/Objects-normal/arm64/DLog.o
SwiftDriverJobDiscovery normal arm64 Compiling OSLog.swift, Standard.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 LogFormat.swift, LogInterval.swift, LogItem.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
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name DLog -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios12.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-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/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 -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.o normal (in target 'DLog' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLog.build/Objects-normal/arm64/DLog_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLog.build/Objects-normal/arm64/DLog_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLog.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/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-iphoneos/DLog.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/Objects-normal/arm64/DLogObjC.LinkFileList (in target 'DLogObjC' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/Objects-normal/arm64/DLogObjC.LinkFileList
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLogObjC.o normal (in target 'DLogObjC' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/DLogObjC.build/Objects-normal/arm64/DLogObjC_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-arc -fobjc-link-runtime -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/DLogObjC.build/Objects-normal/arm64/DLogObjC_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DLogObjC.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/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-iphoneos/DLogObjC.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'DLog' from project 'DLog')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'DLogObjC' from project 'DLog')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'DLogObjC' from project 'DLog')
** BUILD FAILED **
The following build commands failed:
	Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole normal (in target 'NetConsole' from project 'DLog')
(1 failure)
Command line invocation:
    /Applications/Xcode-15.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme DLog-Package -destination generic/platform=ios "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete"
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportToolchainOverrideForManifestLoading = org.swift.600202405261a
    IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
    TOOLCHAINS = org.swift.600202405261a
Resolve Package Graph
Resolved source packages:
  DLog: /Users/admin/builder/spi-builder-workspace
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (5 targets)
    Target 'NetConsole' in project 'DLog' (no dependencies)
    Target 'DLogObjC' in project 'DLog'
        ➜ Explicit dependency on target 'DLogObjC' in project 'DLog'
        ➜ Explicit dependency on target 'DLog' in project 'DLog'
    Target 'DLogObjC' in project 'DLog'
        ➜ Explicit dependency on target 'DLog' in project 'DLog'
    Target 'DLog' in project 'DLog'
        ➜ Explicit dependency on target 'DLog' in project 'DLog'
    Target 'DLog' in project 'DLog' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'.
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'NetConsole' from project 'DLog')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole normal (in target 'NetConsole' from project 'DLog')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/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-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -fprofile-instr-generate -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DLog.build/Debug-iphoneos/NetConsole.build/Objects-normal/arm64/NetConsole_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole
ld: library '/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.profile_ios.a' not found
clang: error: linker command failed with exit code 1 (use -v to see invocation)
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'DLog' from project 'DLog')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'DLogObjC' from project 'DLog')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'DLog' from project 'DLog')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'DLogObjC' from project 'DLog')
** BUILD FAILED **
The following build commands failed:
	Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/NetConsole normal (in target 'NetConsole' from project 'DLog')
(1 failure)
BUILD FAILURE 6.0 iOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.