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 FileKit, reference 6.1.0 (9006d2), with Swift 6.1 for watchOS using Xcode 16.3 on 27 Apr 2025 09:58:10 UTC.

Swift 6 data race errors: 117

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme FileKit -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

    public static let read = FilePermissions(rawValue: 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
    public static let read = FilePermissions(rawValue: 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let read = FilePermissions(rawValue: 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let write = FilePermissions(rawValue: 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
    public static let write = FilePermissions(rawValue: 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let write = FilePermissions(rawValue: 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: warning: static property 'execute' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let execute = FilePermissions(rawValue: 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: add '@MainActor' to make static property 'execute' part of global actor 'MainActor'
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[FilePermissions]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'Path' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let root = Path(separator)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
    public static let root = Path(separator)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let root = Path(separator)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: warning: initializer 'init(stringInterpolation:)' nearly matches defaulted requirement 'init(stringInterpolation:)' of protocol 'ExpressibleByStringInterpolation'
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: candidate has non-matching type '(stringInterpolation: Path...)' [with StringInterpolation = DefaultStringInterpolation]
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: move 'init(stringInterpolation:)' to another extension to silence this warning
    public init(stringInterpolation paths: Path...) {
           ^
Swift.ExpressibleByStringInterpolation.init:2:1: note: requirement 'init(stringInterpolation:)' declared here
init(stringInterpolation: Self.StringInterpolation)}
^
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: warning: var 'ReadableWritableStringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: convert 'ReadableWritableStringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
var ReadableWritableStringEncoding = String.Encoding.utf8
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: add '@MainActor' to make var 'ReadableWritableStringEncoding' part of global actor 'MainActor'
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Emitting module for FileKit (in target 'FileKit' from project 'FileKit')
SwiftDriver\ Compilation\ Requirements FileKit normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FileKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit-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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.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/FileKit.build/Debug-watchos/FileKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling NSArray+FileKit.swift, NSData+FileKit.swift, NSDataFile.swift (in target 'FileKit' from project 'FileKit')
SwiftEmitModule normal armv7k Emitting\ module\ for\ FileKit (in target 'FileKit' from project 'FileKit')
EmitSwiftModule normal armv7k (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: warning: static property 'Delete' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: add '@MainActor' to make static property 'Delete' part of global actor 'MainActor'
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: warning: static property 'Write' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: add '@MainActor' to make static property 'Write' part of global actor 'MainActor'
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: warning: static property 'Extend' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: add '@MainActor' to make static property 'Extend' part of global actor 'MainActor'
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: warning: static property 'Attribute' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: add '@MainActor' to make static property 'Attribute' part of global actor 'MainActor'
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: warning: static property 'Link' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: add '@MainActor' to make static property 'Link' part of global actor 'MainActor'
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: warning: static property 'Rename' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: add '@MainActor' to make static property 'Rename' part of global actor 'MainActor'
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: warning: static property 'Revoke' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: add '@MainActor' to make static property 'Revoke' part of global actor 'MainActor'
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: warning: static property 'Create' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: add '@MainActor' to make static property 'Create' part of global actor 'MainActor'
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: warning: static property 'All' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: add '@MainActor' to make static property 'All' part of global actor 'MainActor'
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: warning: static property 'allEvents' is not concurrency-safe because non-'Sendable' type '[DispatchFileSystemEvents]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: add '@MainActor' to make static property 'allEvents' part of global actor 'MainActor'
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: warning: static property 'jsonDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonDecoder = JSONDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: convert 'jsonDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonDecoder = JSONDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: add '@MainActor' to make static property 'jsonDecoder' part of global actor 'MainActor'
    public static var jsonDecoder = JSONDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonDecoder = JSONDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: warning: static property 'jsonEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonEncoder = JSONEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: convert 'jsonEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonEncoder = JSONEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: add '@MainActor' to make static property 'jsonEncoder' part of global actor 'MainActor'
    public static var jsonEncoder = JSONEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonEncoder = JSONEncoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: warning: static property 'propertyListDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: convert 'propertyListDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListDecoder = PropertyListDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: add '@MainActor' to make static property 'propertyListDecoder' part of global actor 'MainActor'
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: warning: static property 'propertyListEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: convert 'propertyListEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListEncoder = PropertyListEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: add '@MainActor' to make static property 'propertyListEncoder' part of global actor 'MainActor'
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:79:14: warning: associated value 'conversion' of 'Sendable'-conforming enum 'ReasonError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
        case conversion(Any)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:36:10: warning: associated value 'fileDoesNotExist(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileDoesNotExist(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:39:10: warning: associated value 'fileAlreadyExists(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileAlreadyExists(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:51:10: warning: associated value 'createFileFail(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createFileFail(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:54:10: warning: associated value 'createDirectoryFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createDirectoryFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:57:10: warning: associated value 'deleteFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case deleteFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:60:10: warning: associated value 'readFromFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case readFromFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:63:10: warning: associated value 'writeToFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case writeToFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:72:10: warning: associated value 'attributesChangeFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case attributesChangeFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let read = FilePermissions(rawValue: 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
    public static let read = FilePermissions(rawValue: 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let read = FilePermissions(rawValue: 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let write = FilePermissions(rawValue: 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
    public static let write = FilePermissions(rawValue: 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let write = FilePermissions(rawValue: 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: warning: static property 'execute' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let execute = FilePermissions(rawValue: 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: add '@MainActor' to make static property 'execute' part of global actor 'MainActor'
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[FilePermissions]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'Path' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let root = Path(separator)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
    public static let root = Path(separator)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let root = Path(separator)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: warning: initializer 'init(stringInterpolation:)' nearly matches defaulted requirement 'init(stringInterpolation:)' of protocol 'ExpressibleByStringInterpolation'
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: candidate has non-matching type '(stringInterpolation: Path...)' [with StringInterpolation = DefaultStringInterpolation]
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: move 'init(stringInterpolation:)' to another extension to silence this warning
    public init(stringInterpolation paths: Path...) {
           ^
Swift.ExpressibleByStringInterpolation.init:2:1: note: requirement 'init(stringInterpolation:)' declared here
init(stringInterpolation: Self.StringInterpolation)}
^
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: warning: var 'ReadableWritableStringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: convert 'ReadableWritableStringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
var ReadableWritableStringEncoding = String.Encoding.utf8
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: add '@MainActor' to make var 'ReadableWritableStringEncoding' part of global actor 'MainActor'
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Path.swift, Process+FileKit.swift, PropertyListType.swift (in target 'FileKit' from project 'FileKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.swiftmodule (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.swiftdoc (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.abi.json (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.swiftsourceinfo (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ FileKit.swift,\ FileKitError.swift,\ FilePermissions.swift,\ FileProtection.swift /Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift /Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift /Users/admin/builder/spi-builder-workspace/Sources/FileProtection.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: warning: static property 'jsonDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonDecoder = JSONDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: convert 'jsonDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonDecoder = JSONDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: add '@MainActor' to make static property 'jsonDecoder' part of global actor 'MainActor'
    public static var jsonDecoder = JSONDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonDecoder = JSONDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: warning: static property 'jsonEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonEncoder = JSONEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: convert 'jsonEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonEncoder = JSONEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: add '@MainActor' to make static property 'jsonEncoder' part of global actor 'MainActor'
    public static var jsonEncoder = JSONEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonEncoder = JSONEncoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: warning: static property 'propertyListDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: convert 'propertyListDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListDecoder = PropertyListDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: add '@MainActor' to make static property 'propertyListDecoder' part of global actor 'MainActor'
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: warning: static property 'propertyListEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: convert 'propertyListEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListEncoder = PropertyListEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: add '@MainActor' to make static property 'propertyListEncoder' part of global actor 'MainActor'
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:79:14: warning: associated value 'conversion' of 'Sendable'-conforming enum 'ReasonError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
        case conversion(Any)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:36:10: warning: associated value 'fileDoesNotExist(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileDoesNotExist(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:39:10: warning: associated value 'fileAlreadyExists(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileAlreadyExists(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:51:10: warning: associated value 'createFileFail(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createFileFail(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:54:10: warning: associated value 'createDirectoryFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createDirectoryFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:57:10: warning: associated value 'deleteFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case deleteFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:60:10: warning: associated value 'readFromFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case readFromFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:63:10: warning: associated value 'writeToFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case writeToFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:72:10: warning: associated value 'attributesChangeFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case attributesChangeFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let read = FilePermissions(rawValue: 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
    public static let read = FilePermissions(rawValue: 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let read = FilePermissions(rawValue: 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let write = FilePermissions(rawValue: 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
    public static let write = FilePermissions(rawValue: 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let write = FilePermissions(rawValue: 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: warning: static property 'execute' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let execute = FilePermissions(rawValue: 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: add '@MainActor' to make static property 'execute' part of global actor 'MainActor'
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[FilePermissions]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileProtection.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ FileSystemEvent.swift,\ FileSystemEventStream.swift,\ FileSystemWatcher.swift,\ FileType.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEventStream.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemWatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/FileType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEventStream.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FileSystemWatcher.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FileType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling DataFile.swift, DataType.swift, Dictionary+File.swift, DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 Compiling\ Array+File.swift,\ ArrayFile.swift,\ Bundle+FileKit.swift,\ Data+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/Array+File.swift /Users/admin/builder/spi-builder-workspace/Sources/ArrayFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Bundle+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/Data+FileKit.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Array+File.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ArrayFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Bundle+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Data+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Array+File.swift, ArrayFile.swift, Bundle+FileKit.swift, Data+FileKit.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k Compiling\ RelativePathType.swift,\ String+FileKit.swift,\ TextFile.swift /Users/admin/builder/spi-builder-workspace/Sources/RelativePathType.swift /Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/TextFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/RelativePathType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: warning: var 'ReadableWritableStringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: convert 'ReadableWritableStringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
var ReadableWritableStringEncoding = String.Encoding.utf8
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: add '@MainActor' to make var 'ReadableWritableStringEncoding' part of global actor 'MainActor'
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TextFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ NSArray+FileKit.swift,\ NSData+FileKit.swift,\ NSDataFile.swift /Users/admin/builder/spi-builder-workspace/Sources/NSArray+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/NSData+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/NSDataFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSArray+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSData+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSDataFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling RelativePathType.swift, String+FileKit.swift, TextFile.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling FileKit.swift, FileKitError.swift, FilePermissions.swift, FileProtection.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k Compiling\ DataFile.swift,\ DataType.swift,\ Dictionary+File.swift,\ DictionaryFile.swift /Users/admin/builder/spi-builder-workspace/Sources/DataFile.swift /Users/admin/builder/spi-builder-workspace/Sources/DataType.swift /Users/admin/builder/spi-builder-workspace/Sources/Dictionary+File.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DataFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DataType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Dictionary+File.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ DirectoryEnumerator.swift,\ DispatchEvent.swift,\ DispatchWatcher.swift,\ File.swift /Users/admin/builder/spi-builder-workspace/Sources/DirectoryEnumerator.swift /Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/DispatchWatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/File.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DirectoryEnumerator.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: warning: static property 'Delete' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: add '@MainActor' to make static property 'Delete' part of global actor 'MainActor'
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: warning: static property 'Write' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: add '@MainActor' to make static property 'Write' part of global actor 'MainActor'
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: warning: static property 'Extend' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: add '@MainActor' to make static property 'Extend' part of global actor 'MainActor'
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: warning: static property 'Attribute' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: add '@MainActor' to make static property 'Attribute' part of global actor 'MainActor'
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: warning: static property 'Link' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: add '@MainActor' to make static property 'Link' part of global actor 'MainActor'
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: warning: static property 'Rename' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: add '@MainActor' to make static property 'Rename' part of global actor 'MainActor'
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: warning: static property 'Revoke' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: add '@MainActor' to make static property 'Revoke' part of global actor 'MainActor'
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: warning: static property 'Create' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: add '@MainActor' to make static property 'Create' part of global actor 'MainActor'
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: warning: static property 'All' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: add '@MainActor' to make static property 'All' part of global actor 'MainActor'
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: warning: static property 'allEvents' is not concurrency-safe because non-'Sendable' type '[DispatchFileSystemEvents]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: add '@MainActor' to make static property 'allEvents' part of global actor 'MainActor'
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DispatchWatcher.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/File.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling NSDictionary+FileKit.swift, NSString+FileKit.swift, Operators.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling DirectoryEnumerator.swift, DispatchEvent.swift, DispatchWatcher.swift, File.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k Compiling\ Array+File.swift,\ ArrayFile.swift,\ Bundle+FileKit.swift,\ Data+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/Array+File.swift /Users/admin/builder/spi-builder-workspace/Sources/ArrayFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Bundle+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/Data+FileKit.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Array+File.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ArrayFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Bundle+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Data+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Image+FileKit.swift, ImageFile.swift, JSONType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64_32 Compiling\ FileSystemEvent.swift,\ FileSystemEventStream.swift,\ FileSystemWatcher.swift,\ FileType.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEventStream.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemWatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/FileType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEventStream.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/FileSystemWatcher.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/FileType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for FileKit (in target 'FileKit' from project 'FileKit')
SwiftDriver\ Compilation\ Requirements FileKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FileKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit-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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.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/FileKit.build/Debug-watchos/FileKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling FileSystemEvent.swift, FileSystemEventStream.swift, FileSystemWatcher.swift, FileType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 Compiling\ Path.swift,\ Process+FileKit.swift,\ PropertyListType.swift /Users/admin/builder/spi-builder-workspace/Sources/Path.swift /Users/admin/builder/spi-builder-workspace/Sources/Process+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/PropertyListType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Path.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'Path' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let root = Path(separator)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
    public static let root = Path(separator)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let root = Path(separator)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: warning: initializer 'init(stringInterpolation:)' nearly matches defaulted requirement 'init(stringInterpolation:)' of protocol 'ExpressibleByStringInterpolation'
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: candidate has non-matching type '(stringInterpolation: Path...)' [with StringInterpolation = DefaultStringInterpolation]
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: move 'init(stringInterpolation:)' to another extension to silence this warning
    public init(stringInterpolation paths: Path...) {
           ^
Swift.ExpressibleByStringInterpolation.init:2:1: note: requirement 'init(stringInterpolation:)' declared here
init(stringInterpolation: Self.StringInterpolation)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Process+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PropertyListType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.swiftmodule (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling NSArray+FileKit.swift, NSData+FileKit.swift, NSDataFile.swift (in target 'FileKit' from project 'FileKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.swiftdoc (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.abi.json (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/arm64-apple-watchos.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling Array+File.swift, ArrayFile.swift, Bundle+FileKit.swift, Data+FileKit.swift (in target 'FileKit' from project 'FileKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.swiftsourceinfo (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftDriver\ Compilation FileKit normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FileKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit-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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.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/FileKit.build/Debug-watchos/FileKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal armv7k Compiling\ FileKit.swift,\ FileKitError.swift,\ FilePermissions.swift,\ FileProtection.swift /Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift /Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift /Users/admin/builder/spi-builder-workspace/Sources/FileProtection.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: warning: static property 'jsonDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonDecoder = JSONDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: convert 'jsonDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonDecoder = JSONDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: add '@MainActor' to make static property 'jsonDecoder' part of global actor 'MainActor'
    public static var jsonDecoder = JSONDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonDecoder = JSONDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: warning: static property 'jsonEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonEncoder = JSONEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: convert 'jsonEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonEncoder = JSONEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: add '@MainActor' to make static property 'jsonEncoder' part of global actor 'MainActor'
    public static var jsonEncoder = JSONEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonEncoder = JSONEncoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: warning: static property 'propertyListDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: convert 'propertyListDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListDecoder = PropertyListDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: add '@MainActor' to make static property 'propertyListDecoder' part of global actor 'MainActor'
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: warning: static property 'propertyListEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: convert 'propertyListEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListEncoder = PropertyListEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: add '@MainActor' to make static property 'propertyListEncoder' part of global actor 'MainActor'
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:79:14: warning: associated value 'conversion' of 'Sendable'-conforming enum 'ReasonError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
        case conversion(Any)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:36:10: warning: associated value 'fileDoesNotExist(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileDoesNotExist(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:39:10: warning: associated value 'fileAlreadyExists(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileAlreadyExists(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:51:10: warning: associated value 'createFileFail(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createFileFail(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:54:10: warning: associated value 'createDirectoryFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createDirectoryFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:57:10: warning: associated value 'deleteFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case deleteFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:60:10: warning: associated value 'readFromFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case readFromFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:63:10: warning: associated value 'writeToFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case writeToFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:72:10: warning: associated value 'attributesChangeFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case attributesChangeFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let read = FilePermissions(rawValue: 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
    public static let read = FilePermissions(rawValue: 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let read = FilePermissions(rawValue: 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let write = FilePermissions(rawValue: 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
    public static let write = FilePermissions(rawValue: 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let write = FilePermissions(rawValue: 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: warning: static property 'execute' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let execute = FilePermissions(rawValue: 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: add '@MainActor' to make static property 'execute' part of global actor 'MainActor'
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[FilePermissions]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FileProtection.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Image+FileKit.swift,\ ImageFile.swift,\ JSONType.swift /Users/admin/builder/spi-builder-workspace/Sources/Image+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/ImageFile.swift /Users/admin/builder/spi-builder-workspace/Sources/JSONType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Image+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ImageFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/JSONType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ RelativePathType.swift,\ String+FileKit.swift,\ TextFile.swift /Users/admin/builder/spi-builder-workspace/Sources/RelativePathType.swift /Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/TextFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RelativePathType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: warning: var 'ReadableWritableStringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: convert 'ReadableWritableStringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
var ReadableWritableStringEncoding = String.Encoding.utf8
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: add '@MainActor' to make var 'ReadableWritableStringEncoding' part of global actor 'MainActor'
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TextFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling FileKit.swift, FileKitError.swift, FilePermissions.swift, FileProtection.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 Compiling\ NSDictionary+FileKit.swift,\ NSString+FileKit.swift,\ Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/NSDictionary+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/NSString+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSDictionary+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSString+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ DirectoryEnumerator.swift,\ DispatchEvent.swift,\ DispatchWatcher.swift,\ File.swift /Users/admin/builder/spi-builder-workspace/Sources/DirectoryEnumerator.swift /Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/DispatchWatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/File.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DirectoryEnumerator.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: warning: static property 'Delete' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: add '@MainActor' to make static property 'Delete' part of global actor 'MainActor'
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: warning: static property 'Write' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: add '@MainActor' to make static property 'Write' part of global actor 'MainActor'
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: warning: static property 'Extend' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: add '@MainActor' to make static property 'Extend' part of global actor 'MainActor'
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: warning: static property 'Attribute' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: add '@MainActor' to make static property 'Attribute' part of global actor 'MainActor'
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: warning: static property 'Link' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: add '@MainActor' to make static property 'Link' part of global actor 'MainActor'
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: warning: static property 'Rename' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: add '@MainActor' to make static property 'Rename' part of global actor 'MainActor'
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: warning: static property 'Revoke' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: add '@MainActor' to make static property 'Revoke' part of global actor 'MainActor'
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: warning: static property 'Create' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: add '@MainActor' to make static property 'Create' part of global actor 'MainActor'
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: warning: static property 'All' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: add '@MainActor' to make static property 'All' part of global actor 'MainActor'
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: warning: static property 'allEvents' is not concurrency-safe because non-'Sendable' type '[DispatchFileSystemEvents]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: add '@MainActor' to make static property 'allEvents' part of global actor 'MainActor'
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DispatchWatcher.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/File.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling DirectoryEnumerator.swift, DispatchEvent.swift, DispatchWatcher.swift, File.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling Path.swift, Process+FileKit.swift, PropertyListType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k Compiling\ NSArray+FileKit.swift,\ NSData+FileKit.swift,\ NSDataFile.swift /Users/admin/builder/spi-builder-workspace/Sources/NSArray+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/NSData+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/NSDataFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NSArray+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NSData+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NSDataFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling NSDictionary+FileKit.swift, NSString+FileKit.swift, Operators.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k Compiling\ Path.swift,\ Process+FileKit.swift,\ PropertyListType.swift /Users/admin/builder/spi-builder-workspace/Sources/Path.swift /Users/admin/builder/spi-builder-workspace/Sources/Process+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/PropertyListType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Path.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'Path' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let root = Path(separator)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
    public static let root = Path(separator)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let root = Path(separator)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: warning: initializer 'init(stringInterpolation:)' nearly matches defaulted requirement 'init(stringInterpolation:)' of protocol 'ExpressibleByStringInterpolation'
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: candidate has non-matching type '(stringInterpolation: Path...)' [with StringInterpolation = DefaultStringInterpolation]
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: move 'init(stringInterpolation:)' to another extension to silence this warning
    public init(stringInterpolation paths: Path...) {
           ^
Swift.ExpressibleByStringInterpolation.init:2:1: note: requirement 'init(stringInterpolation:)' declared here
init(stringInterpolation: Self.StringInterpolation)}
^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Process+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/PropertyListType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling RelativePathType.swift, String+FileKit.swift, TextFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 Compiling\ DataFile.swift,\ DataType.swift,\ Dictionary+File.swift,\ DictionaryFile.swift /Users/admin/builder/spi-builder-workspace/Sources/DataFile.swift /Users/admin/builder/spi-builder-workspace/Sources/DataType.swift /Users/admin/builder/spi-builder-workspace/Sources/Dictionary+File.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Dictionary+File.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Emitting module for FileKit (in target 'FileKit' from project 'FileKit')
SwiftDriver\ Compilation\ Requirements FileKit normal armv7k com.apple.xcode.tools.swift.compiler (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FileKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit-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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.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/FileKit.build/Debug-watchos/FileKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling DataFile.swift, DataType.swift, Dictionary+File.swift, DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k Compiling\ NSDictionary+FileKit.swift,\ NSString+FileKit.swift,\ Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/NSDictionary+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/NSString+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NSDictionary+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NSString+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/FileKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit-Swift.h (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/FileKit-Swift.h
SwiftDriverJobDiscovery normal armv7k Compiling NSArray+FileKit.swift, NSData+FileKit.swift, NSDataFile.swift (in target 'FileKit' from project 'FileKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.swiftmodule (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.swiftdoc (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.abi.json (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.swiftsourceinfo (in target 'FileKit' from project 'FileKit')
    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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ Image+FileKit.swift,\ ImageFile.swift,\ JSONType.swift /Users/admin/builder/spi-builder-workspace/Sources/Image+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/ImageFile.swift /Users/admin/builder/spi-builder-workspace/Sources/JSONType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Image+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ImageFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/JSONType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling Path.swift, Process+FileKit.swift, PropertyListType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 Compiling\ FileSystemEvent.swift,\ FileSystemEventStream.swift,\ FileSystemWatcher.swift,\ FileType.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEventStream.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemWatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/FileType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEventStream.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileSystemWatcher.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling FileKit.swift, FileKitError.swift, FilePermissions.swift, FileProtection.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal armv7k Compiling NSDictionary+FileKit.swift, NSString+FileKit.swift, Operators.swift (in target 'FileKit' from project 'FileKit')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/Binary/FileKit.o normal arm64_32 (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/Binary/FileKit.o
SwiftDriverJobDiscovery normal armv7k Compiling FileSystemEvent.swift, FileSystemEventStream.swift, FileSystemWatcher.swift, FileType.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal armv7k Compiling RelativePathType.swift, String+FileKit.swift, TextFile.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal armv7k Compiling Array+File.swift, ArrayFile.swift, Bundle+FileKit.swift, Data+FileKit.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal armv7k Compiling DirectoryEnumerator.swift, DispatchEvent.swift, DispatchWatcher.swift, File.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal armv7k Compiling DataFile.swift, DataType.swift, Dictionary+File.swift, DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal armv7k Compiling Image+FileKit.swift, ImageFile.swift, JSONType.swift (in target 'FileKit' from project 'FileKit')
SwiftDriver\ Compilation FileKit normal armv7k com.apple.xcode.tools.swift.compiler (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FileKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit-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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.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/FileKit.build/Debug-watchos/FileKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/Binary/FileKit.o normal armv7k (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/Binary/FileKit.o
SwiftDriverJobDiscovery normal arm64 Compiling FileSystemEvent.swift, FileSystemEventStream.swift, FileSystemWatcher.swift, FileType.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling Image+FileKit.swift, ImageFile.swift, JSONType.swift (in target 'FileKit' from project 'FileKit')
SwiftDriver\ Compilation FileKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FileKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit-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/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.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/FileKit.build/Debug-watchos/FileKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/Binary/FileKit.o normal arm64 (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/Binary/FileKit.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.o normal arm64\ armv7k\ arm64_32 (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/Binary/FileKit.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/Binary/FileKit.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/Binary/FileKit.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.o
ExtractAppIntentsMetadata (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name FileKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier spi-builder-workspace.FileKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/FileKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/FileKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64/FileKit.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/armv7k/FileKit.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug-watchos/FileKit.build/Objects-normal/arm64_32/FileKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 02:58:09.544 appintentsmetadataprocessor[749:4429] Starting appintentsmetadataprocessor export
2025-04-27 02:58:09.583 appintentsmetadataprocessor[749:4429] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.o (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FileKit.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FileKit",
  "name" : "FileKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "FileKit",
      "targets" : [
        "FileKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FileKitTests",
      "module_type" : "SwiftTarget",
      "name" : "FileKitTests",
      "path" : "Tests",
      "sources" : [
        "FileKitTests.swift"
      ],
      "target_dependencies" : [
        "FileKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FileKit",
      "module_type" : "SwiftTarget",
      "name" : "FileKit",
      "path" : "Sources",
      "product_memberships" : [
        "FileKit"
      ],
      "sources" : [
        "Array+File.swift",
        "ArrayFile.swift",
        "Bundle+FileKit.swift",
        "Data+FileKit.swift",
        "DataFile.swift",
        "DataType.swift",
        "Dictionary+File.swift",
        "DictionaryFile.swift",
        "DirectoryEnumerator.swift",
        "DispatchEvent.swift",
        "DispatchWatcher.swift",
        "File.swift",
        "FileKit.swift",
        "FileKitError.swift",
        "FilePermissions.swift",
        "FileProtection.swift",
        "FileSystemEvent.swift",
        "FileSystemEventStream.swift",
        "FileSystemWatcher.swift",
        "FileType.swift",
        "Image+FileKit.swift",
        "ImageFile.swift",
        "JSONType.swift",
        "NSArray+FileKit.swift",
        "NSData+FileKit.swift",
        "NSDataFile.swift",
        "NSDictionary+FileKit.swift",
        "NSString+FileKit.swift",
        "Operators.swift",
        "Path.swift",
        "Process+FileKit.swift",
        "PropertyListType.swift",
        "RelativePathType.swift",
        "String+FileKit.swift",
        "TextFile.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.