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.0 for tvOS using Xcode 16.2 on 27 Nov 2024 12:03:38 UTC.

Swift 6 data race errors: 105

Build Command

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

Build Log

/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: annotate 'error' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'unsorted' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'offset' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'noCheck' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'append' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'noEscape' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'alternativeDirectoryFunctions' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'brace' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'noMagic' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'tilde' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'containsGlobbingCharacters' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'limit' with '@MainActor' if property should only be accessed from the main actor
    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
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Accept.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Listen.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/ByteRepresentable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/PlatformCTypes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Openable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/OpenCharacter.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Copyable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Deletable.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 /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 /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 /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 /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 /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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Attributes.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Ownable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Permissionable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/NilCoalescing.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/Toggled.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/Writable+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/WritableByOpened+Helpers.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Pathman_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cdirent.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cglob.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/swift-overrides.hmap -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-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pathman -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'read' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'readPlus' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'write' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'writePlus' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'append' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'appendPlus' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'binary' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'closeOnExecute' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'exclusive' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    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
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Accept.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Listen.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/ByteRepresentable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/PlatformCTypes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Openable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/OpenCharacter.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Copyable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Deletable.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 /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 /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 /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 /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 /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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Attributes.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Ownable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Permissionable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/NilCoalescing.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/Toggled.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/Writable+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/WritableByOpened+Helpers.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Pathman_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cdirent.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cglob.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/swift-overrides.hmap -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-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pathman -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'dontWait' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'outOfBound' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'peek' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'truncate' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'waitAll' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    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
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Accept.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Listen.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/ByteRepresentable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/PlatformCTypes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Openable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/OpenCharacter.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Copyable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Deletable.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 /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 /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 /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 /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 /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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Attributes.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Ownable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Permissionable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/NilCoalescing.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/Toggled.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/Writable+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/WritableByOpened+Helpers.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Pathman_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cdirent.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cglob.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/swift-overrides.hmap -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-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pathman -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'dontRoute' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'dontWait' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'outOfBound' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    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
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Accept.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Listen.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/ByteRepresentable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/PlatformCTypes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Openable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/OpenCharacter.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Copyable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Deletable.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 /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 /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 /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 /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 /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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Attributes.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Ownable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Permissionable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/NilCoalescing.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/Toggled.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/Writable+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/WritableByOpened+Helpers.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Pathman_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cdirent.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cglob.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/swift-overrides.hmap -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-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pathman -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'uid' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'gid' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'sticky' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    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
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Accept.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding+Listen.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Binding/Binding.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/ByteRepresentable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/PlatformCTypes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/glob/GlobFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/open/OpenFileMode.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/recv/ReceiveFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/flags/send/SendFlags.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileBits.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CInterop/mode_t/FileMode.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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Openable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/CharacterPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/CharacterPath/OpenCharacter.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Readable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection+Writable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Connection/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Copyable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Directory/DirectoryPath+Deletable.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 /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 /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 /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 /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 /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 /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Socket/SocketPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/StatOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Attributes.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Ownable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Stat/Statable+Permissionable.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/NilCoalescing.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Utilities/Toggled.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/Writable+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/Pathman/Writable/WritableByOpened+Helpers.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Pathman_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cdirent.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Cglob.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/swift-overrides.hmap -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-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pathman -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Accept.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding+Listen.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Binding.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ByteRepresentable.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/PlatformCTypes.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/GlobFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/OpenFileMode.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/ReceiveFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/SendFlags.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileBits.o -index-unit-output-path /Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/FileMode.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'allPermissions' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'allBits' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    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)
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    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)
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\ 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.1.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-appletvos/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-appletvos/Cdirent.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/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-appletvos/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-appletvos/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-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/Pathman.build/Objects-normal/arm64/Pathman-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
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.1.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-appletvos/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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug-appletvos/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-appletvos/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-appletvos/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-appletvos/ErrNo.build/Objects-normal/arm64/ErrNo_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug-appletvos/ErrNo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug-appletvos/ErrNo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug-appletvos/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-appletvos/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-appletvos/Pathman-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/Pathman.build/Objects-normal/arm64/Pathman-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Pathman-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Pathman.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/Pathman.build/Objects-normal/arm64/Pathman.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Pathman.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Pathman.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/Pathman.build/Objects-normal/arm64/Pathman.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Pathman.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Pathman.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/Pathman.build/Objects-normal/arm64/Pathman.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Pathman.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Pathman.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/Pathman.build/Objects-normal/arm64/Pathman.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Pathman.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ErrNo.o normal (in target 'ErrNo' from project 'ErrNo')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ErrNo
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug-appletvos/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-appletvos/ErrNo.build/Objects-normal/arm64/ErrNo_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug-appletvos/ErrNo.build/Objects-normal/arm64/ErrNo.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ErrNo.build/Debug-appletvos/ErrNo.build/Objects-normal/arm64/ErrNo_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ErrNo.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/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-appletvos/ErrNo.o
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 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 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 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 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 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 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 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')
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')
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.1.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-appletvos/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-appletvos/Cdirent.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/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-appletvos/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-appletvos/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-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/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-appletvos/Pathman.o normal (in target 'Pathman' from project 'Pathman')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/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-appletvos/Pathman.build/Objects-normal/arm64/Pathman_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Pathman.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pathman.build/Debug-appletvos/Pathman.build/Objects-normal/arm64/Pathman_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Pathman.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/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-appletvos/Pathman.o
** BUILD SUCCEEDED **
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.