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

Successful build of Witness, reference master (b04694), with Swift 6.0 for macOS (Xcode) using Xcode 16.0 on 31 Oct 2024 21:22:19 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Witness-Package -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    public static let FileEvents = EventStreamCreateFlags(kFSEventStreamCreateFlagFileEvents)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:94:23: warning: static property 'MarkSelf' is not concurrency-safe because non-'Sendable' type 'EventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let MarkSelf = EventStreamCreateFlags(kFSEventStreamCreateFlagMarkSelf)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:81:15: note: consider making struct 'EventStreamCreateFlags' conform to the 'Sendable' protocol
public struct EventStreamCreateFlags: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:94:23: note: annotate 'MarkSelf' with '@MainActor' if property should only be accessed from the main actor
    public static let MarkSelf = EventStreamCreateFlags(kFSEventStreamCreateFlagMarkSelf)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let MarkSelf = EventStreamCreateFlags(kFSEventStreamCreateFlagMarkSelf)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:21:23: warning: static property 'None' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let None = FileEventFlags(kFSEventStreamEventFlagNone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:21:23: note: annotate 'None' with '@MainActor' if property should only be accessed from the main actor
    public static let None = FileEventFlags(kFSEventStreamEventFlagNone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let None = FileEventFlags(kFSEventStreamEventFlagNone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:23:23: warning: static property 'MustScanSubDirs' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let MustScanSubDirs = FileEventFlags(kFSEventStreamEventFlagMustScanSubDirs)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:23:23: note: annotate 'MustScanSubDirs' with '@MainActor' if property should only be accessed from the main actor
    public static let MustScanSubDirs = FileEventFlags(kFSEventStreamEventFlagMustScanSubDirs)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let MustScanSubDirs = FileEventFlags(kFSEventStreamEventFlagMustScanSubDirs)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:25:23: warning: static property 'UserDropped' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let UserDropped = FileEventFlags(kFSEventStreamEventFlagUserDropped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:25:23: note: annotate 'UserDropped' with '@MainActor' if property should only be accessed from the main actor
    public static let UserDropped = FileEventFlags(kFSEventStreamEventFlagUserDropped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let UserDropped = FileEventFlags(kFSEventStreamEventFlagUserDropped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:26:23: warning: static property 'KernelDropped' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let KernelDropped = FileEventFlags(kFSEventStreamEventFlagKernelDropped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:26:23: note: annotate 'KernelDropped' with '@MainActor' if property should only be accessed from the main actor
    public static let KernelDropped = FileEventFlags(kFSEventStreamEventFlagKernelDropped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let KernelDropped = FileEventFlags(kFSEventStreamEventFlagKernelDropped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:28:23: warning: static property 'EventIdsWrapped' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let EventIdsWrapped = FileEventFlags(kFSEventStreamEventFlagEventIdsWrapped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:28:23: note: annotate 'EventIdsWrapped' with '@MainActor' if property should only be accessed from the main actor
    public static let EventIdsWrapped = FileEventFlags(kFSEventStreamEventFlagEventIdsWrapped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let EventIdsWrapped = FileEventFlags(kFSEventStreamEventFlagEventIdsWrapped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:30:23: warning: static property 'HistoryDone' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let HistoryDone = FileEventFlags(kFSEventStreamEventFlagHistoryDone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:30:23: note: annotate 'HistoryDone' with '@MainActor' if property should only be accessed from the main actor
    public static let HistoryDone = FileEventFlags(kFSEventStreamEventFlagHistoryDone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let HistoryDone = FileEventFlags(kFSEventStreamEventFlagHistoryDone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:32:23: warning: static property 'RootChanged' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let RootChanged = FileEventFlags(kFSEventStreamEventFlagRootChanged)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:32:23: note: annotate 'RootChanged' with '@MainActor' if property should only be accessed from the main actor
    public static let RootChanged = FileEventFlags(kFSEventStreamEventFlagRootChanged)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let RootChanged = FileEventFlags(kFSEventStreamEventFlagRootChanged)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:34:23: warning: static property 'Mount' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Mount = FileEventFlags(kFSEventStreamEventFlagMount)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:34:23: note: annotate 'Mount' with '@MainActor' if property should only be accessed from the main actor
    public static let Mount = FileEventFlags(kFSEventStreamEventFlagMount)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Mount = FileEventFlags(kFSEventStreamEventFlagMount)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:35:23: warning: static property 'Unmount' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Unmount = FileEventFlags(kFSEventStreamEventFlagUnmount)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:35:23: note: annotate 'Unmount' with '@MainActor' if property should only be accessed from the main actor
    public static let Unmount = FileEventFlags(kFSEventStreamEventFlagUnmount)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Unmount = FileEventFlags(kFSEventStreamEventFlagUnmount)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:37:23: warning: static property 'ItemCreated' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemCreated = FileEventFlags(kFSEventStreamEventFlagItemCreated)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:37:23: note: annotate 'ItemCreated' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemCreated = FileEventFlags(kFSEventStreamEventFlagItemCreated)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemCreated = FileEventFlags(kFSEventStreamEventFlagItemCreated)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:38:23: warning: static property 'ItemRemoved' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemRemoved = FileEventFlags(kFSEventStreamEventFlagItemRemoved)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:38:23: note: annotate 'ItemRemoved' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemRemoved = FileEventFlags(kFSEventStreamEventFlagItemRemoved)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemRemoved = FileEventFlags(kFSEventStreamEventFlagItemRemoved)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:39:23: warning: static property 'ItemInodeMetaMod' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemInodeMetaMod = FileEventFlags(kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:39:23: note: annotate 'ItemInodeMetaMod' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemInodeMetaMod = FileEventFlags(kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemInodeMetaMod = FileEventFlags(kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:40:23: warning: static property 'ItemRenamed' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemRenamed = FileEventFlags(kFSEventStreamEventFlagItemRenamed)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:40:23: note: annotate 'ItemRenamed' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemRenamed = FileEventFlags(kFSEventStreamEventFlagItemRenamed)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemRenamed = FileEventFlags(kFSEventStreamEventFlagItemRenamed)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:41:23: warning: static property 'ItemModified' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemModified = FileEventFlags(kFSEventStreamEventFlagItemModified)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:41:23: note: annotate 'ItemModified' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemModified = FileEventFlags(kFSEventStreamEventFlagItemModified)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemModified = FileEventFlags(kFSEventStreamEventFlagItemModified)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:42:23: warning: static property 'ItemFinderInfoMod' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemFinderInfoMod = FileEventFlags(kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:42:23: note: annotate 'ItemFinderInfoMod' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemFinderInfoMod = FileEventFlags(kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemFinderInfoMod = FileEventFlags(kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:43:23: warning: static property 'ItemChangeOwner' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemChangeOwner = FileEventFlags(kFSEventStreamEventFlagItemChangeOwner)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:43:23: note: annotate 'ItemChangeOwner' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemChangeOwner = FileEventFlags(kFSEventStreamEventFlagItemChangeOwner)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemChangeOwner = FileEventFlags(kFSEventStreamEventFlagItemChangeOwner)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:44:23: warning: static property 'ItemXattrMod' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemXattrMod = FileEventFlags(kFSEventStreamEventFlagItemXattrMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:44:23: note: annotate 'ItemXattrMod' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemXattrMod = FileEventFlags(kFSEventStreamEventFlagItemXattrMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemXattrMod = FileEventFlags(kFSEventStreamEventFlagItemXattrMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:45:23: warning: static property 'ItemIsFile' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsFile = FileEventFlags(kFSEventStreamEventFlagItemIsFile)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:45:23: note: annotate 'ItemIsFile' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsFile = FileEventFlags(kFSEventStreamEventFlagItemIsFile)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsFile = FileEventFlags(kFSEventStreamEventFlagItemIsFile)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:46:23: warning: static property 'ItemIsDir' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsDir = FileEventFlags(kFSEventStreamEventFlagItemIsDir)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:46:23: note: annotate 'ItemIsDir' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsDir = FileEventFlags(kFSEventStreamEventFlagItemIsDir)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsDir = FileEventFlags(kFSEventStreamEventFlagItemIsDir)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:47:23: warning: static property 'ItemIsSymlink' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsSymlink = FileEventFlags(kFSEventStreamEventFlagItemIsSymlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:47:23: note: annotate 'ItemIsSymlink' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsSymlink = FileEventFlags(kFSEventStreamEventFlagItemIsSymlink)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsSymlink = FileEventFlags(kFSEventStreamEventFlagItemIsSymlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:48:23: warning: static property 'ItemIsHardLink' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:48:23: note: annotate 'ItemIsHardLink' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsHardlink)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsHardlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:49:23: warning: static property 'ItemIsLastHardLink' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsLastHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:49:23: note: annotate 'ItemIsLastHardLink' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsLastHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsLastHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:51:23: warning: static property 'OwnEvent' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let OwnEvent = FileEventFlags(kFSEventStreamEventFlagOwnEvent)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:51:23: note: annotate 'OwnEvent' with '@MainActor' if property should only be accessed from the main actor
    public static let OwnEvent = FileEventFlags(kFSEventStreamEventFlagOwnEvent)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let OwnEvent = FileEventFlags(kFSEventStreamEventFlagOwnEvent)
                      ^
    nonisolated(unsafe)
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1730409732644268-swift-frontend-Witness-all-arm64_apple_macos10.10-swiftmodule-Onone-2741195496.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7402 seconds (4.9360 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0210 (  7.1%)   0.0376 (  8.5%)   0.0586 (  7.9%)   2.1376 ( 43.3%)  parse-and-resolve-imports
   0.0210 (  7.1%)   0.0375 (  8.4%)   0.0584 (  7.9%)   2.1374 ( 43.3%)  Import resolution
   0.0318 ( 10.8%)   0.0489 ( 11.0%)   0.0807 ( 10.9%)   0.0810 (  1.6%)  perform-sema
   0.0318 ( 10.8%)   0.0489 ( 11.0%)   0.0807 ( 10.9%)   0.0810 (  1.6%)  TypeCheckSourceFileRequest
   0.0317 ( 10.8%)   0.0488 ( 11.0%)   0.0806 ( 10.9%)   0.0809 (  1.6%)  Type checking and Semantic analysis
   0.0313 ( 10.6%)   0.0480 ( 10.8%)   0.0793 ( 10.7%)   0.0796 (  1.6%)  typecheck-decl
   0.0014 (  0.5%)   0.0074 (  1.7%)   0.0088 (  1.2%)   0.0406 (  0.8%)  load-stdlib
   0.0142 (  4.8%)   0.0203 (  4.6%)   0.0345 (  4.7%)   0.0346 (  0.7%)  ResolveValueWitnessesRequest
   0.0124 (  4.2%)   0.0140 (  3.2%)   0.0265 (  3.6%)   0.0278 (  0.6%)  ExecuteSILPipelineRequest
   0.0086 (  2.9%)   0.0110 (  2.5%)   0.0196 (  2.6%)   0.0197 (  0.4%)  PatternBindingEntryRequest
   0.0082 (  2.8%)   0.0104 (  2.3%)   0.0186 (  2.5%)   0.0187 (  0.4%)  typecheck-expr
   0.0065 (  2.2%)   0.0103 (  2.3%)   0.0168 (  2.3%)   0.0168 (  0.3%)  ASTLoweringRequest
   0.0062 (  2.1%)   0.0100 (  2.2%)   0.0162 (  2.2%)   0.0162 (  0.3%)  SILgen-decl
   0.0044 (  1.5%)   0.0107 (  2.4%)   0.0151 (  2.0%)   0.0151 (  0.3%)  InterfaceTypeRequest
   0.0071 (  2.4%)   0.0072 (  1.6%)   0.0144 (  1.9%)   0.0144 (  0.3%)  UnqualifiedLookupRequest
   0.0070 (  2.4%)   0.0068 (  1.5%)   0.0138 (  1.9%)   0.0138 (  0.3%)  performUnqualifiedLookup
   0.0050 (  1.7%)   0.0056 (  1.3%)   0.0106 (  1.4%)   0.0118 (  0.2%)  SIL optimization
   0.0033 (  1.1%)   0.0073 (  1.7%)   0.0107 (  1.4%)   0.0107 (  0.2%)  QualifiedLookupRequest
   0.0059 (  2.0%)   0.0040 (  0.9%)   0.0098 (  1.3%)   0.0099 (  0.2%)  LookupInModuleRequest
   0.0044 (  1.5%)   0.0030 (  0.7%)   0.0074 (  1.0%)   0.0074 (  0.2%)  build-rewrite-system
   0.0027 (  0.9%)   0.0043 (  1.0%)   0.0070 (  0.9%)   0.0071 (  0.1%)  SILGen-function
   0.0022 (  0.7%)   0.0045 (  1.0%)   0.0067 (  0.9%)   0.0067 (  0.1%)  ActorIsolationRequest
   0.0027 (  0.9%)   0.0034 (  0.8%)   0.0062 (  0.8%)   0.0062 (  0.1%)  precheck-expr
   0.0019 (  0.6%)   0.0037 (  0.8%)   0.0056 (  0.8%)   0.0056 (  0.1%)  StoredPropertiesRequest
   0.0028 (  1.0%)   0.0020 (  0.5%)   0.0049 (  0.7%)   0.0049 (  0.1%)  LookupConformanceInModuleRequest
   0.0017 (  0.6%)   0.0025 (  0.6%)   0.0042 (  0.6%)   0.0042 (  0.1%)  ValueWitnessRequest
   0.0011 (  0.4%)   0.0030 (  0.7%)   0.0040 (  0.5%)   0.0040 (  0.1%)  AttachedPropertyWrappersRequest
   0.0012 (  0.4%)   0.0017 (  0.4%)   0.0029 (  0.4%)   0.0029 (  0.1%)  ModuleQualifiedLookupRequest
   0.0013 (  0.4%)   0.0016 (  0.4%)   0.0029 (  0.4%)   0.0029 (  0.1%)  Serialization, swiftmodule
   0.0003 (  0.1%)   0.0017 (  0.4%)   0.0020 (  0.3%)   0.0028 (  0.1%)  Serialization, swiftdoc
   0.0016 (  0.5%)   0.0011 (  0.2%)   0.0027 (  0.4%)   0.0027 (  0.1%)  DirectLookupRequest
   0.0010 (  0.3%)   0.0016 (  0.4%)   0.0027 (  0.4%)   0.0027 (  0.1%)  TypeWitnessRequest
   0.0009 (  0.3%)   0.0015 (  0.3%)   0.0024 (  0.3%)   0.0024 (  0.0%)  ResolveTypeWitnessesRequest
   0.0006 (  0.2%)   0.0015 (  0.3%)   0.0021 (  0.3%)   0.0021 (  0.0%)  ExpandPeerMacroRequest
   0.0011 (  0.4%)   0.0010 (  0.2%)   0.0021 (  0.3%)   0.0021 (  0.0%)  ResolveTypeRequest
   0.0000 (  0.0%)   0.0011 (  0.3%)   0.0012 (  0.2%)   0.0019 (  0.0%)  SemanticBriefCommentRequest
   0.0007 (  0.2%)   0.0007 (  0.2%)   0.0014 (  0.2%)   0.0014 (  0.0%)  import-clang-decl
   0.0006 (  0.2%)   0.0006 (  0.1%)   0.0012 (  0.2%)   0.0012 (  0.0%)  PatternTypeRequest
   0.0005 (  0.2%)   0.0004 (  0.1%)   0.0009 (  0.1%)   0.0009 (  0.0%)  DefaultArgumentExprRequest
   0.0002 (  0.1%)   0.0006 (  0.1%)   0.0008 (  0.1%)   0.0008 (  0.0%)  IsFunctionBodySkippedRequest
   0.0002 (  0.1%)   0.0005 (  0.1%)   0.0007 (  0.1%)   0.0007 (  0.0%)  GenericSignatureRequest
   0.0002 (  0.1%)   0.0005 (  0.1%)   0.0007 (  0.1%)   0.0007 (  0.0%)  IsGetterMutatingRequest
   0.0003 (  0.1%)   0.0004 (  0.1%)   0.0007 (  0.1%)   0.0007 (  0.0%)  OpaqueReadOwnershipRequest
   0.0003 (  0.1%)   0.0003 (  0.1%)   0.0006 (  0.1%)   0.0006 (  0.0%)  Serialization, swiftsourceinfo
   0.0002 (  0.1%)   0.0005 (  0.1%)   0.0006 (  0.1%)   0.0006 (  0.0%)  IsDynamicRequest
   0.0002 (  0.1%)   0.0004 (  0.1%)   0.0006 (  0.1%)   0.0006 (  0.0%)  HasInitAccessorRequest
   0.0002 (  0.1%)   0.0004 (  0.1%)   0.0006 (  0.1%)   0.0006 (  0.0%)  DefaultInitializerIsolation
   0.0004 (  0.1%)   0.0003 (  0.1%)   0.0006 (  0.1%)   0.0006 (  0.0%)  ExpandMemberAttributeMacros
   0.0002 (  0.1%)   0.0004 (  0.1%)   0.0005 (  0.1%)   0.0005 (  0.0%)  FragileFunctionKindRequest
   0.0001 (  0.0%)   0.0004 (  0.1%)   0.0005 (  0.1%)   0.0005 (  0.0%)  TypeCheckFunctionBodyRequest
   0.0002 (  0.1%)   0.0003 (  0.1%)   0.0005 (  0.1%)   0.0005 (  0.0%)  ABIMembersRequest
   0.0002 (  0.1%)   0.0003 (  0.1%)   0.0004 (  0.1%)   0.0004 (  0.0%)  ResolveImplicitMemberRequest
   0.0002 (  0.1%)   0.0002 (  0.1%)   0.0004 (  0.1%)   0.0004 (  0.0%)  CheckRedeclarationRequest
   0.0001 (  0.0%)   0.0003 (  0.1%)   0.0004 (  0.1%)   0.0004 (  0.0%)  PotentialMacroExpansionsInContextRequest
   0.0002 (  0.1%)   0.0002 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  NamingPatternRequest
   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  LocalDiscriminatorsRequest
   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  SynthesizeMemberwiseInitRequest
   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  AllMembersRequest
   0.0002 (  0.1%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  InheritedDeclsReferencedRequest
   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  StorageImplInfoRequest
   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ParseAbstractFunctionBodyRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  HasIsolatedSelfRequest
   0.0002 (  0.1%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ParseMembersRequest
   0.0001 (  0.1%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  USRGenerationRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  GenericParamListRequest
   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  AssociatedConformanceRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  SPIGroupsRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ParseTopLevelDeclsRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  SemanticUnavailableAttrRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ParseSourceFileRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ImplicitKnownProtocolConformanceRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ProtocolDependenciesRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  LifetimeDependenceInfoRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  AbstractGenericSignatureRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  PropertyWrapperAuxiliaryVariablesRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  DefaultTypeRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  GlobalActorAttributeRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  HasMemberwiseInitRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  InheritedTypeRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ConditionalRequirementsRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  LookupAllConformancesInContextRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ExtendedNominalRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsObjCRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  PatternBindingCheckedAndContextualizedInitRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  DynamicallyReplacedDeclRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  HasUserDefinedDesignatedInitRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  AccessLevelRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ExpandExtensionMacros
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsImplicitlyUnwrappedOptionalRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ExpandChildTypeRefinementContextsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  UnderlyingTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)  OverriddenDeclsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)  ApplyAccessNoteRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsActorRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ParamSpecifierRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0000 (  0.0%)  RawCommentRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasDefaultInitRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  RequirementSignatureRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ProtocolRequirementsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InheritedProtocolsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsFinalRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  NeedsNewVTableEntryRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AllInheritedProtocolsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SimpleDidSetRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  RequiresOpaqueAccessorsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SynthesizeAccessorRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperMutabilityRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InitAccessorPropertiesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResolvePatternRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsAccessorTransparentRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandAccessorMacros
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperInitializerInfoRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExtendedTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  LocalTypeDeclsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ObjCInterfaceAndImplementationRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  MemberwiseInitPropertiesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsSetterMutatingRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  RequiresOpaqueModifyCoroutineRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasStorageRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsDistributedActorRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsStaticRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResultTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentWeakLinkedImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentImplementationOnlyImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperBackingPropertyTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ReferencedAssociatedTypesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AttachedResultBuilderRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ConformanceAccessScopeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResultBuilderTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsABICompatibleOverrideRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ClassAncestryFlagsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasCircularRawValueRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InitKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SynthesizeMainFunctionRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasCircularInheritedProtocolsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DirectOperatorLookupRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandSynthesizedMemberMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfAccessKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentAccessLevelOnImport
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentSPIOnlyImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ModuleImplicitImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-module-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasImportsMatchingFlagRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AttachedPropertyWrapperTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PrimaryAssociatedTypesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfBoundsFromGenericSignatureRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentAccessLevelOnImportSameFileRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CxxRecordSemantics
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AreAllStoredPropertiesDefaultInitableRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PolymorphicEffectKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasMissingDesignatedInitializersRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  EnumRawValuesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DefaultDefinitionTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PrimarySourceFilesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SuperclassDeclRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SuppressesConformanceRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SuperclassTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfBoundsFromWhereClauseRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SetterAccessLevelRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DefaultAndMaxAccessLevelRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  EnumRawTypeRequest
   0.2949 (100.0%)   0.4453 (100.0%)   0.7402 (100.0%)   4.9360 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.1950 seconds (2.3076 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0742 (100.0%)   0.1208 (100.0%)   0.1950 (100.0%)   2.3076 (100.0%)  Building Target
   0.0742 (100.0%)   0.1208 (100.0%)   0.1950 (100.0%)   2.3076 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ EventStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/Witness.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=2 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-bare-slash-regex -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 /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources -Xcc -DDEBUG\=1 -module-name Witness -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.o -index-unit-output-path /Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.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/Witness/EventStream.swift (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/Witness.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=2 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-bare-slash-regex -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 /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources -Xcc -DDEBUG\=1 -module-name Witness -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.o -index-unit-output-path /Witness.build/Debug/Witness.build/Objects-normal/arm64/EventStream.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:86:23: warning: static property 'None' is not concurrency-safe because non-'Sendable' type 'EventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let None = EventStreamCreateFlags(kFSEventStreamCreateFlagNone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:81:15: note: consider making struct 'EventStreamCreateFlags' conform to the 'Sendable' protocol
public struct EventStreamCreateFlags: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:86:23: note: annotate 'None' with '@MainActor' if property should only be accessed from the main actor
    public static let None = EventStreamCreateFlags(kFSEventStreamCreateFlagNone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let None = EventStreamCreateFlags(kFSEventStreamCreateFlagNone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:89:23: warning: static property 'UseCFTypes' is not concurrency-safe because non-'Sendable' type 'EventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let UseCFTypes = EventStreamCreateFlags(kFSEventStreamCreateFlagUseCFTypes)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:81:15: note: consider making struct 'EventStreamCreateFlags' conform to the 'Sendable' protocol
public struct EventStreamCreateFlags: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:89:23: note: annotate 'UseCFTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let UseCFTypes = EventStreamCreateFlags(kFSEventStreamCreateFlagUseCFTypes)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:89:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let UseCFTypes = EventStreamCreateFlags(kFSEventStreamCreateFlagUseCFTypes)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:90:23: warning: static property 'NoDefer' is not concurrency-safe because non-'Sendable' type 'EventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let NoDefer = EventStreamCreateFlags(kFSEventStreamCreateFlagNoDefer)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:81:15: note: consider making struct 'EventStreamCreateFlags' conform to the 'Sendable' protocol
public struct EventStreamCreateFlags: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:90:23: note: annotate 'NoDefer' with '@MainActor' if property should only be accessed from the main actor
    public static let NoDefer = EventStreamCreateFlags(kFSEventStreamCreateFlagNoDefer)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let NoDefer = EventStreamCreateFlags(kFSEventStreamCreateFlagNoDefer)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:91:23: warning: static property 'WatchRoot' is not concurrency-safe because non-'Sendable' type 'EventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WatchRoot = EventStreamCreateFlags(kFSEventStreamCreateFlagWatchRoot)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:81:15: note: consider making struct 'EventStreamCreateFlags' conform to the 'Sendable' protocol
public struct EventStreamCreateFlags: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:91:23: note: annotate 'WatchRoot' with '@MainActor' if property should only be accessed from the main actor
    public static let WatchRoot = EventStreamCreateFlags(kFSEventStreamCreateFlagWatchRoot)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WatchRoot = EventStreamCreateFlags(kFSEventStreamCreateFlagWatchRoot)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:92:23: warning: static property 'IgnoreSelf' is not concurrency-safe because non-'Sendable' type 'EventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let IgnoreSelf = EventStreamCreateFlags(kFSEventStreamCreateFlagIgnoreSelf)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:81:15: note: consider making struct 'EventStreamCreateFlags' conform to the 'Sendable' protocol
public struct EventStreamCreateFlags: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:92:23: note: annotate 'IgnoreSelf' with '@MainActor' if property should only be accessed from the main actor
    public static let IgnoreSelf = EventStreamCreateFlags(kFSEventStreamCreateFlagIgnoreSelf)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:92:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let IgnoreSelf = EventStreamCreateFlags(kFSEventStreamCreateFlagIgnoreSelf)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:93:23: warning: static property 'FileEvents' is not concurrency-safe because non-'Sendable' type 'EventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let FileEvents = EventStreamCreateFlags(kFSEventStreamCreateFlagFileEvents)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:81:15: note: consider making struct 'EventStreamCreateFlags' conform to the 'Sendable' protocol
public struct EventStreamCreateFlags: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:93:23: note: annotate 'FileEvents' with '@MainActor' if property should only be accessed from the main actor
    public static let FileEvents = EventStreamCreateFlags(kFSEventStreamCreateFlagFileEvents)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:93:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let FileEvents = EventStreamCreateFlags(kFSEventStreamCreateFlagFileEvents)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:94:23: warning: static property 'MarkSelf' is not concurrency-safe because non-'Sendable' type 'EventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let MarkSelf = EventStreamCreateFlags(kFSEventStreamCreateFlagMarkSelf)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:81:15: note: consider making struct 'EventStreamCreateFlags' conform to the 'Sendable' protocol
public struct EventStreamCreateFlags: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:94:23: note: annotate 'MarkSelf' with '@MainActor' if property should only be accessed from the main actor
    public static let MarkSelf = EventStreamCreateFlags(kFSEventStreamCreateFlagMarkSelf)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let MarkSelf = EventStreamCreateFlags(kFSEventStreamCreateFlagMarkSelf)
                      ^
    nonisolated(unsafe)
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1730409732644611-swift-frontend-Witness-EventStream.swift-arm64_apple_macos10.10-o-Onone-1056046693.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 4.1958 seconds (8.2352 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0279 (  1.5%)   0.0470 (  2.1%)   0.0749 (  1.8%)   2.0804 ( 25.3%)  parse-and-resolve-imports
   0.0279 (  1.5%)   0.0469 (  2.1%)   0.0747 (  1.8%)   2.0802 ( 25.3%)  Import resolution
   0.4127 ( 21.6%)   0.6757 ( 29.6%)   1.0884 ( 25.9%)   1.0907 ( 13.2%)  SemanticDeclAttrsRequest
   0.2138 ( 11.2%)   0.3314 ( 14.5%)   0.5452 ( 13.0%)   0.5467 (  6.6%)  ActorIsolationRequest
   0.2677 ( 14.0%)   0.2188 (  9.6%)   0.4865 ( 11.6%)   0.4877 (  5.9%)  USRGenerationRequest
   0.0991 (  5.2%)   0.1180 (  5.2%)   0.2172 (  5.2%)   0.2179 (  2.6%)  InterfaceTypeRequest
   0.0892 (  4.7%)   0.0875 (  3.8%)   0.1767 (  4.2%)   0.1786 (  2.2%)  CollectOverriddenDeclsRequest
   0.0766 (  4.0%)   0.0546 (  2.4%)   0.1312 (  3.1%)   0.1315 (  1.6%)  build-rewrite-system
   0.0615 (  3.2%)   0.0446 (  2.0%)   0.1062 (  2.5%)   0.1077 (  1.3%)  ProvideDefaultImplForRequest
   0.0378 (  2.0%)   0.0433 (  1.9%)   0.0812 (  1.9%)   0.0823 (  1.0%)  perform-sema
   0.0378 (  2.0%)   0.0433 (  1.9%)   0.0811 (  1.9%)   0.0823 (  1.0%)  TypeCheckSourceFileRequest
   0.0377 (  2.0%)   0.0433 (  1.9%)   0.0810 (  1.9%)   0.0822 (  1.0%)  Type checking and Semantic analysis
   0.0315 (  1.6%)   0.0352 (  1.5%)   0.0666 (  1.6%)   0.0678 (  0.8%)  typecheck-decl
   0.0281 (  1.5%)   0.0388 (  1.7%)   0.0669 (  1.6%)   0.0672 (  0.8%)  IsDynamicRequest
   0.0240 (  1.3%)   0.0332 (  1.5%)   0.0572 (  1.4%)   0.0573 (  0.7%)  AttachedPropertyWrappersRequest
   0.0230 (  1.2%)   0.0287 (  1.3%)   0.0517 (  1.2%)   0.0534 (  0.6%)  QualifiedLookupRequest
   0.0195 (  1.0%)   0.0205 (  0.9%)   0.0399 (  1.0%)   0.0426 (  0.5%)  ExecuteSILPipelineRequest
   0.0212 (  1.1%)   0.0209 (  0.9%)   0.0421 (  1.0%)   0.0424 (  0.5%)  ExpandPeerMacroRequest
   0.0243 (  1.3%)   0.0170 (  0.7%)   0.0413 (  1.0%)   0.0415 (  0.5%)  LookupConformanceInModuleRequest
   0.0163 (  0.9%)   0.0212 (  0.9%)   0.0376 (  0.9%)   0.0388 (  0.5%)  TypeCheckFunctionBodyRequest
   0.0156 (  0.8%)   0.0198 (  0.9%)   0.0354 (  0.8%)   0.0366 (  0.4%)  typecheck-stmt
   0.0151 (  0.8%)   0.0179 (  0.8%)   0.0330 (  0.8%)   0.0342 (  0.4%)  typecheck-expr
   0.0193 (  1.0%)   0.0133 (  0.6%)   0.0326 (  0.8%)   0.0328 (  0.4%)  LookupInModuleRequest
   0.0138 (  0.7%)   0.0157 (  0.7%)   0.0295 (  0.7%)   0.0295 (  0.4%)  ResolveValueWitnessesRequest
   0.0202 (  1.1%)   0.0084 (  0.4%)   0.0286 (  0.7%)   0.0287 (  0.3%)  LookupAllConformancesInContextRequest
   0.0154 (  0.8%)   0.0130 (  0.6%)   0.0283 (  0.7%)   0.0285 (  0.3%)  ModuleQualifiedLookupRequest
   0.0152 (  0.8%)   0.0111 (  0.5%)   0.0264 (  0.6%)   0.0263 (  0.3%)  HasIsolatedSelfRequest
   0.0134 (  0.7%)   0.0115 (  0.5%)   0.0249 (  0.6%)   0.0262 (  0.3%)  DirectLookupRequest
   0.0102 (  0.5%)   0.0149 (  0.7%)   0.0251 (  0.6%)   0.0251 (  0.3%)  ASTLoweringRequest
   0.0098 (  0.5%)   0.0145 (  0.6%)   0.0243 (  0.6%)   0.0243 (  0.3%)  SILgen-decl
   0.0142 (  0.7%)   0.0089 (  0.4%)   0.0231 (  0.5%)   0.0233 (  0.3%)  ExpandMemberAttributeMacros
   0.0105 (  0.5%)   0.0116 (  0.5%)   0.0221 (  0.5%)   0.0228 (  0.3%)  IRGenRequest
   0.0083 (  0.4%)   0.0137 (  0.6%)   0.0219 (  0.5%)   0.0220 (  0.3%)  HasInitAccessorRequest
   0.0094 (  0.5%)   0.0117 (  0.5%)   0.0211 (  0.5%)   0.0219 (  0.3%)  load-stdlib
   0.0095 (  0.5%)   0.0103 (  0.5%)   0.0199 (  0.5%)   0.0210 (  0.3%)  PatternBindingEntryRequest
   0.0107 (  0.6%)   0.0077 (  0.3%)   0.0184 (  0.4%)   0.0183 (  0.2%)  GlobalActorAttributeRequest
   0.0075 (  0.4%)   0.0106 (  0.5%)   0.0181 (  0.4%)   0.0181 (  0.2%)  SILGen-function
   0.0103 (  0.5%)   0.0075 (  0.3%)   0.0178 (  0.4%)   0.0180 (  0.2%)  import-clang-decl
   0.0079 (  0.4%)   0.0083 (  0.4%)   0.0162 (  0.4%)   0.0169 (  0.2%)  IRGen
   0.0087 (  0.5%)   0.0079 (  0.3%)   0.0166 (  0.4%)   0.0166 (  0.2%)  UnqualifiedLookupRequest
   0.0094 (  0.5%)   0.0072 (  0.3%)   0.0166 (  0.4%)   0.0165 (  0.2%)  IsFinalRequest
   0.0086 (  0.4%)   0.0077 (  0.3%)   0.0162 (  0.4%)   0.0162 (  0.2%)  performUnqualifiedLookup
   0.0112 (  0.6%)   0.0044 (  0.2%)   0.0156 (  0.4%)   0.0157 (  0.2%)  AbstractGenericSignatureRequest
   0.0082 (  0.4%)   0.0065 (  0.3%)   0.0147 (  0.3%)   0.0146 (  0.2%)  DynamicallyReplacedDeclRequest
   0.0050 (  0.3%)   0.0038 (  0.2%)   0.0088 (  0.2%)   0.0089 (  0.1%)  OverriddenDeclsRequest
   0.0025 (  0.1%)   0.0049 (  0.2%)   0.0073 (  0.2%)   0.0073 (  0.1%)  StoredPropertiesRequest
   0.0040 (  0.2%)   0.0032 (  0.1%)   0.0073 (  0.2%)   0.0073 (  0.1%)  precheck-expr
   0.0042 (  0.2%)   0.0031 (  0.1%)   0.0072 (  0.2%)   0.0073 (  0.1%)  AccessLevelRequest
   0.0035 (  0.2%)   0.0028 (  0.1%)   0.0063 (  0.1%)   0.0062 (  0.1%)  HasStorageRequest
   0.0020 (  0.1%)   0.0036 (  0.2%)   0.0057 (  0.1%)   0.0056 (  0.1%)  PotentialMacroExpansionsInContextRequest
   0.0025 (  0.1%)   0.0029 (  0.1%)   0.0054 (  0.1%)   0.0054 (  0.1%)  typecheck-for-each
   0.0030 (  0.2%)   0.0022 (  0.1%)   0.0052 (  0.1%)   0.0052 (  0.1%)  LifetimeDependenceInfoRequest
   0.0049 (  0.3%)   0.0002 (  0.0%)   0.0052 (  0.1%)   0.0052 (  0.1%)  SIL optimization
   0.0022 (  0.1%)   0.0027 (  0.1%)   0.0049 (  0.1%)   0.0049 (  0.1%)  ValueWitnessRequest
   0.0012 (  0.1%)   0.0016 (  0.1%)   0.0028 (  0.1%)   0.0028 (  0.0%)  TypeWitnessRequest
   0.0017 (  0.1%)   0.0011 (  0.0%)   0.0027 (  0.1%)   0.0027 (  0.0%)  ResolveTypeRequest
   0.0011 (  0.1%)   0.0015 (  0.1%)   0.0026 (  0.1%)   0.0026 (  0.0%)  ResolveTypeWitnessesRequest
   0.0010 (  0.0%)   0.0007 (  0.0%)   0.0016 (  0.0%)   0.0017 (  0.0%)  SPIGroupsRequest
   0.0010 (  0.1%)   0.0007 (  0.0%)   0.0017 (  0.0%)   0.0016 (  0.0%)  SimpleDidSetRequest
   0.0007 (  0.0%)   0.0008 (  0.0%)   0.0015 (  0.0%)   0.0016 (  0.0%)  ResolveImplicitMemberRequest
   0.0007 (  0.0%)   0.0007 (  0.0%)   0.0015 (  0.0%)   0.0015 (  0.0%)  load-all-members
   0.0011 (  0.1%)   0.0003 (  0.0%)   0.0014 (  0.0%)   0.0014 (  0.0%)  RequirementSignatureRequest
   0.0006 (  0.0%)   0.0008 (  0.0%)   0.0014 (  0.0%)   0.0014 (  0.0%)  GenericSignatureRequest
   0.0009 (  0.0%)   0.0005 (  0.0%)   0.0014 (  0.0%)   0.0014 (  0.0%)  GenericParamListRequest
   0.0008 (  0.0%)   0.0005 (  0.0%)   0.0013 (  0.0%)   0.0013 (  0.0%)  IsActorRequest
   0.0007 (  0.0%)   0.0005 (  0.0%)   0.0012 (  0.0%)   0.0012 (  0.0%)  PatternTypeRequest
   0.0007 (  0.0%)   0.0004 (  0.0%)   0.0011 (  0.0%)   0.0012 (  0.0%)  CompareDeclSpecializationRequest
   0.0007 (  0.0%)   0.0005 (  0.0%)   0.0011 (  0.0%)   0.0011 (  0.0%)  InheritedDeclsReferencedRequest
   0.0002 (  0.0%)   0.0006 (  0.0%)   0.0009 (  0.0%)   0.0009 (  0.0%)  ValidatePrecedenceGroupRequest
   0.0005 (  0.0%)   0.0004 (  0.0%)   0.0008 (  0.0%)   0.0008 (  0.0%)  ImplicitKnownProtocolConformanceRequest
   0.0002 (  0.0%)   0.0006 (  0.0%)   0.0008 (  0.0%)   0.0008 (  0.0%)  LookupPrecedenceGroupRequest
   0.0005 (  0.0%)   0.0004 (  0.0%)   0.0008 (  0.0%)   0.0008 (  0.0%)  ProtocolDependenciesRequest
   0.0004 (  0.0%)   0.0003 (  0.0%)   0.0007 (  0.0%)   0.0008 (  0.0%)  ExpandExtensionMacros
   0.0004 (  0.0%)   0.0002 (  0.0%)   0.0006 (  0.0%)   0.0006 (  0.0%)  AllInheritedProtocolsRequest
   0.0003 (  0.0%)   0.0002 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  DefaultArgumentExprRequest
   0.0003 (  0.0%)   0.0002 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  IsDistributedActorRequest
   0.0002 (  0.0%)   0.0003 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  IsObjCRequest
   0.0002 (  0.0%)   0.0002 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  OpaqueReadOwnershipRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  ParseTopLevelDeclsRequest
   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  LookupInfixOperatorRequest
   0.0002 (  0.0%)   0.0002 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  HasMemberwiseInitRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  ParseSourceFileRequest
   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  ABIMembersRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  ConditionalRequirementsRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  ObjCInterfaceAndImplementationRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  HasUserDefinedDesignatedInitRequest
   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  IsGetterMutatingRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  HasDynamicMemberLookupAttributeRequest
   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  SynthesizeMemberwiseInitRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  DefaultInitializerIsolation
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ParseAbstractFunctionBodyRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ClangRecordMemberLookup
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  CheckRedeclarationRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ClangDirectLookupRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  DefaultTypeRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  InheritedProtocolsRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  NamingPatternRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0001 (  0.0%)  SemanticUnavailableAttrRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  StorageImplInfoRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  PatternBindingCheckedAndContextualizedInitRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  AllMembersRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  RequiresOpaqueAccessorsRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  InitAccessorPropertiesRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  LocalDiscriminatorsRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ParseMembersRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsImplicitlyUnwrappedOptionalRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  MemberwiseInitPropertiesRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  UnderlyingTypeDeclsReferencedRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ParamSpecifierRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ExtendedNominalRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  StructuralRequirementsRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  DirectPrecedenceGroupLookupRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  HasCircularInheritedProtocolsRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  AssociatedConformanceRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  DirectOperatorLookupRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsNonUserModuleRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ResultBuilderTypeRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ApplyAccessNoteRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  SuperclassDeclRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  HasDefaultInitRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  BodyInitKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  UnderlyingTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PreCheckFunctionBodyRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ProtocolRequirementsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  FragileFunctionKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ClassAncestryFlagsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandChildTypeRefinementContextsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SynthesizeAccessorRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InheritedTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperAuxiliaryVariablesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PrimaryAssociatedTypesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PolymorphicEffectKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsStaticRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperMutabilityRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CxxRecordSemantics
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  NeedsNewVTableEntryRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  LocalTypeDeclsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfBoundsFromWhereClauseRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ReferencedAssociatedTypesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsFunctionBodySkippedRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentImplementationOnlyImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResolvePatternRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfAccessKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandAccessorMacros
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentWeakLinkedImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  RawCommentRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  RequiresOpaqueModifyCoroutineRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperBackingPropertyTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsAccessorTransparentRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ProtocolRequiresClassRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperInitializerInfoRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ConformanceAccessScopeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsSetterMutatingRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResultTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  TypeAliasRequirementsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PublicSymbolsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  StoredPropertiesAndMissingMembersRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AttachedResultBuilderRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandPreambleMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandBodyMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasCircularRawValueRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsABICompatibleOverrideRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExistentialConformsToSelfRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SetterAccessLevelRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandSynthesizedMemberMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InitKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ModuleImplicitImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SynthesizeMainFunctionRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PreCheckReturnStmtRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasImportsMatchingFlagRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AttachedPropertyWrapperTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PrimarySourceFilesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SuppressesConformanceRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfBoundsFromGenericSignatureRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentSPIOnlyImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AreAllStoredPropertiesDefaultInitableRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentAccessLevelOnImport
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentAccessLevelOnImportSameFileRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  EnumRawValuesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  EnumRawTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsDefaultActorRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DefaultDefinitionTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SuperclassTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DefaultArgumentTypeRequest
   1.9145 (100.0%)   2.2813 (100.0%)   4.1958 (100.0%)   8.2352 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.6576 seconds (5.7188 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.6953 (100.0%)   1.9624 (100.0%)   3.6576 (100.0%)   5.7188 (100.0%)  Building Target
   1.6953 (100.0%)   1.9624 (100.0%)   3.6576 (100.0%)   5.7188 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ FileEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/Witness.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=2 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-bare-slash-regex -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 /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources -Xcc -DDEBUG\=1 -module-name Witness -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.o -index-unit-output-path /Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.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/Witness/FileEvent.swift (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/Witness.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=2 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-bare-slash-regex -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 /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources -Xcc -DDEBUG\=1 -module-name Witness -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.o -index-unit-output-path /Witness.build/Debug/Witness.build/Objects-normal/arm64/FileEvent.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:21:23: warning: static property 'None' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let None = FileEventFlags(kFSEventStreamEventFlagNone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:21:23: note: annotate 'None' with '@MainActor' if property should only be accessed from the main actor
    public static let None = FileEventFlags(kFSEventStreamEventFlagNone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let None = FileEventFlags(kFSEventStreamEventFlagNone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:23:23: warning: static property 'MustScanSubDirs' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let MustScanSubDirs = FileEventFlags(kFSEventStreamEventFlagMustScanSubDirs)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:23:23: note: annotate 'MustScanSubDirs' with '@MainActor' if property should only be accessed from the main actor
    public static let MustScanSubDirs = FileEventFlags(kFSEventStreamEventFlagMustScanSubDirs)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let MustScanSubDirs = FileEventFlags(kFSEventStreamEventFlagMustScanSubDirs)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:25:23: warning: static property 'UserDropped' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let UserDropped = FileEventFlags(kFSEventStreamEventFlagUserDropped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:25:23: note: annotate 'UserDropped' with '@MainActor' if property should only be accessed from the main actor
    public static let UserDropped = FileEventFlags(kFSEventStreamEventFlagUserDropped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let UserDropped = FileEventFlags(kFSEventStreamEventFlagUserDropped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:26:23: warning: static property 'KernelDropped' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let KernelDropped = FileEventFlags(kFSEventStreamEventFlagKernelDropped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:26:23: note: annotate 'KernelDropped' with '@MainActor' if property should only be accessed from the main actor
    public static let KernelDropped = FileEventFlags(kFSEventStreamEventFlagKernelDropped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let KernelDropped = FileEventFlags(kFSEventStreamEventFlagKernelDropped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:28:23: warning: static property 'EventIdsWrapped' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let EventIdsWrapped = FileEventFlags(kFSEventStreamEventFlagEventIdsWrapped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:28:23: note: annotate 'EventIdsWrapped' with '@MainActor' if property should only be accessed from the main actor
    public static let EventIdsWrapped = FileEventFlags(kFSEventStreamEventFlagEventIdsWrapped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let EventIdsWrapped = FileEventFlags(kFSEventStreamEventFlagEventIdsWrapped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:30:23: warning: static property 'HistoryDone' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let HistoryDone = FileEventFlags(kFSEventStreamEventFlagHistoryDone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:30:23: note: annotate 'HistoryDone' with '@MainActor' if property should only be accessed from the main actor
    public static let HistoryDone = FileEventFlags(kFSEventStreamEventFlagHistoryDone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let HistoryDone = FileEventFlags(kFSEventStreamEventFlagHistoryDone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:32:23: warning: static property 'RootChanged' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let RootChanged = FileEventFlags(kFSEventStreamEventFlagRootChanged)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:32:23: note: annotate 'RootChanged' with '@MainActor' if property should only be accessed from the main actor
    public static let RootChanged = FileEventFlags(kFSEventStreamEventFlagRootChanged)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let RootChanged = FileEventFlags(kFSEventStreamEventFlagRootChanged)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:34:23: warning: static property 'Mount' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Mount = FileEventFlags(kFSEventStreamEventFlagMount)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:34:23: note: annotate 'Mount' with '@MainActor' if property should only be accessed from the main actor
    public static let Mount = FileEventFlags(kFSEventStreamEventFlagMount)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Mount = FileEventFlags(kFSEventStreamEventFlagMount)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:35:23: warning: static property 'Unmount' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Unmount = FileEventFlags(kFSEventStreamEventFlagUnmount)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:35:23: note: annotate 'Unmount' with '@MainActor' if property should only be accessed from the main actor
    public static let Unmount = FileEventFlags(kFSEventStreamEventFlagUnmount)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Unmount = FileEventFlags(kFSEventStreamEventFlagUnmount)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:37:23: warning: static property 'ItemCreated' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemCreated = FileEventFlags(kFSEventStreamEventFlagItemCreated)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:37:23: note: annotate 'ItemCreated' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemCreated = FileEventFlags(kFSEventStreamEventFlagItemCreated)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemCreated = FileEventFlags(kFSEventStreamEventFlagItemCreated)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:38:23: warning: static property 'ItemRemoved' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemRemoved = FileEventFlags(kFSEventStreamEventFlagItemRemoved)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:38:23: note: annotate 'ItemRemoved' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemRemoved = FileEventFlags(kFSEventStreamEventFlagItemRemoved)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemRemoved = FileEventFlags(kFSEventStreamEventFlagItemRemoved)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:39:23: warning: static property 'ItemInodeMetaMod' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemInodeMetaMod = FileEventFlags(kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:39:23: note: annotate 'ItemInodeMetaMod' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemInodeMetaMod = FileEventFlags(kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemInodeMetaMod = FileEventFlags(kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:40:23: warning: static property 'ItemRenamed' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemRenamed = FileEventFlags(kFSEventStreamEventFlagItemRenamed)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:40:23: note: annotate 'ItemRenamed' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemRenamed = FileEventFlags(kFSEventStreamEventFlagItemRenamed)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemRenamed = FileEventFlags(kFSEventStreamEventFlagItemRenamed)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:41:23: warning: static property 'ItemModified' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemModified = FileEventFlags(kFSEventStreamEventFlagItemModified)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:41:23: note: annotate 'ItemModified' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemModified = FileEventFlags(kFSEventStreamEventFlagItemModified)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemModified = FileEventFlags(kFSEventStreamEventFlagItemModified)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:42:23: warning: static property 'ItemFinderInfoMod' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemFinderInfoMod = FileEventFlags(kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:42:23: note: annotate 'ItemFinderInfoMod' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemFinderInfoMod = FileEventFlags(kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemFinderInfoMod = FileEventFlags(kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:43:23: warning: static property 'ItemChangeOwner' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemChangeOwner = FileEventFlags(kFSEventStreamEventFlagItemChangeOwner)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:43:23: note: annotate 'ItemChangeOwner' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemChangeOwner = FileEventFlags(kFSEventStreamEventFlagItemChangeOwner)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemChangeOwner = FileEventFlags(kFSEventStreamEventFlagItemChangeOwner)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:44:23: warning: static property 'ItemXattrMod' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemXattrMod = FileEventFlags(kFSEventStreamEventFlagItemXattrMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:44:23: note: annotate 'ItemXattrMod' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemXattrMod = FileEventFlags(kFSEventStreamEventFlagItemXattrMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemXattrMod = FileEventFlags(kFSEventStreamEventFlagItemXattrMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:45:23: warning: static property 'ItemIsFile' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsFile = FileEventFlags(kFSEventStreamEventFlagItemIsFile)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:45:23: note: annotate 'ItemIsFile' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsFile = FileEventFlags(kFSEventStreamEventFlagItemIsFile)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsFile = FileEventFlags(kFSEventStreamEventFlagItemIsFile)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:46:23: warning: static property 'ItemIsDir' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsDir = FileEventFlags(kFSEventStreamEventFlagItemIsDir)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:46:23: note: annotate 'ItemIsDir' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsDir = FileEventFlags(kFSEventStreamEventFlagItemIsDir)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsDir = FileEventFlags(kFSEventStreamEventFlagItemIsDir)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:47:23: warning: static property 'ItemIsSymlink' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsSymlink = FileEventFlags(kFSEventStreamEventFlagItemIsSymlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:47:23: note: annotate 'ItemIsSymlink' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsSymlink = FileEventFlags(kFSEventStreamEventFlagItemIsSymlink)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsSymlink = FileEventFlags(kFSEventStreamEventFlagItemIsSymlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:48:23: warning: static property 'ItemIsHardLink' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:48:23: note: annotate 'ItemIsHardLink' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsHardlink)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsHardlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:49:23: warning: static property 'ItemIsLastHardLink' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsLastHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:49:23: note: annotate 'ItemIsLastHardLink' with '@MainActor' if property should only be accessed from the main actor
    public static let ItemIsLastHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsLastHardLink = FileEventFlags(kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:51:23: warning: static property 'OwnEvent' is not concurrency-safe because non-'Sendable' type 'FileEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let OwnEvent = FileEventFlags(kFSEventStreamEventFlagOwnEvent)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:16:15: note: consider making struct 'FileEventFlags' conform to the 'Sendable' protocol
public struct FileEventFlags: OptionSet {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:51:23: note: annotate 'OwnEvent' with '@MainActor' if property should only be accessed from the main actor
    public static let OwnEvent = FileEventFlags(kFSEventStreamEventFlagOwnEvent)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let OwnEvent = FileEventFlags(kFSEventStreamEventFlagOwnEvent)
                      ^
    nonisolated(unsafe)
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1730409732645135-swift-frontend-Witness-FileEvent.swift-arm64_apple_macos10.10-o-Onone-3990487139.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 4.2506 seconds (8.3593 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0212 (  1.1%)   0.0380 (  1.6%)   0.0592 (  1.4%)   2.0936 ( 25.0%)  parse-and-resolve-imports
   0.0211 (  1.1%)   0.0379 (  1.6%)   0.0590 (  1.4%)   2.0934 ( 25.0%)  Import resolution
   0.4251 ( 22.3%)   0.6709 ( 28.6%)   1.0960 ( 25.8%)   1.0967 ( 13.1%)  SemanticDeclAttrsRequest
   0.2240 ( 11.8%)   0.3376 ( 14.4%)   0.5615 ( 13.2%)   0.5620 (  6.7%)  ActorIsolationRequest
   0.2747 ( 14.4%)   0.2201 (  9.4%)   0.4947 ( 11.6%)   0.4947 (  5.9%)  USRGenerationRequest
   0.1018 (  5.3%)   0.1227 (  5.2%)   0.2245 (  5.3%)   0.2246 (  2.7%)  InterfaceTypeRequest
   0.0917 (  4.8%)   0.0886 (  3.8%)   0.1803 (  4.2%)   0.1805 (  2.2%)  CollectOverriddenDeclsRequest
   0.0761 (  4.0%)   0.0548 (  2.3%)   0.1309 (  3.1%)   0.1309 (  1.6%)  build-rewrite-system
   0.0626 (  3.3%)   0.0463 (  2.0%)   0.1090 (  2.6%)   0.1088 (  1.3%)  ProvideDefaultImplForRequest
   0.0419 (  2.2%)   0.0651 (  2.8%)   0.1069 (  2.5%)   0.1070 (  1.3%)  perform-sema
   0.0419 (  2.2%)   0.0651 (  2.8%)   0.1069 (  2.5%)   0.1069 (  1.3%)  TypeCheckSourceFileRequest
   0.0418 (  2.2%)   0.0650 (  2.8%)   0.1068 (  2.5%)   0.1068 (  1.3%)  Type checking and Semantic analysis
   0.0264 (  1.4%)   0.0410 (  1.7%)   0.0674 (  1.6%)   0.0674 (  0.8%)  typecheck-decl
   0.0283 (  1.5%)   0.0391 (  1.7%)   0.0674 (  1.6%)   0.0674 (  0.8%)  IsDynamicRequest
   0.0246 (  1.3%)   0.0345 (  1.5%)   0.0591 (  1.4%)   0.0590 (  0.7%)  AttachedPropertyWrappersRequest
   0.0244 (  1.3%)   0.0321 (  1.4%)   0.0565 (  1.3%)   0.0566 (  0.7%)  QualifiedLookupRequest
   0.0215 (  1.1%)   0.0328 (  1.4%)   0.0543 (  1.3%)   0.0543 (  0.6%)  typecheck-expr
   0.0013 (  0.1%)   0.0075 (  0.3%)   0.0088 (  0.2%)   0.0468 (  0.6%)  load-stdlib
   0.0168 (  0.9%)   0.0265 (  1.1%)   0.0433 (  1.0%)   0.0433 (  0.5%)  TypeCheckFunctionBodyRequest
   0.0162 (  0.9%)   0.0258 (  1.1%)   0.0420 (  1.0%)   0.0420 (  0.5%)  typecheck-stmt
   0.0216 (  1.1%)   0.0203 (  0.9%)   0.0419 (  1.0%)   0.0418 (  0.5%)  ExpandPeerMacroRequest
   0.0233 (  1.2%)   0.0152 (  0.6%)   0.0385 (  0.9%)   0.0386 (  0.5%)  LookupConformanceInModuleRequest
   0.0157 (  0.8%)   0.0164 (  0.7%)   0.0321 (  0.8%)   0.0323 (  0.4%)  ExecuteSILPipelineRequest
   0.0124 (  0.7%)   0.0186 (  0.8%)   0.0310 (  0.7%)   0.0310 (  0.4%)  ResolveValueWitnessesRequest
   0.0209 (  1.1%)   0.0093 (  0.4%)   0.0302 (  0.7%)   0.0301 (  0.4%)  LookupAllConformancesInContextRequest
   0.0159 (  0.8%)   0.0130 (  0.6%)   0.0289 (  0.7%)   0.0288 (  0.3%)  HasIsolatedSelfRequest
   0.0149 (  0.8%)   0.0137 (  0.6%)   0.0286 (  0.7%)   0.0286 (  0.3%)  ModuleQualifiedLookupRequest
   0.0158 (  0.8%)   0.0114 (  0.5%)   0.0273 (  0.6%)   0.0273 (  0.3%)  LookupInModuleRequest
   0.0145 (  0.8%)   0.0091 (  0.4%)   0.0236 (  0.6%)   0.0236 (  0.3%)  ExpandMemberAttributeMacros
   0.0088 (  0.5%)   0.0145 (  0.6%)   0.0233 (  0.5%)   0.0233 (  0.3%)  HasInitAccessorRequest
   0.0130 (  0.7%)   0.0091 (  0.4%)   0.0221 (  0.5%)   0.0220 (  0.3%)  DirectLookupRequest
   0.0079 (  0.4%)   0.0116 (  0.5%)   0.0195 (  0.5%)   0.0195 (  0.2%)  PatternBindingEntryRequest
   0.0109 (  0.6%)   0.0079 (  0.3%)   0.0189 (  0.4%)   0.0188 (  0.2%)  GlobalActorAttributeRequest
   0.0079 (  0.4%)   0.0101 (  0.4%)   0.0180 (  0.4%)   0.0181 (  0.2%)  IRGenRequest
   0.0095 (  0.5%)   0.0083 (  0.4%)   0.0179 (  0.4%)   0.0179 (  0.2%)  import-clang-decl
   0.0097 (  0.5%)   0.0073 (  0.3%)   0.0170 (  0.4%)   0.0169 (  0.2%)  IsFinalRequest
   0.0071 (  0.4%)   0.0097 (  0.4%)   0.0169 (  0.4%)   0.0169 (  0.2%)  ASTLoweringRequest
   0.0068 (  0.4%)   0.0093 (  0.4%)   0.0161 (  0.4%)   0.0161 (  0.2%)  SILgen-decl
   0.0111 (  0.6%)   0.0049 (  0.2%)   0.0160 (  0.4%)   0.0160 (  0.2%)  AbstractGenericSignatureRequest
   0.0084 (  0.4%)   0.0066 (  0.3%)   0.0150 (  0.4%)   0.0150 (  0.2%)  DynamicallyReplacedDeclRequest
   0.0063 (  0.3%)   0.0083 (  0.4%)   0.0146 (  0.3%)   0.0147 (  0.2%)  IRGen
   0.0057 (  0.3%)   0.0061 (  0.3%)   0.0118 (  0.3%)   0.0118 (  0.1%)  UnqualifiedLookupRequest
   0.0056 (  0.3%)   0.0059 (  0.3%)   0.0115 (  0.3%)   0.0115 (  0.1%)  performUnqualifiedLookup
   0.0043 (  0.2%)   0.0057 (  0.2%)   0.0099 (  0.2%)   0.0099 (  0.1%)  SILGen-function
   0.0051 (  0.3%)   0.0039 (  0.2%)   0.0090 (  0.2%)   0.0090 (  0.1%)  OverriddenDeclsRequest
   0.0040 (  0.2%)   0.0033 (  0.1%)   0.0073 (  0.2%)   0.0073 (  0.1%)  AccessLevelRequest
   0.0035 (  0.2%)   0.0028 (  0.1%)   0.0063 (  0.1%)   0.0062 (  0.1%)  HasStorageRequest
   0.0027 (  0.1%)   0.0035 (  0.1%)   0.0061 (  0.1%)   0.0061 (  0.1%)  precheck-expr
   0.0031 (  0.2%)   0.0022 (  0.1%)   0.0053 (  0.1%)   0.0055 (  0.1%)  LifetimeDependenceInfoRequest
   0.0018 (  0.1%)   0.0030 (  0.1%)   0.0048 (  0.1%)   0.0048 (  0.1%)  PotentialMacroExpansionsInContextRequest
   0.0038 (  0.2%)   0.0006 (  0.0%)   0.0043 (  0.1%)   0.0045 (  0.1%)  SIL optimization
   0.0014 (  0.1%)   0.0029 (  0.1%)   0.0044 (  0.1%)   0.0044 (  0.1%)  StoredPropertiesRequest
   0.0012 (  0.1%)   0.0018 (  0.1%)   0.0031 (  0.1%)   0.0031 (  0.0%)  ValueWitnessRequest
   0.0008 (  0.0%)   0.0013 (  0.1%)   0.0020 (  0.0%)   0.0020 (  0.0%)  TypeWitnessRequest
   0.0007 (  0.0%)   0.0012 (  0.1%)   0.0019 (  0.0%)   0.0019 (  0.0%)  ResolveTypeWitnessesRequest
   0.0010 (  0.1%)   0.0008 (  0.0%)   0.0017 (  0.0%)   0.0017 (  0.0%)  SPIGroupsRequest
   0.0010 (  0.1%)   0.0008 (  0.0%)   0.0018 (  0.0%)   0.0017 (  0.0%)  SimpleDidSetRequest
   0.0007 (  0.0%)   0.0009 (  0.0%)   0.0016 (  0.0%)   0.0016 (  0.0%)  GenericSignatureRequest
   0.0009 (  0.0%)   0.0006 (  0.0%)   0.0014 (  0.0%)   0.0015 (  0.0%)  IsActorRequest
   0.0004 (  0.0%)   0.0010 (  0.0%)   0.0014 (  0.0%)   0.0014 (  0.0%)  SynthesizeMemberwiseInitRequest
   0.0005 (  0.0%)   0.0009 (  0.0%)   0.0014 (  0.0%)   0.0014 (  0.0%)  ResolveTypeRequest
   0.0008 (  0.0%)   0.0005 (  0.0%)   0.0013 (  0.0%)   0.0014 (  0.0%)  GenericParamListRequest
   0.0010 (  0.1%)   0.0003 (  0.0%)   0.0013 (  0.0%)   0.0013 (  0.0%)  RequirementSignatureRequest
   0.0008 (  0.0%)   0.0004 (  0.0%)   0.0012 (  0.0%)   0.0012 (  0.0%)  load-all-members
   0.0004 (  0.0%)   0.0008 (  0.0%)   0.0012 (  0.0%)   0.0012 (  0.0%)  PatternTypeRequest
   0.0003 (  0.0%)   0.0009 (  0.0%)   0.0012 (  0.0%)   0.0012 (  0.0%)  NamingPatternRequest
   0.0007 (  0.0%)   0.0004 (  0.0%)   0.0012 (  0.0%)   0.0012 (  0.0%)  CompareDeclSpecializationRequest
   0.0007 (  0.0%)   0.0005 (  0.0%)   0.0012 (  0.0%)   0.0012 (  0.0%)  InheritedDeclsReferencedRequest
   0.0005 (  0.0%)   0.0005 (  0.0%)   0.0009 (  0.0%)   0.0009 (  0.0%)  OpaqueReadOwnershipRequest
   0.0004 (  0.0%)   0.0005 (  0.0%)   0.0008 (  0.0%)   0.0008 (  0.0%)  ResolveImplicitMemberRequest
   0.0004 (  0.0%)   0.0004 (  0.0%)   0.0008 (  0.0%)   0.0008 (  0.0%)  ProtocolDependenciesRequest
   0.0004 (  0.0%)   0.0003 (  0.0%)   0.0008 (  0.0%)   0.0007 (  0.0%)  ExpandExtensionMacros
   0.0003 (  0.0%)   0.0003 (  0.0%)   0.0006 (  0.0%)   0.0006 (  0.0%)  DefaultInitializerIsolation
   0.0003 (  0.0%)   0.0002 (  0.0%)   0.0006 (  0.0%)   0.0006 (  0.0%)  IsDistributedActorRequest
   0.0004 (  0.0%)   0.0001 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  AllInheritedProtocolsRequest
   0.0003 (  0.0%)   0.0002 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  ImplicitKnownProtocolConformanceRequest
   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  IsGetterMutatingRequest
   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  LookupInfixOperatorRequest
   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  ValidatePrecedenceGroupRequest
   0.0001 (  0.0%)   0.0004 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  ABIMembersRequest
   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  LookupPrecedenceGroupRequest
   0.0002 (  0.0%)   0.0002 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  IsObjCRequest
   0.0002 (  0.0%)   0.0002 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  ParseTopLevelDeclsRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  ParseSourceFileRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  PatternBindingCheckedAndContextualizedInitRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  ConditionalRequirementsRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0003 (  0.0%)  CheckRedeclarationRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  DefaultTypeRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ParseAbstractFunctionBodyRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  HasDynamicMemberLookupAttributeRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  InheritedProtocolsRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  StorageImplInfoRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  SemanticUnavailableAttrRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  HasMemberwiseInitRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsNonUserModuleRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsImplicitlyUnwrappedOptionalRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  UnderlyingTypeDeclsReferencedRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ExtendedNominalRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  AssociatedConformanceRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  HasCircularInheritedProtocolsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  StructuralRequirementsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ApplyAccessNoteRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  DirectOperatorLookupRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  InheritedTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  SuperclassDeclRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  AllMembersRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  RequiresOpaqueAccessorsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)  ParamSpecifierRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  FragileFunctionKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ProtocolRequirementsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasUserDefinedDesignatedInitRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DirectPrecedenceGroupLookupRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResultTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandChildTypeRefinementContextsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InitAccessorPropertiesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ClassAncestryFlagsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SynthesizeAccessorRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExtendedTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  MemberwiseInitPropertiesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ReferencedAssociatedTypesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResultBuilderTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsFunctionBodySkippedRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsStaticRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  RawCommentRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsAccessorTransparentRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  LocalDiscriminatorsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PrimaryAssociatedTypesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfBoundsFromWhereClauseRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperAuxiliaryVariablesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperMutabilityRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsSetterMutatingRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResolvePatternRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentWeakLinkedImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CxxRecordSemantics
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  StoredPropertiesAndMissingMembersRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandAccessorMacros
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfAccessKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentImplementationOnlyImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  RequiresOpaqueModifyCoroutineRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  LocalTypeDeclsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ObjCInterfaceAndImplementationRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperInitializerInfoRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperBackingPropertyTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasDefaultInitRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ProtocolRequiresClassRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  TypeAliasRequirementsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AttachedResultBuilderRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExistentialConformsToSelfRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PublicSymbolsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PreCheckFunctionBodyRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PolymorphicEffectKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ConformanceAccessScopeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  BodyInitKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandBodyMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandSynthesizedMemberMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PreCheckReturnStmtRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SynthesizeMainFunctionRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentSPIOnlyImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasImportsMatchingFlagRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AreAllStoredPropertiesDefaultInitableRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InitKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AttachedPropertyWrapperTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandPreambleMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DefaultDefinitionTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PrimarySourceFilesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ModuleImplicitImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfBoundsFromGenericSignatureRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsABICompatibleOverrideRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DefaultAndMaxAccessLevelRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentAccessLevelOnImportSameFileRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SetterAccessLevelRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DefaultArgumentTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SpecializeAttrTargetDeclRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentAccessLevelOnImport
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   1.9050 (100.0%)   2.3456 (100.0%)   4.2506 (100.0%)   8.3593 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.6183 seconds (5.7274 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.6834 (100.0%)   1.9349 (100.0%)   3.6183 (100.0%)   5.7274 (100.0%)  Building Target
   1.6834 (100.0%)   1.9349 (100.0%)   3.6183 (100.0%)   5.7274 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ Witness.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/Witness.swift (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Witness/Witness.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=2 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-bare-slash-regex -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 /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources -Xcc -DDEBUG\=1 -module-name Witness -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.o -index-unit-output-path /Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1730409732644302-swift-frontend-Witness-Witness.swift-arm64_apple_macos10.10-o-Onone-707167343.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 7.5180 seconds (7.5739 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.4503 ( 31.3%)   0.4919 ( 17.1%)   1.9422 ( 25.8%)   1.9510 ( 25.8%)  parse-and-resolve-imports
   1.4503 ( 31.3%)   0.4917 ( 17.1%)   1.9420 ( 25.8%)   1.9507 ( 25.8%)  Import resolution
   0.4649 ( 10.0%)   0.7113 ( 24.7%)   1.1763 ( 15.6%)   1.1800 ( 15.6%)  SemanticDeclAttrsRequest
   0.2385 (  5.1%)   0.3459 ( 12.0%)   0.5844 (  7.8%)   0.5860 (  7.7%)  ActorIsolationRequest
   0.3011 (  6.5%)   0.2173 (  7.5%)   0.5184 (  6.9%)   0.5204 (  6.9%)  USRGenerationRequest
   0.1080 (  2.3%)   0.1212 (  4.2%)   0.2292 (  3.0%)   0.2297 (  3.0%)  InterfaceTypeRequest
   0.1004 (  2.2%)   0.0956 (  3.3%)   0.1960 (  2.6%)   0.1967 (  2.6%)  CollectOverriddenDeclsRequest
   0.0694 (  1.5%)   0.0508 (  1.8%)   0.1203 (  1.6%)   0.1206 (  1.6%)  ProvideDefaultImplForRequest
   0.0813 (  1.8%)   0.0375 (  1.3%)   0.1188 (  1.6%)   0.1194 (  1.6%)  build-rewrite-system
   0.0310 (  0.7%)   0.0405 (  1.4%)   0.0715 (  1.0%)   0.0719 (  0.9%)  IsDynamicRequest
   0.0264 (  0.6%)   0.0347 (  1.2%)   0.0611 (  0.8%)   0.0613 (  0.8%)  AttachedPropertyWrappersRequest
   0.0232 (  0.5%)   0.0279 (  1.0%)   0.0511 (  0.7%)   0.0512 (  0.7%)  QualifiedLookupRequest
   0.0225 (  0.5%)   0.0205 (  0.7%)   0.0430 (  0.6%)   0.0430 (  0.6%)  ExpandPeerMacroRequest
   0.0225 (  0.5%)   0.0136 (  0.5%)   0.0361 (  0.5%)   0.0362 (  0.5%)  LookupConformanceInModuleRequest
   0.0013 (  0.0%)   0.0073 (  0.3%)   0.0086 (  0.1%)   0.0338 (  0.4%)  load-stdlib
   0.0218 (  0.5%)   0.0106 (  0.4%)   0.0324 (  0.4%)   0.0325 (  0.4%)  LookupAllConformancesInContextRequest
   0.0165 (  0.4%)   0.0119 (  0.4%)   0.0284 (  0.4%)   0.0285 (  0.4%)  HasIsolatedSelfRequest
   0.0150 (  0.3%)   0.0091 (  0.3%)   0.0240 (  0.3%)   0.0244 (  0.3%)  ExpandMemberAttributeMacros
   0.0135 (  0.3%)   0.0106 (  0.4%)   0.0242 (  0.3%)   0.0242 (  0.3%)  ModuleQualifiedLookupRequest
   0.0121 (  0.3%)   0.0083 (  0.3%)   0.0205 (  0.3%)   0.0205 (  0.3%)  DirectLookupRequest
   0.0116 (  0.3%)   0.0079 (  0.3%)   0.0196 (  0.3%)   0.0194 (  0.3%)  GlobalActorAttributeRequest
   0.0081 (  0.2%)   0.0104 (  0.4%)   0.0185 (  0.2%)   0.0187 (  0.2%)  HasInitAccessorRequest
   0.0101 (  0.2%)   0.0075 (  0.3%)   0.0176 (  0.2%)   0.0177 (  0.2%)  IsFinalRequest
   0.0114 (  0.2%)   0.0059 (  0.2%)   0.0173 (  0.2%)   0.0173 (  0.2%)  LookupInModuleRequest
   0.0087 (  0.2%)   0.0067 (  0.2%)   0.0154 (  0.2%)   0.0158 (  0.2%)  DynamicallyReplacedDeclRequest
   0.0087 (  0.2%)   0.0065 (  0.2%)   0.0152 (  0.2%)   0.0151 (  0.2%)  import-clang-decl
   0.0114 (  0.2%)   0.0026 (  0.1%)   0.0140 (  0.2%)   0.0141 (  0.2%)  AbstractGenericSignatureRequest
   0.0068 (  0.1%)   0.0057 (  0.2%)   0.0124 (  0.2%)   0.0125 (  0.2%)  perform-sema
   0.0068 (  0.1%)   0.0056 (  0.2%)   0.0124 (  0.2%)   0.0124 (  0.2%)  TypeCheckSourceFileRequest
   0.0067 (  0.1%)   0.0056 (  0.2%)   0.0124 (  0.2%)   0.0124 (  0.2%)  Type checking and Semantic analysis
   0.0053 (  0.1%)   0.0046 (  0.2%)   0.0099 (  0.1%)   0.0099 (  0.1%)  typecheck-decl
   0.0054 (  0.1%)   0.0039 (  0.1%)   0.0092 (  0.1%)   0.0093 (  0.1%)  OverriddenDeclsRequest
   0.0041 (  0.1%)   0.0042 (  0.1%)   0.0083 (  0.1%)   0.0083 (  0.1%)  IRGenRequest
   0.0044 (  0.1%)   0.0034 (  0.1%)   0.0078 (  0.1%)   0.0077 (  0.1%)  AccessLevelRequest
   0.0043 (  0.1%)   0.0018 (  0.1%)   0.0061 (  0.1%)   0.0075 (  0.1%)  ExecuteSILPipelineRequest
   0.0034 (  0.1%)   0.0037 (  0.1%)   0.0071 (  0.1%)   0.0071 (  0.1%)  IRGen
   0.0038 (  0.1%)   0.0030 (  0.1%)   0.0068 (  0.1%)   0.0068 (  0.1%)  typecheck-expr
   0.0033 (  0.1%)   0.0035 (  0.1%)   0.0068 (  0.1%)   0.0068 (  0.1%)  DefaultArgumentExprRequest
   0.0038 (  0.1%)   0.0029 (  0.1%)   0.0067 (  0.1%)   0.0068 (  0.1%)  HasStorageRequest
   0.0032 (  0.1%)   0.0023 (  0.1%)   0.0055 (  0.1%)   0.0055 (  0.1%)  LifetimeDependenceInfoRequest
   0.0029 (  0.1%)   0.0022 (  0.1%)   0.0051 (  0.1%)   0.0051 (  0.1%)  PatternBindingEntryRequest
   0.0026 (  0.1%)   0.0021 (  0.1%)   0.0046 (  0.1%)   0.0046 (  0.1%)  NamingPatternRequest
   0.0016 (  0.0%)   0.0019 (  0.1%)   0.0035 (  0.0%)   0.0035 (  0.0%)  PotentialMacroExpansionsInContextRequest
   0.0019 (  0.0%)   0.0011 (  0.0%)   0.0029 (  0.0%)   0.0029 (  0.0%)  ASTLoweringRequest
   0.0018 (  0.0%)   0.0011 (  0.0%)   0.0029 (  0.0%)   0.0029 (  0.0%)  SILgen-decl
   0.0015 (  0.0%)   0.0014 (  0.0%)   0.0029 (  0.0%)   0.0029 (  0.0%)  ValueWitnessRequest
   0.0014 (  0.0%)   0.0009 (  0.0%)   0.0024 (  0.0%)   0.0024 (  0.0%)  TypeCheckFunctionBodyRequest
   0.0014 (  0.0%)   0.0005 (  0.0%)   0.0020 (  0.0%)   0.0020 (  0.0%)  ResolveTypeRequest
   0.0019 (  0.0%)   0.0000 (  0.0%)   0.0019 (  0.0%)   0.0019 (  0.0%)  SIL optimization
   0.0011 (  0.0%)   0.0008 (  0.0%)   0.0019 (  0.0%)   0.0018 (  0.0%)  SPIGroupsRequest
   0.0010 (  0.0%)   0.0008 (  0.0%)   0.0018 (  0.0%)   0.0018 (  0.0%)  SimpleDidSetRequest
   0.0009 (  0.0%)   0.0007 (  0.0%)   0.0016 (  0.0%)   0.0017 (  0.0%)  IsActorRequest
   0.0009 (  0.0%)   0.0006 (  0.0%)   0.0015 (  0.0%)   0.0015 (  0.0%)  TypeWitnessRequest
   0.0011 (  0.0%)   0.0004 (  0.0%)   0.0015 (  0.0%)   0.0015 (  0.0%)  UnqualifiedLookupRequest
   0.0008 (  0.0%)   0.0006 (  0.0%)   0.0015 (  0.0%)   0.0015 (  0.0%)  StoredPropertiesRequest
   0.0008 (  0.0%)   0.0006 (  0.0%)   0.0014 (  0.0%)   0.0014 (  0.0%)  typecheck-stmt
   0.0009 (  0.0%)   0.0005 (  0.0%)   0.0014 (  0.0%)   0.0014 (  0.0%)  ResolveTypeWitnessesRequest
   0.0008 (  0.0%)   0.0005 (  0.0%)   0.0014 (  0.0%)   0.0014 (  0.0%)  GenericParamListRequest
   0.0011 (  0.0%)   0.0003 (  0.0%)   0.0014 (  0.0%)   0.0014 (  0.0%)  performUnqualifiedLookup
   0.0008 (  0.0%)   0.0005 (  0.0%)   0.0013 (  0.0%)   0.0013 (  0.0%)  SILGen-function
   0.0005 (  0.0%)   0.0006 (  0.0%)   0.0011 (  0.0%)   0.0012 (  0.0%)  GenericSignatureRequest
   0.0008 (  0.0%)   0.0004 (  0.0%)   0.0012 (  0.0%)   0.0012 (  0.0%)  load-all-members
   0.0009 (  0.0%)   0.0003 (  0.0%)   0.0012 (  0.0%)   0.0012 (  0.0%)  RequirementSignatureRequest
   0.0007 (  0.0%)   0.0004 (  0.0%)   0.0011 (  0.0%)   0.0011 (  0.0%)  CompareDeclSpecializationRequest
   0.0005 (  0.0%)   0.0004 (  0.0%)   0.0009 (  0.0%)   0.0010 (  0.0%)  InheritedDeclsReferencedRequest
   0.0005 (  0.0%)   0.0003 (  0.0%)   0.0008 (  0.0%)   0.0008 (  0.0%)  ProtocolDependenciesRequest
   0.0004 (  0.0%)   0.0003 (  0.0%)   0.0007 (  0.0%)   0.0007 (  0.0%)  ExpandExtensionMacros
   0.0006 (  0.0%)   0.0001 (  0.0%)   0.0007 (  0.0%)   0.0007 (  0.0%)  PatternTypeRequest
   0.0004 (  0.0%)   0.0002 (  0.0%)   0.0007 (  0.0%)   0.0007 (  0.0%)  precheck-expr
   0.0004 (  0.0%)   0.0002 (  0.0%)   0.0006 (  0.0%)   0.0006 (  0.0%)  UnderlyingTypeRequest
   0.0003 (  0.0%)   0.0003 (  0.0%)   0.0006 (  0.0%)   0.0006 (  0.0%)  IsObjCRequest
   0.0004 (  0.0%)   0.0002 (  0.0%)   0.0006 (  0.0%)   0.0006 (  0.0%)  ImplicitKnownProtocolConformanceRequest
   0.0004 (  0.0%)   0.0002 (  0.0%)   0.0005 (  0.0%)   0.0006 (  0.0%)  IsDistributedActorRequest
   0.0004 (  0.0%)   0.0001 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  AllInheritedProtocolsRequest
   0.0003 (  0.0%)   0.0001 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  DefaultInitializerIsolation
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  ParseTopLevelDeclsRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  ResolveImplicitMemberRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  ParseSourceFileRequest
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0002 (  0.0%)  ConditionalRequirementsRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  ValidatePrecedenceGroupRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  LookupPrecedenceGroupRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  HasDynamicMemberLookupAttributeRequest
   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  InheritedProtocolsRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsNonUserModuleRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  DefaultTypeRequest
   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ExtendedNominalRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  UnderlyingTypeDeclsReferencedRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  StructuralRequirementsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  HasMemberwiseInitRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  HasCircularInheritedProtocolsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsImplicitlyUnwrappedOptionalRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ParseMembersRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ABIMembersRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ExpandChildTypeRefinementContextsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  SuperclassDeclRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  PreCheckFunctionBodyRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ApplyAccessNoteRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  RequiresOpaqueAccessorsRequest
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  ParseAbstractFunctionBodyRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  OpaqueReadOwnershipRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  IsGetterMutatingRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  LocalDiscriminatorsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  HasUserDefinedDesignatedInitRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  NeedsNewVTableEntryRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  StoredPropertiesAndMissingMembersRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DirectOperatorLookupRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckRedeclarationRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SynthesizeAccessorRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DirectPrecedenceGroupLookupRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  StorageImplInfoRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ReferencedAssociatedTypesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ClassAncestryFlagsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasDefaultInitRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ParamSpecifierRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AllMembersRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PrimaryAssociatedTypesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResultBuilderTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfBoundsFromWhereClauseRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsStaticRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SemanticUnavailableAttrRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfAccessKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  FragileFunctionKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentImplementationOnlyImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CxxRecordSemantics
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AttachedResultBuilderRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  LocalTypeDeclsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InitAccessorPropertiesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PrimarySourceFilesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentWeakLinkedImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InheritedTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ProtocolRequiresClassRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperAuxiliaryVariablesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsFunctionBodySkippedRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  TypeAliasRequirementsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResolvePatternRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandAccessorMacros
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  RawCommentRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PublicSymbolsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  MemberwiseInitPropertiesRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PreCheckReturnStmtRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandBodyMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ConformanceAccessScopeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ObjCInterfaceAndImplementationRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  BodyInitKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperMutabilityRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsSetterMutatingRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExistentialConformsToSelfRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  HasImportsMatchingFlagRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ResultTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsABICompatibleOverrideRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ModuleImplicitImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SynthesizeMainFunctionRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  RequiresOpaqueModifyCoroutineRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  InitKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PropertyWrapperInitializerInfoRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentSPIOnlyImportsRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandSynthesizedMemberMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentAccessLevelOnImport
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  EnumRawTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  CheckInconsistentAccessLevelOnImportSameFileRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SuperclassTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsDefaultActorRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SelfBoundsFromGenericSignatureRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  DefaultDefinitionTypeRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsSingleValueStmtRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  ExpandPreambleMacroRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  PolymorphicEffectKindRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SuppressesConformanceRequest
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  IsAccessorTransparentRequest
   4.6387 (100.0%)   2.8793 (100.0%)   7.5180 (100.0%)   7.5739 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 5.6187 seconds (5.7145 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   3.2066 (100.0%)   2.4121 (100.0%)   5.6187 (100.0%)   5.7145 (100.0%)  Building Target
   3.2066 (100.0%)   2.4121 (100.0%)   5.6187 (100.0%)   5.7145 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Witness/Witness.swift (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Witness/FileEvent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Witness/Witness.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=2 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-bare-slash-regex -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 /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources -Xcc -DDEBUG\=1 -module-name Witness -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.o -index-unit-output-path /Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:86:23: warning: static property 'None' is not concurrency-safe because non-'Sendable' type 'EventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let None = EventStreamCreateFlags(kFSEventStreamCreateFlagNone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:81:15: note: consider making struct 'EventStreamCreateFlags' conform to the 'Sendable' protocol
public struct EventStreamCreateFlags: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:86:23: note: annotate 'None' with '@MainActor' if property should only be accessed from the main actor
    public static let None = EventStreamCreateFlags(kFSEventStreamCreateFlagNone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Witness/EventStream.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let None = EventStreamCreateFlags(kFSEventStreamCreateFlagNone)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for Witness (in target 'Witness' from project 'Witness')
SwiftDriver\ Compilation\ Requirements Witness normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Witness -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.10 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness-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/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Headers/Witness-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness-Swift.h (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Headers/Witness-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Modules/Witness.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftdoc (in target 'Witness' from project 'Witness')
    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/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Modules/Witness.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Modules/Witness.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.abi.json (in target 'Witness' from project 'Witness')
    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/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Modules/Witness.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Modules/Witness.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftmodule (in target 'Witness' from project 'Witness')
    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/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Modules/Witness.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Modules/Witness.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftsourceinfo (in target 'Witness' from project 'Witness')
    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/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Modules/Witness.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Witness.swift (in target 'Witness' from project 'Witness')
SwiftDriverJobDiscovery normal arm64 Compiling EventStream.swift (in target 'Witness' from project 'Witness')
SwiftDriverJobDiscovery normal arm64 Compiling FileEvent.swift (in target 'Witness' from project 'Witness')
SwiftDriver\ Compilation Witness normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Witness -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.10 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness-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/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness-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/Witness.framework/Versions/A/Witness normal (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.10 -dynamiclib -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.LinkFileList -install_name @rpath/Witness.framework/Versions/A/Witness -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.swiftmodule -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Witness
ExtractAppIntentsMetadata (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Resources --toolchain-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Witness --sdk-root /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk --xcode-version 16B40 --platform-family macOS --deployment-target 10.10 --bundle-identifier Witness --target-triple arm64-apple-macos10.10 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Witness --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Witness.DependencyMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Witness.build/Debug/Witness.build/Objects-normal/arm64/Witness.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents
note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'Witness' from project 'Witness')
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Witness.framework/Versions/A/Witness.tbd (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A/Witness -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Witness.framework/Versions/A/Witness.tbd
CodeSign /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace

    Signing Identity:     "Sign to Run Locally"

    /usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework/Versions/A
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Witness.framework
SymLink /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Witness.framework/Witness.tbd /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Witness.framework/Versions/A/Witness.tbd (in target 'Witness' from project 'Witness')
    cd /Users/admin/builder/spi-builder-workspace
    /bin/ln -sfh /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Witness.framework/Versions/A/Witness.tbd /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Witness.framework/Witness.tbd
/Users/admin/builder/spi-builder-workspace/Witness.xcodeproj: warning: The macOS deployment target 'MACOSX_DEPLOYMENT_TARGET' is set to 10.10, but the range of supported deployment target versions is 10.13 to 15.1.99. (in target 'Witness' from project 'Witness')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Witness",
  "name" : "Witness",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Witness",
      "targets" : [
        "Witness"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4",
    "4.2"
  ],
  "targets" : [
    {
      "c99name" : "WitnessTests",
      "module_type" : "SwiftTarget",
      "name" : "WitnessTests",
      "path" : "Tests/WitnessTests",
      "sources" : [
        "WitnessTests.swift"
      ],
      "target_dependencies" : [
        "Witness"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Witness",
      "module_type" : "SwiftTarget",
      "name" : "Witness",
      "path" : "Sources/Witness",
      "product_memberships" : [
        "Witness"
      ],
      "sources" : [
        "EventStream.swift",
        "FileEvent.swift",
        "Witness.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
Done.