Build Information
Failed to build PerfectLib with Swift 6.0 for watchOS using Xcode 16.0.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme PerfectLib -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:226:21: warning: static property 'rwxUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
224 |
225 | /// Read, write, execute by user.
226 | public static let rwxUser: PermissionMode = [.readUser, .writeUser, .executeUser]
| |- warning: static property 'rwxUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rwxUser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
227 | /// Read, write by user and group.
228 | public static let rwUserGroup: PermissionMode = [.readUser, .writeUser, .readGroup, .writeGroup]
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:231:21: warning: static property 'rxGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
229 |
230 | /// Read, execute by group.
231 | public static let rxGroup: PermissionMode = [.readGroup, .executeGroup]
| |- warning: static property 'rxGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rxGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 | /// Read, execute by other.
233 | public static let rxOther: PermissionMode = [.readOther, .executeOther]
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:233:21: warning: static property 'rxOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
231 | public static let rxGroup: PermissionMode = [.readGroup, .executeGroup]
232 | /// Read, execute by other.
233 | public static let rxOther: PermissionMode = [.readOther, .executeOther]
| |- warning: static property 'rxOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rxOther' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |
235 | }
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:207:21: warning: static property 'readUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
205 |
206 | /// Readable by user.
207 | public static let readUser = PermissionMode(rawValue: S_IRUSR)
| |- warning: static property 'readUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'readUser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
208 | /// Writable by user.
209 | public static let writeUser = PermissionMode(rawValue: S_IWUSR)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:209:21: warning: static property 'writeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
207 | public static let readUser = PermissionMode(rawValue: S_IRUSR)
208 | /// Writable by user.
209 | public static let writeUser = PermissionMode(rawValue: S_IWUSR)
| |- warning: static property 'writeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'writeUser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
210 | /// Executable by user.
211 | public static let executeUser = PermissionMode(rawValue: S_IXUSR)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:211:21: warning: static property 'executeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
209 | public static let writeUser = PermissionMode(rawValue: S_IWUSR)
210 | /// Executable by user.
211 | public static let executeUser = PermissionMode(rawValue: S_IXUSR)
| |- warning: static property 'executeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'executeUser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 | /// Readable by group.
213 | public static let readGroup = PermissionMode(rawValue: S_IRGRP)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:213:21: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
211 | public static let executeUser = PermissionMode(rawValue: S_IXUSR)
212 | /// Readable by group.
213 | public static let readGroup = PermissionMode(rawValue: S_IRGRP)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'readGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 | /// Writable by group.
215 | public static let writeGroup = PermissionMode(rawValue: S_IWGRP)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:215:21: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
213 | public static let readGroup = PermissionMode(rawValue: S_IRGRP)
214 | /// Writable by group.
215 | public static let writeGroup = PermissionMode(rawValue: S_IWGRP)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'writeGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
216 | /// Executable by group.
217 | public static let executeGroup = PermissionMode(rawValue: S_IXGRP)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:217:21: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
215 | public static let writeGroup = PermissionMode(rawValue: S_IWGRP)
216 | /// Executable by group.
217 | public static let executeGroup = PermissionMode(rawValue: S_IXGRP)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'executeGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
218 | /// Readable by others.
219 | public static let readOther = PermissionMode(rawValue: S_IROTH)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:219:21: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
217 | public static let executeGroup = PermissionMode(rawValue: S_IXGRP)
218 | /// Readable by others.
219 | public static let readOther = PermissionMode(rawValue: S_IROTH)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'readOther' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 | /// Writable by others.
221 | public static let writeOther = PermissionMode(rawValue: S_IWOTH)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:221:21: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
219 | public static let readOther = PermissionMode(rawValue: S_IROTH)
220 | /// Writable by others.
221 | public static let writeOther = PermissionMode(rawValue: S_IWOTH)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'writeOther' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
222 | /// Executable by others.
223 | public static let executeOther = PermissionMode(rawValue: S_IXOTH)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:223:21: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
221 | public static let writeOther = PermissionMode(rawValue: S_IWOTH)
222 | /// Executable by others.
223 | public static let executeOther = PermissionMode(rawValue: S_IXOTH)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'executeOther' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 |
225 | /// Read, write, execute by user.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:228:21: warning: static property 'rwUserGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
226 | public static let rwxUser: PermissionMode = [.readUser, .writeUser, .executeUser]
227 | /// Read, write by user and group.
228 | public static let rwUserGroup: PermissionMode = [.readUser, .writeUser, .readGroup, .writeGroup]
| |- warning: static property 'rwUserGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rwUserGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
229 |
230 | /// Read, execute by group.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift:36:24: warning: static property 'jsonDecodableRegistry' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 | public typealias JSONConvertibleObjectCreator = () -> JSONConvertibleObject
35 |
36 | static private var jsonDecodableRegistry = [String:JSONConvertibleObjectCreator]()
| |- warning: static property 'jsonDecodableRegistry' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'jsonDecodableRegistry' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'jsonDecodableRegistry' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Register a custom object to be JSON encoded/decoded.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift:101:10: warning: associated value 'notConvertible' of 'Sendable'-conforming enum 'JSONConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
99 | public enum JSONConversionError: Error {
100 | /// The object did not suppport JSON conversion.
101 | case notConvertible(Any?)
| `- warning: associated value 'notConvertible' of 'Sendable'-conforming enum 'JSONConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
102 | /// A provided key was not a String.
103 | case invalidKey(Any)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift:103:10: warning: associated value 'invalidKey' of 'Sendable'-conforming enum 'JSONConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
101 | case notConvertible(Any?)
102 | /// A provided key was not a String.
103 | case invalidKey(Any)
| `- warning: associated value 'invalidKey' of 'Sendable'-conforming enum 'JSONConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
104 | /// The JSON text contained a syntax error.
105 | case syntaxError
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift:148:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
146 | private init(){}
147 |
148 | public static var logger: Logger = ConsoleLogger()
| |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'logger' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 |
150 | /// Whether or not to even off the log messages
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift:152:20: warning: static property 'even' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
150 | /// Whether or not to even off the log messages
151 | /// If set to true log messages will be inline with each other
152 | public static var even = false
| |- warning: static property 'even' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'even' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'even' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |
154 | public static func debug(message: @autoclosure () -> String) {
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:108:3: error: 'posix_spawn_file_actions_init' is unavailable in watchOS
106 | var spawnRes = 0
107 | #else
108 | posix_spawn_file_actions_init(&action);
| `- error: 'posix_spawn_file_actions_init' is unavailable in watchOS
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
Darwin.posix_spawn_file_actions_init:2:13: note: 'posix_spawn_file_actions_init' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_init(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!) -> Int32
| `- note: 'posix_spawn_file_actions_init' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:108:3: warning: result of call to 'posix_spawn_file_actions_init' is unused
106 | var spawnRes = 0
107 | #else
108 | posix_spawn_file_actions_init(&action);
| `- warning: result of call to 'posix_spawn_file_actions_init' is unused
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:109:3: error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
107 | #else
108 | posix_spawn_file_actions_init(&action);
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
| `- error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
Darwin.posix_spawn_file_actions_adddup2:2:13: note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_adddup2(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:109:3: warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
107 | #else
108 | posix_spawn_file_actions_init(&action);
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
| `- warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:110:3: error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
108 | posix_spawn_file_actions_init(&action);
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
| `- error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
112 |
Darwin.posix_spawn_file_actions_adddup2:2:13: note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_adddup2(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:110:3: warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
108 | posix_spawn_file_actions_init(&action);
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
| `- warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
112 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:111:3: error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
| `- error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
Darwin.posix_spawn_file_actions_adddup2:2:13: note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_adddup2(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:111:3: warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
| `- warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:113:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:113:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:114:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:114:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:115:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:115:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:116:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:116:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:117:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
119 |
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:117:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
119 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:118:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
119 |
120 | posix_spawnattr_init(&attr)
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:118:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
119 |
120 | posix_spawnattr_init(&attr)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:120:3: error: 'posix_spawnattr_init' is unavailable in watchOS
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
119 |
120 | posix_spawnattr_init(&attr)
| `- error: 'posix_spawnattr_init' is unavailable in watchOS
121 |
122 | if newGroup {
Darwin.posix_spawnattr_init:2:13: note: 'posix_spawnattr_init' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawnattr_init(_: UnsafeMutablePointer<posix_spawnattr_t?>!) -> Int32
| `- note: 'posix_spawnattr_init' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:120:3: warning: result of call to 'posix_spawnattr_init' is unused
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
119 |
120 | posix_spawnattr_init(&attr)
| `- warning: result of call to 'posix_spawnattr_init' is unused
121 |
122 | if newGroup {
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:125:4: error: 'posix_spawnattr_setflags' is unavailable in watchOS
123 | // By default, all flags are unset after the init call
124 | // so no need to OR in the existing flags.
125 | posix_spawnattr_setflags(&attr, Int16(POSIX_SPAWN_SETPGROUP))
| `- error: 'posix_spawnattr_setflags' is unavailable in watchOS
126 | }
127 |
Darwin.posix_spawnattr_setflags:2:13: note: 'posix_spawnattr_setflags' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawnattr_setflags(_: UnsafeMutablePointer<posix_spawnattr_t?>!, _: Int16) -> Int32
| `- note: 'posix_spawnattr_setflags' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:125:4: warning: result of call to 'posix_spawnattr_setflags' is unused
123 | // By default, all flags are unset after the init call
124 | // so no need to OR in the existing flags.
125 | posix_spawnattr_setflags(&attr, Int16(POSIX_SPAWN_SETPGROUP))
| `- warning: result of call to 'posix_spawnattr_setflags' is unused
126 | }
127 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:130:3: error: 'posix_spawn_file_actions_destroy' is unavailable in watchOS
128 | var procPid = pid_t()
129 | let spawnRes = posix_spawnp(&procPid, cmd, &action, &attr, cArgs, cEnv)
130 | posix_spawn_file_actions_destroy(&action)
| `- error: 'posix_spawn_file_actions_destroy' is unavailable in watchOS
131 | posix_spawnattr_destroy(&attr)
132 |
Darwin.posix_spawn_file_actions_destroy:2:13: note: 'posix_spawn_file_actions_destroy' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_destroy(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!) -> Int32
| `- note: 'posix_spawn_file_actions_destroy' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:130:3: warning: result of call to 'posix_spawn_file_actions_destroy' is unused
128 | var procPid = pid_t()
129 | let spawnRes = posix_spawnp(&procPid, cmd, &action, &attr, cArgs, cEnv)
130 | posix_spawn_file_actions_destroy(&action)
| `- warning: result of call to 'posix_spawn_file_actions_destroy' is unused
131 | posix_spawnattr_destroy(&attr)
132 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:131:3: error: 'posix_spawnattr_destroy' is unavailable in watchOS
129 | let spawnRes = posix_spawnp(&procPid, cmd, &action, &attr, cArgs, cEnv)
130 | posix_spawn_file_actions_destroy(&action)
131 | posix_spawnattr_destroy(&attr)
| `- error: 'posix_spawnattr_destroy' is unavailable in watchOS
132 |
133 | for idx in 0..<cArgsCount {
Darwin.posix_spawnattr_destroy:2:13: note: 'posix_spawnattr_destroy' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawnattr_destroy(_: UnsafeMutablePointer<posix_spawnattr_t?>!) -> Int32
| `- note: 'posix_spawnattr_destroy' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:131:3: warning: result of call to 'posix_spawnattr_destroy' is unused
129 | let spawnRes = posix_spawnp(&procPid, cmd, &action, &attr, cArgs, cEnv)
130 | posix_spawn_file_actions_destroy(&action)
131 | posix_spawnattr_destroy(&attr)
| `- warning: result of call to 'posix_spawnattr_destroy' is unused
132 |
133 | for idx in 0..<cArgsCount {
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ PerfectLib (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:226:21: warning: static property 'rwxUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
224 |
225 | /// Read, write, execute by user.
226 | public static let rwxUser: PermissionMode = [.readUser, .writeUser, .executeUser]
| |- warning: static property 'rwxUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rwxUser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
227 | /// Read, write by user and group.
228 | public static let rwUserGroup: PermissionMode = [.readUser, .writeUser, .readGroup, .writeGroup]
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:231:21: warning: static property 'rxGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
229 |
230 | /// Read, execute by group.
231 | public static let rxGroup: PermissionMode = [.readGroup, .executeGroup]
| |- warning: static property 'rxGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rxGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 | /// Read, execute by other.
233 | public static let rxOther: PermissionMode = [.readOther, .executeOther]
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:233:21: warning: static property 'rxOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
231 | public static let rxGroup: PermissionMode = [.readGroup, .executeGroup]
232 | /// Read, execute by other.
233 | public static let rxOther: PermissionMode = [.readOther, .executeOther]
| |- warning: static property 'rxOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rxOther' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |
235 | }
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:207:21: warning: static property 'readUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
205 |
206 | /// Readable by user.
207 | public static let readUser = PermissionMode(rawValue: S_IRUSR)
| |- warning: static property 'readUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'readUser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
208 | /// Writable by user.
209 | public static let writeUser = PermissionMode(rawValue: S_IWUSR)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:209:21: warning: static property 'writeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
207 | public static let readUser = PermissionMode(rawValue: S_IRUSR)
208 | /// Writable by user.
209 | public static let writeUser = PermissionMode(rawValue: S_IWUSR)
| |- warning: static property 'writeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'writeUser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
210 | /// Executable by user.
211 | public static let executeUser = PermissionMode(rawValue: S_IXUSR)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:211:21: warning: static property 'executeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
209 | public static let writeUser = PermissionMode(rawValue: S_IWUSR)
210 | /// Executable by user.
211 | public static let executeUser = PermissionMode(rawValue: S_IXUSR)
| |- warning: static property 'executeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'executeUser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 | /// Readable by group.
213 | public static let readGroup = PermissionMode(rawValue: S_IRGRP)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:213:21: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
211 | public static let executeUser = PermissionMode(rawValue: S_IXUSR)
212 | /// Readable by group.
213 | public static let readGroup = PermissionMode(rawValue: S_IRGRP)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'readGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 | /// Writable by group.
215 | public static let writeGroup = PermissionMode(rawValue: S_IWGRP)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:215:21: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
213 | public static let readGroup = PermissionMode(rawValue: S_IRGRP)
214 | /// Writable by group.
215 | public static let writeGroup = PermissionMode(rawValue: S_IWGRP)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'writeGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
216 | /// Executable by group.
217 | public static let executeGroup = PermissionMode(rawValue: S_IXGRP)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:217:21: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
215 | public static let writeGroup = PermissionMode(rawValue: S_IWGRP)
216 | /// Executable by group.
217 | public static let executeGroup = PermissionMode(rawValue: S_IXGRP)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'executeGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
218 | /// Readable by others.
219 | public static let readOther = PermissionMode(rawValue: S_IROTH)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:219:21: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
217 | public static let executeGroup = PermissionMode(rawValue: S_IXGRP)
218 | /// Readable by others.
219 | public static let readOther = PermissionMode(rawValue: S_IROTH)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'readOther' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 | /// Writable by others.
221 | public static let writeOther = PermissionMode(rawValue: S_IWOTH)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:221:21: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
219 | public static let readOther = PermissionMode(rawValue: S_IROTH)
220 | /// Writable by others.
221 | public static let writeOther = PermissionMode(rawValue: S_IWOTH)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'writeOther' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
222 | /// Executable by others.
223 | public static let executeOther = PermissionMode(rawValue: S_IXOTH)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:223:21: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
221 | public static let writeOther = PermissionMode(rawValue: S_IWOTH)
222 | /// Executable by others.
223 | public static let executeOther = PermissionMode(rawValue: S_IXOTH)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'executeOther' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 |
225 | /// Read, write, execute by user.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:228:21: warning: static property 'rwUserGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 | /// A file or directory access permission value.
190 | struct PermissionMode: OptionSet {
| `- note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
191 | /// File system mode type.
192 | public typealias Mode = mode_t
:
226 | public static let rwxUser: PermissionMode = [.readUser, .writeUser, .executeUser]
227 | /// Read, write by user and group.
228 | public static let rwUserGroup: PermissionMode = [.readUser, .writeUser, .readGroup, .writeGroup]
| |- warning: static property 'rwUserGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rwUserGroup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
229 |
230 | /// Read, execute by group.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift:36:24: warning: static property 'jsonDecodableRegistry' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 | public typealias JSONConvertibleObjectCreator = () -> JSONConvertibleObject
35 |
36 | static private var jsonDecodableRegistry = [String:JSONConvertibleObjectCreator]()
| |- warning: static property 'jsonDecodableRegistry' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'jsonDecodableRegistry' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'jsonDecodableRegistry' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Register a custom object to be JSON encoded/decoded.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift:101:10: warning: associated value 'notConvertible' of 'Sendable'-conforming enum 'JSONConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
99 | public enum JSONConversionError: Error {
100 | /// The object did not suppport JSON conversion.
101 | case notConvertible(Any?)
| `- warning: associated value 'notConvertible' of 'Sendable'-conforming enum 'JSONConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
102 | /// A provided key was not a String.
103 | case invalidKey(Any)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift:103:10: warning: associated value 'invalidKey' of 'Sendable'-conforming enum 'JSONConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
101 | case notConvertible(Any?)
102 | /// A provided key was not a String.
103 | case invalidKey(Any)
| `- warning: associated value 'invalidKey' of 'Sendable'-conforming enum 'JSONConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
104 | /// The JSON text contained a syntax error.
105 | case syntaxError
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift:148:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
146 | private init(){}
147 |
148 | public static var logger: Logger = ConsoleLogger()
| |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'logger' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 |
150 | /// Whether or not to even off the log messages
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift:152:20: warning: static property 'even' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
150 | /// Whether or not to even off the log messages
151 | /// If set to true log messages will be inline with each other
152 | public static var even = false
| |- warning: static property 'even' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'even' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'even' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |
154 | public static func debug(message: @autoclosure () -> String) {
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:108:3: error: 'posix_spawn_file_actions_init' is unavailable in watchOS
106 | var spawnRes = 0
107 | #else
108 | posix_spawn_file_actions_init(&action);
| `- error: 'posix_spawn_file_actions_init' is unavailable in watchOS
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
Darwin.posix_spawn_file_actions_init:2:13: note: 'posix_spawn_file_actions_init' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_init(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!) -> Int32
| `- note: 'posix_spawn_file_actions_init' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:108:3: warning: result of call to 'posix_spawn_file_actions_init' is unused
106 | var spawnRes = 0
107 | #else
108 | posix_spawn_file_actions_init(&action);
| `- warning: result of call to 'posix_spawn_file_actions_init' is unused
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:109:3: error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
107 | #else
108 | posix_spawn_file_actions_init(&action);
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
| `- error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
Darwin.posix_spawn_file_actions_adddup2:2:13: note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_adddup2(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:109:3: warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
107 | #else
108 | posix_spawn_file_actions_init(&action);
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
| `- warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:110:3: error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
108 | posix_spawn_file_actions_init(&action);
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
| `- error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
112 |
Darwin.posix_spawn_file_actions_adddup2:2:13: note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_adddup2(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:110:3: warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
108 | posix_spawn_file_actions_init(&action);
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
| `- warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
112 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:111:3: error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
| `- error: 'posix_spawn_file_actions_adddup2' is unavailable in watchOS
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
Darwin.posix_spawn_file_actions_adddup2:2:13: note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_adddup2(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_adddup2' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:111:3: warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
109 | posix_spawn_file_actions_adddup2(&action, fSTDOUT[1], STDOUT_FILENO);
110 | posix_spawn_file_actions_adddup2(&action, fSTDIN[0], STDIN_FILENO);
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
| `- warning: result of call to 'posix_spawn_file_actions_adddup2' is unused
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:113:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:113:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
111 | posix_spawn_file_actions_adddup2(&action, fSTDERR[1], STDERR_FILENO);
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:114:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:114:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
112 |
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:115:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:115:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
113 | posix_spawn_file_actions_addclose(&action, fSTDOUT[0]);
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:116:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:116:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
114 | posix_spawn_file_actions_addclose(&action, fSTDIN[0]);
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:117:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
119 |
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:117:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
115 | posix_spawn_file_actions_addclose(&action, fSTDERR[0]);
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
119 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:118:3: error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
| `- error: 'posix_spawn_file_actions_addclose' is unavailable in watchOS
119 |
120 | posix_spawnattr_init(&attr)
Darwin.posix_spawn_file_actions_addclose:2:13: note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_addclose(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!, _: Int32) -> Int32
| `- note: 'posix_spawn_file_actions_addclose' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:118:3: warning: result of call to 'posix_spawn_file_actions_addclose' is unused
116 | posix_spawn_file_actions_addclose(&action, fSTDOUT[1]);
117 | posix_spawn_file_actions_addclose(&action, fSTDIN[1]);
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
| `- warning: result of call to 'posix_spawn_file_actions_addclose' is unused
119 |
120 | posix_spawnattr_init(&attr)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:120:3: error: 'posix_spawnattr_init' is unavailable in watchOS
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
119 |
120 | posix_spawnattr_init(&attr)
| `- error: 'posix_spawnattr_init' is unavailable in watchOS
121 |
122 | if newGroup {
Darwin.posix_spawnattr_init:2:13: note: 'posix_spawnattr_init' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawnattr_init(_: UnsafeMutablePointer<posix_spawnattr_t?>!) -> Int32
| `- note: 'posix_spawnattr_init' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:120:3: warning: result of call to 'posix_spawnattr_init' is unused
118 | posix_spawn_file_actions_addclose(&action, fSTDERR[1]);
119 |
120 | posix_spawnattr_init(&attr)
| `- warning: result of call to 'posix_spawnattr_init' is unused
121 |
122 | if newGroup {
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:125:4: error: 'posix_spawnattr_setflags' is unavailable in watchOS
123 | // By default, all flags are unset after the init call
124 | // so no need to OR in the existing flags.
125 | posix_spawnattr_setflags(&attr, Int16(POSIX_SPAWN_SETPGROUP))
| `- error: 'posix_spawnattr_setflags' is unavailable in watchOS
126 | }
127 |
Darwin.posix_spawnattr_setflags:2:13: note: 'posix_spawnattr_setflags' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawnattr_setflags(_: UnsafeMutablePointer<posix_spawnattr_t?>!, _: Int16) -> Int32
| `- note: 'posix_spawnattr_setflags' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:125:4: warning: result of call to 'posix_spawnattr_setflags' is unused
123 | // By default, all flags are unset after the init call
124 | // so no need to OR in the existing flags.
125 | posix_spawnattr_setflags(&attr, Int16(POSIX_SPAWN_SETPGROUP))
| `- warning: result of call to 'posix_spawnattr_setflags' is unused
126 | }
127 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:130:3: error: 'posix_spawn_file_actions_destroy' is unavailable in watchOS
128 | var procPid = pid_t()
129 | let spawnRes = posix_spawnp(&procPid, cmd, &action, &attr, cArgs, cEnv)
130 | posix_spawn_file_actions_destroy(&action)
| `- error: 'posix_spawn_file_actions_destroy' is unavailable in watchOS
131 | posix_spawnattr_destroy(&attr)
132 |
Darwin.posix_spawn_file_actions_destroy:2:13: note: 'posix_spawn_file_actions_destroy' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawn_file_actions_destroy(_: UnsafeMutablePointer<posix_spawn_file_actions_t?>!) -> Int32
| `- note: 'posix_spawn_file_actions_destroy' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:130:3: warning: result of call to 'posix_spawn_file_actions_destroy' is unused
128 | var procPid = pid_t()
129 | let spawnRes = posix_spawnp(&procPid, cmd, &action, &attr, cArgs, cEnv)
130 | posix_spawn_file_actions_destroy(&action)
| `- warning: result of call to 'posix_spawn_file_actions_destroy' is unused
131 | posix_spawnattr_destroy(&attr)
132 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:131:3: error: 'posix_spawnattr_destroy' is unavailable in watchOS
129 | let spawnRes = posix_spawnp(&procPid, cmd, &action, &attr, cArgs, cEnv)
130 | posix_spawn_file_actions_destroy(&action)
131 | posix_spawnattr_destroy(&attr)
| `- error: 'posix_spawnattr_destroy' is unavailable in watchOS
132 |
133 | for idx in 0..<cArgsCount {
Darwin.posix_spawnattr_destroy:2:13: note: 'posix_spawnattr_destroy' has been explicitly marked unavailable here
1 | @available(watchOS, unavailable)
2 | public func posix_spawnattr_destroy(_: UnsafeMutablePointer<posix_spawnattr_t?>!) -> Int32
| `- note: 'posix_spawnattr_destroy' has been explicitly marked unavailable here
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift:131:3: warning: result of call to 'posix_spawnattr_destroy' is unused
129 | let spawnRes = posix_spawnp(&procPid, cmd, &action, &attr, cArgs, cEnv)
130 | posix_spawn_file_actions_destroy(&action)
131 | posix_spawnattr_destroy(&attr)
| `- warning: result of call to 'posix_spawnattr_destroy' is unused
132 |
133 | for idx in 0..<cArgsCount {
SwiftCompile normal arm64_32 Compiling\ Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64_32/Dir.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/armv7k/File.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:207:21: warning: static property 'readUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readUser = PermissionMode(rawValue: S_IRUSR)
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:207:21: note: annotate 'readUser' with '@MainActor' if property should only be accessed from the main actor
public static let readUser = PermissionMode(rawValue: S_IRUSR)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:207:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readUser = PermissionMode(rawValue: S_IRUSR)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:209:21: warning: static property 'writeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let writeUser = PermissionMode(rawValue: S_IWUSR)
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:209:21: note: annotate 'writeUser' with '@MainActor' if property should only be accessed from the main actor
public static let writeUser = PermissionMode(rawValue: S_IWUSR)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:209:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let writeUser = PermissionMode(rawValue: S_IWUSR)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:211:21: warning: static property 'executeUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let executeUser = PermissionMode(rawValue: S_IXUSR)
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:211:21: note: annotate 'executeUser' with '@MainActor' if property should only be accessed from the main actor
public static let executeUser = PermissionMode(rawValue: S_IXUSR)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:211:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let executeUser = PermissionMode(rawValue: S_IXUSR)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:213:21: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readGroup = PermissionMode(rawValue: S_IRGRP)
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:213:21: note: annotate 'readGroup' with '@MainActor' if property should only be accessed from the main actor
public static let readGroup = PermissionMode(rawValue: S_IRGRP)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:213:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readGroup = PermissionMode(rawValue: S_IRGRP)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:215:21: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let writeGroup = PermissionMode(rawValue: S_IWGRP)
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:215:21: note: annotate 'writeGroup' with '@MainActor' if property should only be accessed from the main actor
public static let writeGroup = PermissionMode(rawValue: S_IWGRP)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:215:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let writeGroup = PermissionMode(rawValue: S_IWGRP)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:217:21: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let executeGroup = PermissionMode(rawValue: S_IXGRP)
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:217:21: note: annotate 'executeGroup' with '@MainActor' if property should only be accessed from the main actor
public static let executeGroup = PermissionMode(rawValue: S_IXGRP)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:217:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let executeGroup = PermissionMode(rawValue: S_IXGRP)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:219:21: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readOther = PermissionMode(rawValue: S_IROTH)
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:219:21: note: annotate 'readOther' with '@MainActor' if property should only be accessed from the main actor
public static let readOther = PermissionMode(rawValue: S_IROTH)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:219:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readOther = PermissionMode(rawValue: S_IROTH)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:221:21: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let writeOther = PermissionMode(rawValue: S_IWOTH)
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:221:21: note: annotate 'writeOther' with '@MainActor' if property should only be accessed from the main actor
public static let writeOther = PermissionMode(rawValue: S_IWOTH)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:221:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let writeOther = PermissionMode(rawValue: S_IWOTH)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:223:21: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let executeOther = PermissionMode(rawValue: S_IXOTH)
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:223:21: note: annotate 'executeOther' with '@MainActor' if property should only be accessed from the main actor
public static let executeOther = PermissionMode(rawValue: S_IXOTH)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:223:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let executeOther = PermissionMode(rawValue: S_IXOTH)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:226:21: warning: static property 'rwxUser' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let rwxUser: PermissionMode = [.readUser, .writeUser, .executeUser]
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:226:21: note: annotate 'rwxUser' with '@MainActor' if property should only be accessed from the main actor
public static let rwxUser: PermissionMode = [.readUser, .writeUser, .executeUser]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:226:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let rwxUser: PermissionMode = [.readUser, .writeUser, .executeUser]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:228:21: warning: static property 'rwUserGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let rwUserGroup: PermissionMode = [.readUser, .writeUser, .readGroup, .writeGroup]
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:228:21: note: annotate 'rwUserGroup' with '@MainActor' if property should only be accessed from the main actor
public static let rwUserGroup: PermissionMode = [.readUser, .writeUser, .readGroup, .writeGroup]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:228:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let rwUserGroup: PermissionMode = [.readUser, .writeUser, .readGroup, .writeGroup]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:231:21: warning: static property 'rxGroup' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let rxGroup: PermissionMode = [.readGroup, .executeGroup]
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:231:21: note: annotate 'rxGroup' with '@MainActor' if property should only be accessed from the main actor
public static let rxGroup: PermissionMode = [.readGroup, .executeGroup]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:231:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let rxGroup: PermissionMode = [.readGroup, .executeGroup]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:233:21: warning: static property 'rxOther' is not concurrency-safe because non-'Sendable' type 'File.PermissionMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let rxOther: PermissionMode = [.readOther, .executeOther]
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:190:9: note: consider making struct 'PermissionMode' conform to the 'Sendable' protocol
struct PermissionMode: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:233:21: note: annotate 'rxOther' with '@MainActor' if property should only be accessed from the main actor
public static let rxOther: PermissionMode = [.readOther, .executeOther]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:233:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let rxOther: PermissionMode = [.readOther, .executeOther]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:120:15: error: 'wordexp' is unavailable in watchOS
guard 0 == wordexp(inPath, &wexp, 0),
^~~~~~~
Darwin.wordexp:2:13: note: 'wordexp' has been explicitly marked unavailable here
public func wordexp(_: UnsafePointer<CChar>!, _: UnsafeMutablePointer<wordexp_t>!, _: Int32) -> Int32
^
/Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift:125:5: error: 'wordfree' is unavailable in watchOS
wordfree(&wexp)
^~~~~~~~
Darwin.wordfree:2:13: note: 'wordfree' has been explicitly marked unavailable here
public func wordfree(_: UnsafeMutablePointer<wordexp_t>!)
^
SwiftEmitModule normal arm64 Emitting\ module\ for\ PerfectLib (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib.abi.json
SwiftCompile normal arm64 Compiling\ Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Dir.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/JSONConvertible.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/Bytes.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal armv7k Compiling PerfectError.swift (in target 'PerfectLib' from project 'PerfectLib')
SwiftCompile normal arm64 Compiling\ PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectError.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift (in target 'PerfectLib' from project 'PerfectLib')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Bytes.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Dir.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/JSONConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Log.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectServer.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectLib_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PerfectLib -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectServer.o -index-unit-output-path /PerfectLib.build/Debug-watchos/PerfectLib.build/Objects-normal/arm64/PerfectServer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'PerfectLib' from project 'PerfectLib')
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal armv7k Compiling\ SysProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift (in target 'PerfectLib' from project 'PerfectLib')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/SysProcess.swift (in target 'PerfectLib' from project 'PerfectLib')
SwiftEmitModule normal armv7k Emitting\ module\ for\ PerfectLib (in target 'PerfectLib' from project 'PerfectLib')
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ PerfectLib (in target 'PerfectLib' from project 'PerfectLib')
SwiftCompile normal armv7k Compiling\ File.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift (in target 'PerfectLib' from project 'PerfectLib')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/File.swift (in target 'PerfectLib' from project 'PerfectLib')
SwiftCompile normal arm64 Compiling\ PerfectServer.swift /Users/admin/builder/spi-builder-workspace/Sources/PerfectLib/PerfectServer.swift (in target 'PerfectLib' from project 'PerfectLib')
(7 failures)
BUILD FAILURE 6.0 watchOS