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 Pathman, reference master (e8d3e2), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 25 Apr 2025 21:20:20 UTC.

Swift 6 data race errors: 107

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Pathman -destination platform=macOS,arch=arm64 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 includeHidden = DirectoryEnumerationOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Openable.swift:13:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Empty()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Openable.swift:12:15: note: consider making struct 'Empty' conform to the 'Sendable' protocol
public struct Empty: OpenOptionable {
              ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Openable.swift:13:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Empty()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Openable.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Empty()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:17:12: warning: var 'pathSeparator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var pathSeparator: String = "/"
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:17:12: note: convert 'pathSeparator' to a 'let' constant to make 'Sendable' shared state immutable
public var pathSeparator: String = "/"
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:17:12: note: add '@MainActor' to make var 'pathSeparator' part of global actor 'MainActor'
public var pathSeparator: String = "/"
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:17:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var pathSeparator: String = "/"
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:19:13: warning: let 'processRoot' is not concurrency-safe because non-'Sendable' type 'DirectoryPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let processRoot: DirectoryPath = DirectoryPath(pathSeparator)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath.swift:2:15: note: consider making struct 'DirectoryPath' conform to the 'Sendable' protocol
public struct DirectoryPath: Path {
              ^
                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:19:13: note: add '@MainActor' to make let 'processRoot' part of global actor 'MainActor'
private let processRoot: DirectoryPath = DirectoryPath(pathSeparator)
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:19:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let processRoot: DirectoryPath = DirectoryPath(pathSeparator)
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:23:13: warning: var 'currentWorkingDirectory' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var currentWorkingDirectory = (try? getCurrentWorkingDirectory()) !! "Failed to get the initial current working directory"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:23:13: note: convert 'currentWorkingDirectory' to a 'let' constant to make 'Sendable' shared state immutable
private var currentWorkingDirectory = (try? getCurrentWorkingDirectory()) !! "Failed to get the initial current working directory"
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:23:13: note: add '@MainActor' to make var 'currentWorkingDirectory' part of global actor 'MainActor'
private var currentWorkingDirectory = (try? getCurrentWorkingDirectory()) !! "Failed to get the initial current working directory"
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:23:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var currentWorkingDirectory = (try? getCurrentWorkingDirectory()) !! "Failed to get the initial current working directory"
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift:23:23: warning: static property 'emptyReadFlags' is not concurrency-safe because non-'Sendable' type 'ReceiveFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let emptyReadFlags: ReceiveFlags = .none
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:16:15: note: consider making struct 'ReceiveFlags' conform to the 'Sendable' protocol
public struct ReceiveFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift:23:23: note: add '@MainActor' to make static property 'emptyReadFlags' part of global actor 'MainActor'
    public static let emptyReadFlags: ReceiveFlags = .none
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let emptyReadFlags: ReceiveFlags = .none
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift:24:23: warning: static property 'emptyWriteFlags' is not concurrency-safe because non-'Sendable' type 'SendFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let emptyWriteFlags: SendFlags = .none
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:14:15: note: consider making struct 'SendFlags' conform to the 'Sendable' protocol
public struct SendFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift:24:23: note: add '@MainActor' to make static property 'emptyWriteFlags' part of global actor 'MainActor'
    public static let emptyWriteFlags: SendFlags = .none
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let emptyWriteFlags: SendFlags = .none
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatOptions.swift:6:23: warning: static property 'getLinkInfo' is not concurrency-safe because non-'Sendable' type 'StatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let getLinkInfo = StatOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatOptions.swift:2:15: note: consider making struct 'StatOptions' conform to the 'Sendable' protocol
public struct StatOptions: OptionSet, Hashable {
              ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatOptions.swift:6:23: note: add '@MainActor' to make static property 'getLinkInfo' part of global actor 'MainActor'
    public static let getLinkInfo = StatOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatOptions.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let getLinkInfo = StatOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ DirectoryEnumerable.swift,\ Movable.swift,\ Openable.swift,\ Ownable.swift,\ Path.swift,\ Permissionable.swift,\ Readable.swift,\ Seekable.swift,\ Stat.swift,\ StatDescriptor.swift,\ StatPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/DirectoryEnumerable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Movable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Openable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Ownable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Permissionable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Seekable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Stat.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/StatDescriptor.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/StatPath.swift (in target 'Pathman' from project 'Pathman')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/DirectoryEnumerable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/DirectoryEnumerable.swift:4:23: warning: static property 'includeHidden' is not concurrency-safe because non-'Sendable' type 'DirectoryEnumerationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let includeHidden = DirectoryEnumerationOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/DirectoryEnumerable.swift:1:15: note: consider making struct 'DirectoryEnumerationOptions' conform to the 'Sendable' protocol
public struct DirectoryEnumerationOptions: OptionSet, Hashable {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/DirectoryEnumerable.swift:4:23: note: add '@MainActor' to make static property 'includeHidden' part of global actor 'MainActor'
    public static let includeHidden = DirectoryEnumerationOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/DirectoryEnumerable.swift:4:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let includeHidden = DirectoryEnumerationOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Movable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Openable.swift:13:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Empty()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Openable.swift:12:15: note: consider making struct 'Empty' conform to the 'Sendable' protocol
public struct Empty: OpenOptionable {
              ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Openable.swift:13:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Empty()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Openable.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Empty()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Ownable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:17:12: warning: var 'pathSeparator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var pathSeparator: String = "/"
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:17:12: note: convert 'pathSeparator' to a 'let' constant to make 'Sendable' shared state immutable
public var pathSeparator: String = "/"
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:17:12: note: add '@MainActor' to make var 'pathSeparator' part of global actor 'MainActor'
public var pathSeparator: String = "/"
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:17:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var pathSeparator: String = "/"
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:19:13: warning: let 'processRoot' is not concurrency-safe because non-'Sendable' type 'DirectoryPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let processRoot: DirectoryPath = DirectoryPath(pathSeparator)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath.swift:2:15: note: consider making struct 'DirectoryPath' conform to the 'Sendable' protocol
public struct DirectoryPath: Path {
              ^
                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:19:13: note: add '@MainActor' to make let 'processRoot' part of global actor 'MainActor'
private let processRoot: DirectoryPath = DirectoryPath(pathSeparator)
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:19:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let processRoot: DirectoryPath = DirectoryPath(pathSeparator)
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:23:13: warning: var 'currentWorkingDirectory' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var currentWorkingDirectory = (try? getCurrentWorkingDirectory()) !! "Failed to get the initial current working directory"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:23:13: note: convert 'currentWorkingDirectory' to a 'let' constant to make 'Sendable' shared state immutable
private var currentWorkingDirectory = (try? getCurrentWorkingDirectory()) !! "Failed to get the initial current working directory"
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:23:13: note: add '@MainActor' to make var 'currentWorkingDirectory' part of global actor 'MainActor'
private var currentWorkingDirectory = (try? getCurrentWorkingDirectory()) !! "Failed to get the initial current working directory"
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Path.swift:23:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var currentWorkingDirectory = (try? getCurrentWorkingDirectory()) !! "Failed to get the initial current working directory"
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Permissionable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

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

SwiftCompile normal arm64 Compiling\ Open+Seekable.swift,\ Open+Writable.swift,\ Open.swift,\ Openable+Copyable.swift,\ Path+Absolute.swift,\ Path+Ancester.swift,\ Path+Codable.swift,\ Path+Comparable.swift,\ Path+Deletable.swift,\ Path+Equatable.swift,\ Path+Generic.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Open/Open+Seekable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Open/Open+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Open/Open.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Openable/Openable+Copyable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Absolute.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Ancester.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Codable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Comparable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Deletable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Equatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Generic.swift (in target 'Pathman' from project 'Pathman')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Open/Open+Seekable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

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

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

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

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

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

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

SwiftCompile normal arm64 Compiling\ Binding+Accept.swift,\ Binding+Listen.swift,\ Binding.swift,\ ByteRepresentable.swift,\ PlatformCTypes.swift,\ GlobFlags.swift,\ OpenFileMode.swift,\ ReceiveFlags.swift,\ SendFlags.swift,\ FileBits.swift,\ FileMode.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Accept.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Listen.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/ByteRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/PlatformCTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift (in target 'Pathman' from project 'Pathman')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Accept.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:38:23: warning: static property 'error' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let error = GlobFlags(rawValue: GLOB_ERR)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:38:23: note: add '@MainActor' to make static property 'error' part of global actor 'MainActor'
    public static let error = GlobFlags(rawValue: GLOB_ERR)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let error = GlobFlags(rawValue: GLOB_ERR)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:42:23: warning: static property 'unsorted' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let unsorted = GlobFlags(rawValue: GLOB_NOSORT)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:42:23: note: add '@MainActor' to make static property 'unsorted' part of global actor 'MainActor'
    public static let unsorted = GlobFlags(rawValue: GLOB_NOSORT)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let unsorted = GlobFlags(rawValue: GLOB_NOSORT)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:51:23: warning: static property 'offset' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let offset = GlobFlags(rawValue: GLOB_DOOFFS)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:51:23: note: add '@MainActor' to make static property 'offset' part of global actor 'MainActor'
    public static let offset = GlobFlags(rawValue: GLOB_DOOFFS)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let offset = GlobFlags(rawValue: GLOB_DOOFFS)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:55:23: warning: static property 'noCheck' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let noCheck = GlobFlags(rawValue: GLOB_NOCHECK)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:55:23: note: add '@MainActor' to make static property 'noCheck' part of global actor 'MainActor'
    public static let noCheck = GlobFlags(rawValue: GLOB_NOCHECK)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let noCheck = GlobFlags(rawValue: GLOB_NOCHECK)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:63:23: warning: static property 'append' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let append = GlobFlags(rawValue: GLOB_APPEND)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:63:23: note: add '@MainActor' to make static property 'append' part of global actor 'MainActor'
    public static let append = GlobFlags(rawValue: GLOB_APPEND)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let append = GlobFlags(rawValue: GLOB_APPEND)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:68:23: warning: static property 'noEscape' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let noEscape = GlobFlags(rawValue: GLOB_NOESCAPE)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:68:23: note: add '@MainActor' to make static property 'noEscape' part of global actor 'MainActor'
    public static let noEscape = GlobFlags(rawValue: GLOB_NOESCAPE)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let noEscape = GlobFlags(rawValue: GLOB_NOESCAPE)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:73:23: warning: static property 'alternativeDirectoryFunctions' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let alternativeDirectoryFunctions = GlobFlags(rawValue: GLOB_ALTDIRFUNC)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:73:23: note: add '@MainActor' to make static property 'alternativeDirectoryFunctions' part of global actor 'MainActor'
    public static let alternativeDirectoryFunctions = GlobFlags(rawValue: GLOB_ALTDIRFUNC)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:73:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let alternativeDirectoryFunctions = GlobFlags(rawValue: GLOB_ALTDIRFUNC)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:79:23: warning: static property 'brace' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let brace = GlobFlags(rawValue: GLOB_BRACE)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:79:23: note: add '@MainActor' to make static property 'brace' part of global actor 'MainActor'
    public static let brace = GlobFlags(rawValue: GLOB_BRACE)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let brace = GlobFlags(rawValue: GLOB_BRACE)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:83:23: warning: static property 'noMagic' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let noMagic = GlobFlags(rawValue: GLOB_NOMAGIC)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:83:23: note: add '@MainActor' to make static property 'noMagic' part of global actor 'MainActor'
    public static let noMagic = GlobFlags(rawValue: GLOB_NOMAGIC)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let noMagic = GlobFlags(rawValue: GLOB_NOMAGIC)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:92:23: warning: static property 'tilde' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tilde = GlobFlags(rawValue: GLOB_TILDE)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:92:23: note: add '@MainActor' to make static property 'tilde' part of global actor 'MainActor'
    public static let tilde = GlobFlags(rawValue: GLOB_TILDE)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:92:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tilde = GlobFlags(rawValue: GLOB_TILDE)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:117:23: warning: static property 'containsGlobbingCharacters' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let containsGlobbingCharacters = GlobFlags(rawValue: GLOB_MAGCHAR)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:117:23: note: add '@MainActor' to make static property 'containsGlobbingCharacters' part of global actor 'MainActor'
    public static let containsGlobbingCharacters = GlobFlags(rawValue: GLOB_MAGCHAR)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:117:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let containsGlobbingCharacters = GlobFlags(rawValue: GLOB_MAGCHAR)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:124:23: warning: static property 'limit' is not concurrency-safe because non-'Sendable' type 'GlobFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let limit = GlobFlags(rawValue: GLOB_LIMIT)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:22:15: note: consider making struct 'GlobFlags' conform to the 'Sendable' protocol
public struct GlobFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:124:23: note: add '@MainActor' to make static property 'limit' part of global actor 'MainActor'
    public static let limit = GlobFlags(rawValue: GLOB_LIMIT)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift:124:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let limit = GlobFlags(rawValue: GLOB_LIMIT)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:16:23: warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let read: OpenFileMode = "r"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:16:23: note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
    public static let read: OpenFileMode = "r"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let read: OpenFileMode = "r"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:21:23: warning: static property 'readPlus' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let readPlus: OpenFileMode = "r+"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:21:23: note: add '@MainActor' to make static property 'readPlus' part of global actor 'MainActor'
    public static let readPlus: OpenFileMode = "r+"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let readPlus: OpenFileMode = "r+"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:27:23: warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let write: OpenFileMode = "w"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:27:23: note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
    public static let write: OpenFileMode = "w"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let write: OpenFileMode = "w"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:33:23: warning: static property 'writePlus' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let writePlus: OpenFileMode = "w+"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:33:23: note: add '@MainActor' to make static property 'writePlus' part of global actor 'MainActor'
    public static let writePlus: OpenFileMode = "w+"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let writePlus: OpenFileMode = "w+"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:40:23: warning: static property 'append' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let append: OpenFileMode = "a"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:40:23: note: add '@MainActor' to make static property 'append' part of global actor 'MainActor'
    public static let append: OpenFileMode = "a"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let append: OpenFileMode = "a"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:47:23: warning: static property 'appendPlus' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let appendPlus: OpenFileMode = "a+"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:47:23: note: add '@MainActor' to make static property 'appendPlus' part of global actor 'MainActor'
    public static let appendPlus: OpenFileMode = "a+"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let appendPlus: OpenFileMode = "a+"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:53:23: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binary: OpenFileMode = "b"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:53:23: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    public static let binary: OpenFileMode = "b"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binary: OpenFileMode = "b"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:58:23: warning: static property 'closeOnExecute' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let closeOnExecute: OpenFileMode = "e"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:58:23: note: add '@MainActor' to make static property 'closeOnExecute' part of global actor 'MainActor'
    public static let closeOnExecute: OpenFileMode = "e"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let closeOnExecute: OpenFileMode = "e"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:63:23: warning: static property 'exclusive' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let exclusive: OpenFileMode = "x"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:63:23: note: add '@MainActor' to make static property 'exclusive' part of global actor 'MainActor'
    public static let exclusive: OpenFileMode = "x"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let exclusive: OpenFileMode = "x"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:65:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'OpenFileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none: OpenFileMode = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:1:15: note: consider making struct 'OpenFileMode' conform to the 'Sendable' protocol
public struct OpenFileMode: Equatable, ExpressibleByStringLiteral, Hashable {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:65:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none: OpenFileMode = ""
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none: OpenFileMode = ""
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:38:23: warning: static property 'dontWait' is not concurrency-safe because non-'Sendable' type 'ReceiveFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dontWait = ReceiveFlags(integerLiteral: MSG_DONTWAIT)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:16:15: note: consider making struct 'ReceiveFlags' conform to the 'Sendable' protocol
public struct ReceiveFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:38:23: note: add '@MainActor' to make static property 'dontWait' part of global actor 'MainActor'
    public static let dontWait = ReceiveFlags(integerLiteral: MSG_DONTWAIT)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dontWait = ReceiveFlags(integerLiteral: MSG_DONTWAIT)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:45:23: warning: static property 'outOfBound' is not concurrency-safe because non-'Sendable' type 'ReceiveFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let outOfBound = ReceiveFlags(integerLiteral: MSG_OOB)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:16:15: note: consider making struct 'ReceiveFlags' conform to the 'Sendable' protocol
public struct ReceiveFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:45:23: note: add '@MainActor' to make static property 'outOfBound' part of global actor 'MainActor'
    public static let outOfBound = ReceiveFlags(integerLiteral: MSG_OOB)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let outOfBound = ReceiveFlags(integerLiteral: MSG_OOB)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:51:23: warning: static property 'peek' is not concurrency-safe because non-'Sendable' type 'ReceiveFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let peek = ReceiveFlags(integerLiteral: MSG_PEEK)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:16:15: note: consider making struct 'ReceiveFlags' conform to the 'Sendable' protocol
public struct ReceiveFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:51:23: note: add '@MainActor' to make static property 'peek' part of global actor 'MainActor'
    public static let peek = ReceiveFlags(integerLiteral: MSG_PEEK)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let peek = ReceiveFlags(integerLiteral: MSG_PEEK)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:56:23: warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'ReceiveFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let truncate = ReceiveFlags(integerLiteral: MSG_TRUNC)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:16:15: note: consider making struct 'ReceiveFlags' conform to the 'Sendable' protocol
public struct ReceiveFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:56:23: note: add '@MainActor' to make static property 'truncate' part of global actor 'MainActor'
    public static let truncate = ReceiveFlags(integerLiteral: MSG_TRUNC)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let truncate = ReceiveFlags(integerLiteral: MSG_TRUNC)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:64:23: warning: static property 'waitAll' is not concurrency-safe because non-'Sendable' type 'ReceiveFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let waitAll = ReceiveFlags(integerLiteral: MSG_WAITALL)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:16:15: note: consider making struct 'ReceiveFlags' conform to the 'Sendable' protocol
public struct ReceiveFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:64:23: note: add '@MainActor' to make static property 'waitAll' part of global actor 'MainActor'
    public static let waitAll = ReceiveFlags(integerLiteral: MSG_WAITALL)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let waitAll = ReceiveFlags(integerLiteral: MSG_WAITALL)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:66:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ReceiveFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none: ReceiveFlags = 0
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:16:15: note: consider making struct 'ReceiveFlags' conform to the 'Sendable' protocol
public struct ReceiveFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:66:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none: ReceiveFlags = 0
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none: ReceiveFlags = 0
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:53:23: warning: static property 'dontRoute' is not concurrency-safe because non-'Sendable' type 'SendFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dontRoute = SendFlags(integerLiteral: MSG_DONTROUTE)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:14:15: note: consider making struct 'SendFlags' conform to the 'Sendable' protocol
public struct SendFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:53:23: note: add '@MainActor' to make static property 'dontRoute' part of global actor 'MainActor'
    public static let dontRoute = SendFlags(integerLiteral: MSG_DONTROUTE)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dontRoute = SendFlags(integerLiteral: MSG_DONTROUTE)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:63:23: warning: static property 'dontWait' is not concurrency-safe because non-'Sendable' type 'SendFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dontWait = SendFlags(integerLiteral: MSG_DONTWAIT)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:14:15: note: consider making struct 'SendFlags' conform to the 'Sendable' protocol
public struct SendFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:63:23: note: add '@MainActor' to make static property 'dontWait' part of global actor 'MainActor'
    public static let dontWait = SendFlags(integerLiteral: MSG_DONTWAIT)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dontWait = SendFlags(integerLiteral: MSG_DONTWAIT)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:68:23: warning: static property 'outOfBound' is not concurrency-safe because non-'Sendable' type 'SendFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let outOfBound = SendFlags(integerLiteral: MSG_OOB)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:14:15: note: consider making struct 'SendFlags' conform to the 'Sendable' protocol
public struct SendFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:68:23: note: add '@MainActor' to make static property 'outOfBound' part of global actor 'MainActor'
    public static let outOfBound = SendFlags(integerLiteral: MSG_OOB)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let outOfBound = SendFlags(integerLiteral: MSG_OOB)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:70:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'SendFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none: SendFlags = 0
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:14:15: note: consider making struct 'SendFlags' conform to the 'Sendable' protocol
public struct SendFlags: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:70:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none: SendFlags = 0
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none: SendFlags = 0
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'FileBits' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: FileBits = 0o7
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:2:15: note: consider making struct 'FileBits' conform to the 'Sendable' protocol
public struct FileBits: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:23:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: FileBits = 0o7
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: FileBits = 0o7
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:25:23: warning: static property 'uid' is not concurrency-safe because non-'Sendable' type 'FileBits' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let uid: FileBits = 0o4
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:2:15: note: consider making struct 'FileBits' conform to the 'Sendable' protocol
public struct FileBits: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:25:23: note: add '@MainActor' to make static property 'uid' part of global actor 'MainActor'
    public static let uid: FileBits = 0o4
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let uid: FileBits = 0o4
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:27:23: warning: static property 'gid' is not concurrency-safe because non-'Sendable' type 'FileBits' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let gid: FileBits = 0o2
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:2:15: note: consider making struct 'FileBits' conform to the 'Sendable' protocol
public struct FileBits: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:27:23: note: add '@MainActor' to make static property 'gid' part of global actor 'MainActor'
    public static let gid: FileBits = 0o2
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let gid: FileBits = 0o2
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:29:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'FileBits' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let sticky: FileBits = 0o1
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:2:15: note: consider making struct 'FileBits' conform to the 'Sendable' protocol
public struct FileBits: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:29:23: note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
    public static let sticky: FileBits = 0o1
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let sticky: FileBits = 0o1
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:31:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'FileBits' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none: FileBits = 0
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:2:15: note: consider making struct 'FileBits' conform to the 'Sendable' protocol
public struct FileBits: OptionSet, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:31:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none: FileBits = 0
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none: FileBits = 0
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:45:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'FileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: FileMode = 0o7777
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:2:15: note: consider making struct 'FileMode' conform to the 'Sendable' protocol
public struct FileMode: OptionSet, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, Hashable {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:45:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: FileMode = 0o7777
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: FileMode = 0o7777
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:47:23: warning: static property 'allPermissions' is not concurrency-safe because non-'Sendable' type 'FileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allPermissions: FileMode = 0o0777
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:2:15: note: consider making struct 'FileMode' conform to the 'Sendable' protocol
public struct FileMode: OptionSet, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, Hashable {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:47:23: note: add '@MainActor' to make static property 'allPermissions' part of global actor 'MainActor'
    public static let allPermissions: FileMode = 0o0777
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allPermissions: FileMode = 0o0777
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:49:23: warning: static property 'allBits' is not concurrency-safe because non-'Sendable' type 'FileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allBits: FileMode = 0o7000
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:2:15: note: consider making struct 'FileMode' conform to the 'Sendable' protocol
public struct FileMode: OptionSet, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, Hashable {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:49:23: note: add '@MainActor' to make static property 'allBits' part of global actor 'MainActor'
    public static let allBits: FileMode = 0o7000
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allBits: FileMode = 0o7000
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:51:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'FileMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none: FileMode = 0
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:2:15: note: consider making struct 'FileMode' conform to the 'Sendable' protocol
public struct FileMode: OptionSet, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, Hashable {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:51:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none: FileMode = 0
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none: FileMode = 0
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ FilePermissions.swift,\ PathType.swift,\ UMask.swift,\ DirectoryChildren+Iterator.swift,\ DirectoryChildren+Sortable.swift,\ DirectoryChildren.swift,\ Offset.swift,\ SocketDomain.swift,\ SocketType.swift,\ StatAttributes.swift,\ setbuf.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/PathType.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/readdir/DirectoryChildren+Iterator.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/readdir/DirectoryChildren+Sortable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/readdir/DirectoryChildren.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stat/StatAttributes.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift (in target 'Pathman' from project 'Pathman')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:9: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 = 0o7
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:2:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, ExpressibleByStringLiteral, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:9:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: FilePermissions = 0o7
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: FilePermissions = 0o7
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:11: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 = 0o4
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:2:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, ExpressibleByStringLiteral, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:11:23: note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
    public static let read: FilePermissions = 0o4
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let read: FilePermissions = 0o4
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:13: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 = 0o2
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:2:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, ExpressibleByStringLiteral, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:13:23: note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
    public static let write: FilePermissions = 0o2
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let write: FilePermissions = 0o2
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:15: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 = 0o1
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:2:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, ExpressibleByStringLiteral, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:15:23: note: add '@MainActor' to make static property 'execute' part of global actor 'MainActor'
    public static let execute: FilePermissions = 0o1
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:15:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let execute: FilePermissions = 0o1
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:17:23: warning: static property 'none' 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 none: FilePermissions = 0
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:2:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, ExpressibleByStringLiteral, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:17:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none: FilePermissions = 0
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none: FilePermissions = 0
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:20:23: warning: static property 'readWrite' 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 readWrite: FilePermissions = [.read, .write]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:2:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, ExpressibleByStringLiteral, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:20:23: note: add '@MainActor' to make static property 'readWrite' part of global actor 'MainActor'
    public static let readWrite: FilePermissions = [.read, .write]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let readWrite: FilePermissions = [.read, .write]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:22:23: warning: static property 'readExecute' 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 readExecute: FilePermissions = [.read, .execute]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:2:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, ExpressibleByStringLiteral, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:22:23: note: add '@MainActor' to make static property 'readExecute' part of global actor 'MainActor'
    public static let readExecute: FilePermissions = [.read, .execute]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let readExecute: FilePermissions = [.read, .execute]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:24:23: warning: static property 'writeExecute' 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 writeExecute: FilePermissions = [.write, .execute]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:2:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, ExpressibleByStringLiteral, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:24:23: note: add '@MainActor' to make static property 'writeExecute' part of global actor 'MainActor'
    public static let writeExecute: FilePermissions = [.write, .execute]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let writeExecute: FilePermissions = [.write, .execute]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:26:23: warning: static property 'readWriteExecute' 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 readWriteExecute: FilePermissions = .all
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:2:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, ExpressibleByStringLiteral, ExpressibleByIntegerLiteral, Hashable {
              ^
                                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:26:23: note: add '@MainActor' to make static property 'readWriteExecute' part of global actor 'MainActor'
    public static let readWriteExecute: FilePermissions = .all
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FilePermissions.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let readWriteExecute: FilePermissions = .all
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/PathType.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:18:13: warning: var '_umask' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var _umask: UMask = originalUMask
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:18:13: note: convert '_umask' to a 'let' constant to make 'Sendable' shared state immutable
private var _umask: UMask = originalUMask
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:18:13: note: add '@MainActor' to make var '_umask' part of global actor 'MainActor'
private var _umask: UMask = originalUMask
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:18:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var _umask: UMask = originalUMask
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:21:12: warning: var 'originalUMask' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var originalUMask: UMask = {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:21:12: note: convert 'originalUMask' to a 'let' constant to make 'Sendable' shared state immutable
public var originalUMask: UMask = {
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:21:12: note: add '@MainActor' to make var 'originalUMask' part of global actor 'MainActor'
public var originalUMask: UMask = {
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:21:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var originalUMask: UMask = {
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:32:25: warning: var 'lastUMask' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public private(set) var lastUMask: UMask = _umask
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:32:25: note: convert 'lastUMask' to a 'let' constant to make 'Sendable' shared state immutable
public private(set) var lastUMask: UMask = _umask
                    ~~~ ^
                    let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:32:25: note: add '@MainActor' to make var 'lastUMask' part of global actor 'MainActor'
public private(set) var lastUMask: UMask = _umask
                        ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/UMask.swift:32:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public private(set) var lastUMask: UMask = _umask
                        ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/readdir/DirectoryChildren+Iterator.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/readdir/DirectoryChildren+Sortable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/readdir/DirectoryChildren.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:20:27: warning: static property 'beginning' is not concurrency-safe because non-'Sendable' type 'Offset.OffsetType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let beginning = OffsetType(rawValue: SEEK_SET)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:16:19: note: consider making struct 'OffsetType' conform to the 'Sendable' protocol
    public struct OffsetType: RawRepresentable, Equatable {
                  ^
                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:20:27: note: add '@MainActor' to make static property 'beginning' part of global actor 'MainActor'
        public static let beginning = OffsetType(rawValue: SEEK_SET)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:20:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let beginning = OffsetType(rawValue: SEEK_SET)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:22:27: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Offset.OffsetType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let end = OffsetType(rawValue: SEEK_END)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:16:19: note: consider making struct 'OffsetType' conform to the 'Sendable' protocol
    public struct OffsetType: RawRepresentable, Equatable {
                  ^
                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:22:27: note: add '@MainActor' to make static property 'end' part of global actor 'MainActor'
        public static let end = OffsetType(rawValue: SEEK_END)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:22:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let end = OffsetType(rawValue: SEEK_END)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:24:27: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Offset.OffsetType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let current = OffsetType(rawValue: SEEK_CUR)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:16:19: note: consider making struct 'OffsetType' conform to the 'Sendable' protocol
    public struct OffsetType: RawRepresentable, Equatable {
                  ^
                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:24:27: note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
        public static let current = OffsetType(rawValue: SEEK_CUR)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:24:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let current = OffsetType(rawValue: SEEK_CUR)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:27:27: warning: static property 'hole' is not concurrency-safe because non-'Sendable' type 'Offset.OffsetType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hole = OffsetType(rawValue: SEEK_HOLE)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:16:19: note: consider making struct 'OffsetType' conform to the 'Sendable' protocol
    public struct OffsetType: RawRepresentable, Equatable {
                  ^
                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:27:27: note: add '@MainActor' to make static property 'hole' part of global actor 'MainActor'
        public static let hole = OffsetType(rawValue: SEEK_HOLE)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:27:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hole = OffsetType(rawValue: SEEK_HOLE)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:29:27: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'Offset.OffsetType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let data = OffsetType(rawValue: SEEK_DATA)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:16:19: note: consider making struct 'OffsetType' conform to the 'Sendable' protocol
    public struct OffsetType: RawRepresentable, Equatable {
                  ^
                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:29:27: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
        public static let data = OffsetType(rawValue: SEEK_DATA)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:29:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let data = OffsetType(rawValue: SEEK_DATA)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:38:23: warning: static property 'beginning' is not concurrency-safe because non-'Sendable' type 'Offset' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let beginning = Offset(.beginning, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:14:15: note: consider making struct 'Offset' conform to the 'Sendable' protocol
public struct Offset {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:38:23: note: add '@MainActor' to make static property 'beginning' part of global actor 'MainActor'
    public static let beginning = Offset(.beginning, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let beginning = Offset(.beginning, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:40:23: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Offset' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let end = Offset(.end, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:14:15: note: consider making struct 'Offset' conform to the 'Sendable' protocol
public struct Offset {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:40:23: note: add '@MainActor' to make static property 'end' part of global actor 'MainActor'
    public static let end = Offset(.end, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let end = Offset(.end, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:42:23: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Offset' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let current = Offset(.current, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:14:15: note: consider making struct 'Offset' conform to the 'Sendable' protocol
public struct Offset {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:42:23: note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
    public static let current = Offset(.current, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/seek/Offset.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let current = Offset(.current, 0)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift:20:23: warning: static property 'unix' is not concurrency-safe because non-'Sendable' type 'SocketDomain' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let unix = SocketDomain(rawValue: PF_UNIX)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift:9:15: note: consider making struct 'SocketDomain' conform to the 'Sendable' protocol
public struct SocketDomain: Hashable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift:20:23: note: add '@MainActor' to make static property 'unix' part of global actor 'MainActor'
    public static let unix = SocketDomain(rawValue: PF_UNIX)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let unix = SocketDomain(rawValue: PF_UNIX)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift:22:23: warning: static property 'local' is not concurrency-safe because non-'Sendable' type 'SocketDomain' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let local = SocketDomain(rawValue: PF_LOCAL)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift:9:15: note: consider making struct 'SocketDomain' conform to the 'Sendable' protocol
public struct SocketDomain: Hashable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift:22:23: note: add '@MainActor' to make static property 'local' part of global actor 'MainActor'
    public static let local = SocketDomain(rawValue: PF_LOCAL)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketDomain.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let local = SocketDomain(rawValue: PF_LOCAL)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift:15:23: warning: static property 'stream' is not concurrency-safe because non-'Sendable' type 'SocketType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stream = SocketType(rawValue: SOCK_STREAM)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift:10:15: note: consider making struct 'SocketType' conform to the 'Sendable' protocol
public struct SocketType: Hashable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift:15:23: note: add '@MainActor' to make static property 'stream' part of global actor 'MainActor'
    public static let stream = SocketType(rawValue: SOCK_STREAM)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift:15:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stream = SocketType(rawValue: SOCK_STREAM)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift:18:23: warning: static property 'datagram' is not concurrency-safe because non-'Sendable' type 'SocketType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let datagram = SocketType(rawValue: SOCK_DGRAM)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift:10:15: note: consider making struct 'SocketType' conform to the 'Sendable' protocol
public struct SocketType: Hashable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift:18:23: note: add '@MainActor' to make static property 'datagram' part of global actor 'MainActor'
    public static let datagram = SocketType(rawValue: SOCK_DGRAM)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/socket/SocketType.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let datagram = SocketType(rawValue: SOCK_DGRAM)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stat/StatAttributes.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift:33:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'BufferMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none = BufferMode(mode: .none)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift:13:15: note: consider making struct 'BufferMode' conform to the 'Sendable' protocol
public struct BufferMode {
              ^
                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift:33:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none = BufferMode(mode: .none)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none = BufferMode(mode: .none)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift:35:23: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'BufferMode' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let line = BufferMode(mode: .line, size: nil)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift:13:15: note: consider making struct 'BufferMode' conform to the 'Sendable' protocol
public struct BufferMode {
              ^
                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift:35:23: note: add '@MainActor' to make static property 'line' part of global actor 'MainActor'
    public static let line = BufferMode(mode: .line, size: nil)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/stdio/setbuf.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let line = BufferMode(mode: .line, size: nil)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ DirectoryPath+DirectoryEnumerable.swift,\ DirectoryPath+Openable.swift,\ DirectoryPath.swift,\ OpenDirectory.swift,\ DirectoryEnumerable+Deletable.swift,\ DirectoryEnumerable+Ownable.swift,\ DirectoryEnumerable+Permissionable.swift,\ ErrNo.swift,\ Generic.swift,\ FilePath+Copyable.swift,\ FilePath+Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+DirectoryEnumerable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Openable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/OpenDirectory.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/DirectoryEnumerable/DirectoryEnumerable+Deletable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/DirectoryEnumerable/DirectoryEnumerable+Ownable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/DirectoryEnumerable/DirectoryEnumerable+Permissionable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Errors/ErrNo.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Errors/Generic.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Copyable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Creatable.swift (in target 'Pathman' from project 'Pathman')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+DirectoryEnumerable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

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

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

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

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

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Errors/Generic.swift:28:45: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    case notConvertibleToData(using: String.Encoding)
                                            ^
Foundation.String.Encoding:2:15: note: struct declared here
public struct Encoding : RawRepresentable, Sendable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Errors/Generic.swift:41:10: warning: associated value 'uncopyablePath' of 'Sendable'-conforming enum 'CopyError' has non-sendable type 'GenericPath'; this is an error in the Swift 6 language mode
    case uncopyablePath(GenericPath)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Generic.swift:2:15: note: consider making struct 'GenericPath' conform to the 'Sendable' protocol
public struct GenericPath: Path, ExpressibleByStringLiteral, ExpressibleByArrayLiteral, Comparable {
              ^
                                                                                                  , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Copyable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling ErrNo+Glibc.swift (in target 'ErrNo' from project 'ErrNo')
SwiftCompile normal arm64 Compiling\ Path+HomeDirectory.swift,\ Path+Iterator.swift,\ Path+Links.swift,\ Path+Movable.swift,\ Path+Ownable.swift,\ Path+Permissionable.swift,\ Path+Relative.swift,\ Path+Temporary.swift,\ Copyable.swift,\ Creatable.swift,\ Deletable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+HomeDirectory.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Iterator.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Links.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Movable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Ownable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Permissionable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Relative.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Temporary.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Deletable.swift (in target 'Pathman' from project 'Pathman')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+HomeDirectory.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Links.swift:22:23: warning: static property 'soft' is not concurrency-safe because non-'Sendable' type 'LinkType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let soft: LinkType = .symbolic
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Links.swift:19:13: note: consider making enum 'LinkType' conform to the 'Sendable' protocol
public enum LinkType {
            ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Links.swift:22:23: note: add '@MainActor' to make static property 'soft' part of global actor 'MainActor'
    public static let soft: LinkType = .symbolic
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Links.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let soft: LinkType = .symbolic
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Links.swift:25:12: warning: var 'defaultLinkType' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var defaultLinkType: LinkType = .symbolic
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Links.swift:25:12: note: convert 'defaultLinkType' to a 'let' constant to make 'Sendable' shared state immutable
public var defaultLinkType: LinkType = .symbolic
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Links.swift:25:12: note: add '@MainActor' to make var 'defaultLinkType' part of global actor 'MainActor'
public var defaultLinkType: LinkType = .symbolic
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Links.swift:25:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var defaultLinkType: LinkType = .symbolic
           ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Movable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Temporary.swift:18:12: warning: let 'temporaryDirectory' is not concurrency-safe because non-'Sendable' type 'DirectoryPath' may have shared mutable state; this is an error in the Swift 6 language mode
public let temporaryDirectory: DirectoryPath = getTemporaryDirectory()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath.swift:2:15: note: consider making struct 'DirectoryPath' conform to the 'Sendable' protocol
public struct DirectoryPath: Path {
              ^
                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Temporary.swift:18:12: note: add '@MainActor' to make let 'temporaryDirectory' part of global actor 'MainActor'
public let temporaryDirectory: DirectoryPath = getTemporaryDirectory()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Temporary.swift:18:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let temporaryDirectory: DirectoryPath = getTemporaryDirectory()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Temporary.swift:134:23: warning: static property 'deleteOnCompletion' is not concurrency-safe because non-'Sendable' type 'TemporaryOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let deleteOnCompletion: TemporaryOptions = 1
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Temporary.swift:131:15: note: consider making struct 'TemporaryOptions' conform to the 'Sendable' protocol
public struct TemporaryOptions: OptionSet, ExpressibleByIntegerLiteral {
              ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Temporary.swift:134:23: note: add '@MainActor' to make static property 'deleteOnCompletion' part of global actor 'MainActor'
    public static let deleteOnCompletion: TemporaryOptions = 1
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Path/Path+Temporary.swift:134:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let deleteOnCompletion: TemporaryOptions = 1
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:8:23: warning: static property 'recursive' is not concurrency-safe because non-'Sendable' type 'CopyOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let recursive = CopyOptions(rawValue: 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:1:15: note: consider making struct 'CopyOptions' conform to the 'Sendable' protocol
public struct CopyOptions: OptionSet {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:8:23: note: add '@MainActor' to make static property 'recursive' part of global actor 'MainActor'
    public static let recursive = CopyOptions(rawValue: 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:8:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let recursive = CopyOptions(rawValue: 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:10:23: warning: static property 'includeHidden' is not concurrency-safe because non-'Sendable' type 'CopyOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let includeHidden = CopyOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:1:15: note: consider making struct 'CopyOptions' conform to the 'Sendable' protocol
public struct CopyOptions: OptionSet {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:10:23: note: add '@MainActor' to make static property 'includeHidden' part of global actor 'MainActor'
    public static let includeHidden = CopyOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let includeHidden = CopyOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:16:23: warning: static property 'noBuffer' is not concurrency-safe because non-'Sendable' type 'CopyOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let noBuffer = CopyOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:1:15: note: consider making struct 'CopyOptions' conform to the 'Sendable' protocol
public struct CopyOptions: OptionSet {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:16:23: note: add '@MainActor' to make static property 'noBuffer' part of global actor 'MainActor'
    public static let noBuffer = CopyOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Copyable.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let noBuffer = CopyOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Creatable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Creatable.swift:8:23: warning: static property 'createIntermediates' is not concurrency-safe because non-'Sendable' type 'CreateOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let createIntermediates = CreateOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Creatable.swift:3:15: note: consider making struct 'CreateOptions' conform to the 'Sendable' protocol
public struct CreateOptions: RawRepresentable, OptionSet, ExpressibleByIntegerLiteral {
              ^
                                                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Creatable.swift:8:23: note: add '@MainActor' to make static property 'createIntermediates' part of global actor 'MainActor'
    public static let createIntermediates = CreateOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Creatable.swift:8:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let createIntermediates = CreateOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Deletable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ErrNo.swift (in target 'ErrNo' from project 'ErrNo')
SwiftCompile normal arm64 Compiling\ FilePath+Openable.swift,\ FilePath+Readable.swift,\ FilePath+Seekable.swift,\ FilePath+StandardStreams.swift,\ FilePath+Writable.swift,\ FilePath.swift,\ OpenFile.swift,\ Glob.swift,\ Globbing.swift,\ Open+Copyable.swift,\ Open+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Seekable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/OpenFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Glob/Glob.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Glob/Globbing.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Open/Open+Copyable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Open/Open+Readable.swift (in target 'Pathman' from project 'Pathman')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:26:27: warning: static property 'readableDefault' is not concurrency-safe because non-'Sendable' type 'FilePath.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let readableDefault = OpenOptions(mode: .read)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:22:19: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
    public struct OpenOptions: DefaultReadableWritableOpenOption {
                  ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:26:27: note: add '@MainActor' to make static property 'readableDefault' part of global actor 'MainActor'
        public static let readableDefault = OpenOptions(mode: .read)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let readableDefault = OpenOptions(mode: .read)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:27:27: warning: static property 'writableDefault' is not concurrency-safe because non-'Sendable' type 'FilePath.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let writableDefault = OpenOptions(mode: .append)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:22:19: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
    public struct OpenOptions: DefaultReadableWritableOpenOption {
                  ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:27:27: note: add '@MainActor' to make static property 'writableDefault' part of global actor 'MainActor'
        public static let writableDefault = OpenOptions(mode: .append)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:27:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let writableDefault = OpenOptions(mode: .append)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:28:27: warning: static property 'readableWritableDefault' is not concurrency-safe because non-'Sendable' type 'FilePath.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let readableWritableDefault = OpenOptions(mode: .readPlus)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:22:19: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
    public struct OpenOptions: DefaultReadableWritableOpenOption {
                  ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:28:27: note: add '@MainActor' to make static property 'readableWritableDefault' part of global actor 'MainActor'
        public static let readableWritableDefault = OpenOptions(mode: .readPlus)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Openable.swift:28:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let readableWritableDefault = OpenOptions(mode: .readPlus)
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:28:13: warning: var '_buffers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var _buffers: [FilePath: UnsafeMutableRawPointer] = [:]
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:28:13: note: convert '_buffers' to a 'let' constant to make 'Sendable' shared state immutable
private var _buffers: [FilePath: UnsafeMutableRawPointer] = [:]
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:28:13: note: add '@MainActor' to make var '_buffers' part of global actor 'MainActor'
private var _buffers: [FilePath: UnsafeMutableRawPointer] = [:]
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:28:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var _buffers: [FilePath: UnsafeMutableRawPointer] = [:]
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:29:13: warning: var '_bufferSizes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var _bufferSizes: [FilePath: Int] = [:]
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:29:13: note: convert '_bufferSizes' to a 'let' constant to make 'Sendable' shared state immutable
private var _bufferSizes: [FilePath: Int] = [:]
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:29:13: note: add '@MainActor' to make var '_bufferSizes' part of global actor 'MainActor'
private var _bufferSizes: [FilePath: Int] = [:]
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:29:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var _bufferSizes: [FilePath: Int] = [:]
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:31:13: warning: var 'alignment' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var alignment = MemoryLayout<CChar>.alignment
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:31:13: note: convert 'alignment' to a 'let' constant to make 'Sendable' shared state immutable
private var alignment = MemoryLayout<CChar>.alignment
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:31:13: note: add '@MainActor' to make var 'alignment' part of global actor 'MainActor'
private var alignment = MemoryLayout<CChar>.alignment
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Readable.swift:31:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var alignment = MemoryLayout<CChar>.alignment
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Seekable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:16:5: warning: let 'cStdout' is not concurrency-safe because non-'Sendable' type 'UnsafeMutablePointer<FILE>' (aka 'UnsafeMutablePointer<__sFILE>') may have shared mutable state; this is an error in the Swift 6 language mode
let cStdout = Darwin.stdout
    ^
Swift.UnsafeMutablePointer:1:23: note: generic struct 'UnsafeMutablePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutablePointer<Pointee> : Copyable where Pointee : ~Copyable {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:16:5: note: add '@MainActor' to make let 'cStdout' part of global actor 'MainActor'
let cStdout = Darwin.stdout
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:16:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let cStdout = Darwin.stdout
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:17:5: warning: let 'cStderr' is not concurrency-safe because non-'Sendable' type 'UnsafeMutablePointer<FILE>' (aka 'UnsafeMutablePointer<__sFILE>') may have shared mutable state; this is an error in the Swift 6 language mode
let cStderr = Darwin.stderr
    ^
Swift.UnsafeMutablePointer:1:23: note: generic struct 'UnsafeMutablePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutablePointer<Pointee> : Copyable where Pointee : ~Copyable {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:17:5: note: add '@MainActor' to make let 'cStderr' part of global actor 'MainActor'
let cStderr = Darwin.stderr
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:17:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let cStderr = Darwin.stderr
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:18:5: warning: let 'cStdin' is not concurrency-safe because non-'Sendable' type 'UnsafeMutablePointer<FILE>' (aka 'UnsafeMutablePointer<__sFILE>') may have shared mutable state; this is an error in the Swift 6 language mode
let cStdin = Darwin.stdin
    ^
Swift.UnsafeMutablePointer:1:23: note: generic struct 'UnsafeMutablePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutablePointer<Pointee> : Copyable where Pointee : ~Copyable {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:18:5: note: add '@MainActor' to make let 'cStdin' part of global actor 'MainActor'
let cStdin = Darwin.stdin
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:18:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let cStdin = Darwin.stdin
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:21:12: warning: let 'stdout' is not concurrency-safe because non-'Sendable' type 'FileStream' (aka 'Open<FilePath>') may have shared mutable state; this is an error in the Swift 6 language mode
public let stdout: FileStream = {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Open/Open.swift:11:20: note: generic class 'Open' does not conform to the 'Sendable' protocol
public final class Open<PathType: Openable>: UpdatableStatable, Ownable, Permissionable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:21:12: note: add '@MainActor' to make let 'stdout' part of global actor 'MainActor'
public let stdout: FileStream = {
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:21:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let stdout: FileStream = {
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:27:12: warning: let 'stderr' is not concurrency-safe because non-'Sendable' type 'FileStream' (aka 'Open<FilePath>') may have shared mutable state; this is an error in the Swift 6 language mode
public let stderr: FileStream = {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Open/Open.swift:11:20: note: generic class 'Open' does not conform to the 'Sendable' protocol
public final class Open<PathType: Openable>: UpdatableStatable, Ownable, Permissionable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:27:12: note: add '@MainActor' to make let 'stderr' part of global actor 'MainActor'
public let stderr: FileStream = {
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:27:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let stderr: FileStream = {
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:33:12: warning: let 'stdin' is not concurrency-safe because non-'Sendable' type 'FileStream' (aka 'Open<FilePath>') may have shared mutable state; this is an error in the Swift 6 language mode
public let stdin: FileStream = {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/Open/Open.swift:11:20: note: generic class 'Open' does not conform to the 'Sendable' protocol
public final class Open<PathType: Openable>: UpdatableStatable, Ownable, Permissionable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:33:12: note: add '@MainActor' to make let 'stdin' part of global actor 'MainActor'
public let stdin: FileStream = {
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+StandardStreams.swift:33:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let stdin: FileStream = {
           ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath+Writable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath.swift:4:23: warning: static property 'defaultByteCount' 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 defaultByteCount: ByteRepresentable = Int.max
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath.swift:4:23: note: convert 'defaultByteCount' to a 'let' constant to make 'Sendable' shared state immutable
    public static var defaultByteCount: ByteRepresentable = Int.max
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath.swift:4:23: note: add '@MainActor' to make static property 'defaultByteCount' part of global actor 'MainActor'
    public static var defaultByteCount: ByteRepresentable = Int.max
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/FilePath.swift:4:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var defaultByteCount: ByteRepresentable = Int.max
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/File/OpenFile.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

SwiftDriverJobDiscovery normal arm64 Compiling ErrNo+Darwin.swift (in target 'ErrNo' from project 'ErrNo')
SwiftCompile normal arm64 Compiling\ Statable.swift,\ Writable.swift,\ Readable+Helpers.swift,\ Readable+UnusedHelpers.swift,\ ReadableByOpened+Helpers.swift,\ OpenSocket.swift,\ SocketPath+Bindable.swift,\ SocketPath+Connectable.swift,\ SocketPath+Openable.swift,\ SocketPath+Readable.swift,\ SocketPath+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Statable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Readable/Readable+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Readable/Readable+UnusedHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Readable/ReadableByOpened+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/OpenSocket.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath+Bindable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath+Connectable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath+Openable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath+Writable.swift (in target 'Pathman' from project 'Pathman')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Protocols/Statable.swift (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

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

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

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

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

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

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

SwiftDriverJobDiscovery normal arm64 Emitting module for Pathman (in target 'Pathman' from project 'Pathman')
SwiftDriver\ Compilation\ Requirements Pathman normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Pathman' from project 'Pathman')
    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 Pathman -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cdirent.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cglob.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman-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/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.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/Pathman.build/Debug/Pathman.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Cdirent/Sources/Cdirent/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Cglob/Sources/Cglob/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.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/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling DirectoryPath+DirectoryEnumerable.swift, DirectoryPath+Openable.swift, DirectoryPath.swift, OpenDirectory.swift, DirectoryEnumerable+Deletable.swift, DirectoryEnumerable+Ownable.swift, DirectoryEnumerable+Permissionable.swift, ErrNo.swift, Generic.swift, FilePath+Copyable.swift, FilePath+Creatable.swift (in target 'Pathman' from project 'Pathman')
SwiftDriver\ Compilation ErrNo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ErrNo' from project 'ErrNo')
    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 ErrNo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo-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/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo.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/ErrNo.build/Debug/ErrNo.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.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/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Pathman-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman-Swift.h (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Pathman-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.swiftmodule (in target 'Pathman' from project 'Pathman')
    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/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.swiftdoc (in target 'Pathman' from project 'Pathman')
    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/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.abi.json (in target 'Pathman' from project 'Pathman')
    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/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.swiftsourceinfo (in target 'Pathman' from project 'Pathman')
    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/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ErrNo.o normal (in target 'ErrNo' from project 'ErrNo')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ErrNo
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ErrNo.o
ExtractAppIntentsMetadata (in target 'ErrNo' from project 'ErrNo')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ErrNo
    /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 ErrNo --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier errno.ErrNo --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ErrNo.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ErrNo.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/ErrNo.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/ErrNo.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug/ErrNo.build/Objects-normal/arm64/ErrNo.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-25 14:20:18.506 appintentsmetadataprocessor[977:5117] Starting appintentsmetadataprocessor export
2025-04-25 14:20:18.557 appintentsmetadataprocessor[977:5117] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Cglob.o (in target 'Cglob' from project 'Cglob')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Cglob
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Cglob.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Cdirent.o (in target 'Cdirent' from project 'Cdirent')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Cdirent
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Cdirent.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ErrNo.o (in target 'ErrNo' from project 'ErrNo')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ErrNo
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ErrNo.o
SwiftDriverJobDiscovery normal arm64 Compiling FilePermissions.swift, PathType.swift, UMask.swift, DirectoryChildren+Iterator.swift, DirectoryChildren+Sortable.swift, DirectoryChildren.swift, Offset.swift, SocketDomain.swift, SocketType.swift, StatAttributes.swift, setbuf.swift (in target 'Pathman' from project 'Pathman')
SwiftDriverJobDiscovery normal arm64 Compiling SocketPath.swift, StatInfo.swift, StatOptions.swift, Statable+Attributes.swift, Statable+Ownable.swift, Statable+Permissionable.swift, NilCoalescing.swift, Toggled.swift, Writable+Helpers.swift, WritableByOpened+Helpers.swift (in target 'Pathman' from project 'Pathman')
SwiftDriverJobDiscovery normal arm64 Compiling Path+HomeDirectory.swift, Path+Iterator.swift, Path+Links.swift, Path+Movable.swift, Path+Ownable.swift, Path+Permissionable.swift, Path+Relative.swift, Path+Temporary.swift, Copyable.swift, Creatable.swift, Deletable.swift (in target 'Pathman' from project 'Pathman')
SwiftDriverJobDiscovery normal arm64 Compiling DirectoryEnumerable.swift, Movable.swift, Openable.swift, Ownable.swift, Path.swift, Permissionable.swift, Readable.swift, Seekable.swift, Stat.swift, StatDescriptor.swift, StatPath.swift (in target 'Pathman' from project 'Pathman')
SwiftDriverJobDiscovery normal arm64 Compiling Binding+Accept.swift, Binding+Listen.swift, Binding.swift, ByteRepresentable.swift, PlatformCTypes.swift, GlobFlags.swift, OpenFileMode.swift, ReceiveFlags.swift, SendFlags.swift, FileBits.swift, FileMode.swift (in target 'Pathman' from project 'Pathman')
SwiftDriverJobDiscovery normal arm64 Compiling Open+Seekable.swift, Open+Writable.swift, Open.swift, Openable+Copyable.swift, Path+Absolute.swift, Path+Ancester.swift, Path+Codable.swift, Path+Comparable.swift, Path+Deletable.swift, Path+Equatable.swift, Path+Generic.swift (in target 'Pathman' from project 'Pathman')
SwiftDriverJobDiscovery normal arm64 Compiling Statable.swift, Writable.swift, Readable+Helpers.swift, Readable+UnusedHelpers.swift, ReadableByOpened+Helpers.swift, OpenSocket.swift, SocketPath+Bindable.swift, SocketPath+Connectable.swift, SocketPath+Openable.swift, SocketPath+Readable.swift, SocketPath+Writable.swift (in target 'Pathman' from project 'Pathman')
SwiftDriverJobDiscovery normal arm64 Compiling CharacterPath+Openable.swift, CharacterPath+Readable.swift, CharacterPath+Writable.swift, CharacterPath.swift, OpenCharacter.swift, Connection+Readable.swift, Connection+Writable.swift, Connection.swift, DirectoryPath+Copyable.swift, DirectoryPath+Creatable.swift, DirectoryPath+Deletable.swift (in target 'Pathman' from project 'Pathman')
SwiftDriverJobDiscovery normal arm64 Compiling FilePath+Openable.swift, FilePath+Readable.swift, FilePath+Seekable.swift, FilePath+StandardStreams.swift, FilePath+Writable.swift, FilePath.swift, OpenFile.swift, Glob.swift, Globbing.swift, Open+Copyable.swift, Open+Readable.swift (in target 'Pathman' from project 'Pathman')
SwiftDriver\ Compilation Pathman normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Pathman' from project 'Pathman')
    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 Pathman -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cdirent.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cglob.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman-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/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.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/Pathman.build/Debug/Pathman.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Cdirent/Sources/Cdirent/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Cglob/Sources/Cglob/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.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/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.o normal (in target 'Pathman' from project 'Pathman')
    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-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.o
ExtractAppIntentsMetadata (in target 'Pathman' from project 'Pathman')
    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 Pathman --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.Pathman --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Pathman.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Pathman.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug/Pathman.build/Objects-normal/arm64/Pathman.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-25 14:20:19.285 appintentsmetadataprocessor[980:5135] Starting appintentsmetadataprocessor export
2025-04-25 14:20:19.320 appintentsmetadataprocessor[980:5135] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.o (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pathman.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:a1309ee72700af39e2b0122101fcab3cba84622e, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:a1309ee72700af39e2b0122101fcab3cba84622e, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:a1309ee72700af39e2b0122101fcab3cba84622e, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:a1309ee72700af39e2b0122101fcab3cba84622e, name:My Mac }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "errno",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.5.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Ponyboy47/ErrNo"
    },
    {
      "identity" : "cdirent",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Ponyboy47/Cdirent"
    },
    {
      "identity" : "cglob",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Ponyboy47/Cglob"
    },
    {
      "identity" : "swiftshell",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.0.1",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kareman/SwiftShell"
    }
  ],
  "manifest_display_name" : "Pathman",
  "name" : "Pathman",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Pathman",
      "targets" : [
        "Pathman"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "PathmanTests",
      "module_type" : "SwiftTarget",
      "name" : "PathmanTests",
      "path" : "Tests/PathmanTests",
      "product_dependencies" : [
        "SwiftShell"
      ],
      "sources" : [
        "Binding Tests.swift",
        "ChmodTests.swift",
        "ChownTests.swift",
        "CopyTests.swift",
        "CreateDeleteTests.swift",
        "FileBitsTests.swift",
        "FileModeTests.swift",
        "FilePermissionsTests.swift",
        "GlobTests.swift",
        "LinkTests.swift",
        "MoveTests.swift",
        "OpenTests.swift",
        "PathCollectionTests.swift",
        "PathTests.swift",
        "StatTests.swift",
        "TemporaryTests.swift",
        "UtilityTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Pathman"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Pathman",
      "module_type" : "SwiftTarget",
      "name" : "Pathman",
      "path" : "Sources/Pathman",
      "product_dependencies" : [
        "ErrNo",
        "Cdirent",
        "Cglob"
      ],
      "product_memberships" : [
        "Pathman"
      ],
      "sources" : [
        "Binding/Binding+Accept.swift",
        "Binding/Binding+Listen.swift",
        "Binding/Binding.swift",
        "CInterop/ByteRepresentable.swift",
        "CInterop/PlatformCTypes.swift",
        "CInterop/flags/glob/GlobFlags.swift",
        "CInterop/flags/open/OpenFileMode.swift",
        "CInterop/flags/recv/ReceiveFlags.swift",
        "CInterop/flags/send/SendFlags.swift",
        "CInterop/mode_t/FileBits.swift",
        "CInterop/mode_t/FileMode.swift",
        "CInterop/mode_t/FilePermissions.swift",
        "CInterop/mode_t/PathType.swift",
        "CInterop/mode_t/UMask.swift",
        "CInterop/readdir/DirectoryChildren+Iterator.swift",
        "CInterop/readdir/DirectoryChildren+Sortable.swift",
        "CInterop/readdir/DirectoryChildren.swift",
        "CInterop/seek/Offset.swift",
        "CInterop/socket/SocketDomain.swift",
        "CInterop/socket/SocketType.swift",
        "CInterop/stat/StatAttributes.swift",
        "CInterop/stdio/setbuf.swift",
        "CharacterPath/CharacterPath+Openable.swift",
        "CharacterPath/CharacterPath+Readable.swift",
        "CharacterPath/CharacterPath+Writable.swift",
        "CharacterPath/CharacterPath.swift",
        "CharacterPath/OpenCharacter.swift",
        "Connection/Connection+Readable.swift",
        "Connection/Connection+Writable.swift",
        "Connection/Connection.swift",
        "Directory/DirectoryPath+Copyable.swift",
        "Directory/DirectoryPath+Creatable.swift",
        "Directory/DirectoryPath+Deletable.swift",
        "Directory/DirectoryPath+DirectoryEnumerable.swift",
        "Directory/DirectoryPath+Openable.swift",
        "Directory/DirectoryPath.swift",
        "Directory/OpenDirectory.swift",
        "DirectoryEnumerable/DirectoryEnumerable+Deletable.swift",
        "DirectoryEnumerable/DirectoryEnumerable+Ownable.swift",
        "DirectoryEnumerable/DirectoryEnumerable+Permissionable.swift",
        "Errors/ErrNo.swift",
        "Errors/Generic.swift",
        "File/FilePath+Copyable.swift",
        "File/FilePath+Creatable.swift",
        "File/FilePath+Openable.swift",
        "File/FilePath+Readable.swift",
        "File/FilePath+Seekable.swift",
        "File/FilePath+StandardStreams.swift",
        "File/FilePath+Writable.swift",
        "File/FilePath.swift",
        "File/OpenFile.swift",
        "Glob/Glob.swift",
        "Glob/Globbing.swift",
        "Open/Open+Copyable.swift",
        "Open/Open+Readable.swift",
        "Open/Open+Seekable.swift",
        "Open/Open+Writable.swift",
        "Open/Open.swift",
        "Openable/Openable+Copyable.swift",
        "Path/Path+Absolute.swift",
        "Path/Path+Ancester.swift",
        "Path/Path+Codable.swift",
        "Path/Path+Comparable.swift",
        "Path/Path+Deletable.swift",
        "Path/Path+Equatable.swift",
        "Path/Path+Generic.swift",
        "Path/Path+HomeDirectory.swift",
        "Path/Path+Iterator.swift",
        "Path/Path+Links.swift",
        "Path/Path+Movable.swift",
        "Path/Path+Ownable.swift",
        "Path/Path+Permissionable.swift",
        "Path/Path+Relative.swift",
        "Path/Path+Temporary.swift",
        "Protocols/Copyable.swift",
        "Protocols/Creatable.swift",
        "Protocols/Deletable.swift",
        "Protocols/DirectoryEnumerable.swift",
        "Protocols/Movable.swift",
        "Protocols/Openable.swift",
        "Protocols/Ownable.swift",
        "Protocols/Path.swift",
        "Protocols/Permissionable.swift",
        "Protocols/Readable.swift",
        "Protocols/Seekable.swift",
        "Protocols/Stat.swift",
        "Protocols/StatDescriptor.swift",
        "Protocols/StatPath.swift",
        "Protocols/Statable.swift",
        "Protocols/Writable.swift",
        "Readable/Readable+Helpers.swift",
        "Readable/Readable+UnusedHelpers.swift",
        "Readable/ReadableByOpened+Helpers.swift",
        "Socket/OpenSocket.swift",
        "Socket/SocketPath+Bindable.swift",
        "Socket/SocketPath+Connectable.swift",
        "Socket/SocketPath+Openable.swift",
        "Socket/SocketPath+Readable.swift",
        "Socket/SocketPath+Writable.swift",
        "Socket/SocketPath.swift",
        "Stat/StatInfo.swift",
        "Stat/StatOptions.swift",
        "Stat/Statable+Attributes.swift",
        "Stat/Statable+Ownable.swift",
        "Stat/Statable+Permissionable.swift",
        "Utilities/NilCoalescing.swift",
        "Utilities/Toggled.swift",
        "Writable/Writable+Helpers.swift",
        "Writable/WritableByOpened+Helpers.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.