The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SwiftPM, reference main (ec2a62), with Swift 6.1 for macOS (SPM) on 12 Sep 2025 03:33:59 UTC.

Swift 6 data race errors: 50

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

 188 |         /// Stream `stdout` and `stderr` via the corresponding closures. If `redirectStderr` is `true`, `stderr` will
 189 |         /// be redirected to `stdout`.
 190 |         case stream(stdout: OutputClosure, stderr: OutputClosure, redirectStderr: Bool)
     |              |- warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
     |              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 191 |
 192 |         /// Stream stdout and stderr as `AsyncSequence` provided as an argument to closures passed to
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:190:14: warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
 188 |         /// Stream `stdout` and `stderr` via the corresponding closures. If `redirectStderr` is `true`, `stderr` will
 189 |         /// be redirected to `stdout`.
 190 |         case stream(stdout: OutputClosure, stderr: OutputClosure, redirectStderr: Bool)
     |              |- warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
     |              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 191 |
 192 |         /// Stream stdout and stderr as `AsyncSequence` provided as an argument to closures passed to
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:265:24: warning: static property '_loggingHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 263 |     package typealias LoggingHandler = (String) -> Void
 264 |
 265 |     private static var _loggingHandler: LoggingHandler?
     |                        |- warning: static property '_loggingHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert '_loggingHandler' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: add '@MainActor' to make static property '_loggingHandler' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 266 |     private static let loggingHandlerLock = NSLock()
 267 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:333:24: warning: static property 'validatedExecutablesMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 331 |     /// Key: Executable name or path.
 332 |     /// Value: Path to the executable, if found.
 333 |     private static var validatedExecutablesMap = [String: AbsolutePath?]()
     |                        |- warning: static property 'validatedExecutablesMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert 'validatedExecutablesMap' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: add '@MainActor' to make static property 'validatedExecutablesMap' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 334 |     private static let validatedExecutablesMapLock = NSLock()
 335 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:361:62: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 359 |         self.outputRedirection = outputRedirection
 360 |         self.startNewProcessGroup = startNewProcessGroup
 361 |         self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
     |                                                              `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 362 |     }
 363 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:387:62: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 385 |         self.outputRedirection = outputRedirection
 386 |         self.startNewProcessGroup = startNewProcessGroup
 387 |         self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
     |                                                              `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 388 |     }
 389 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:190:14: warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
 188 |         /// Stream `stdout` and `stderr` via the corresponding closures. If `redirectStderr` is `true`, `stderr` will
 189 |         /// be redirected to `stdout`.
 190 |         case stream(stdout: OutputClosure, stderr: OutputClosure, redirectStderr: Bool)
     |              |- warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
     |              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 191 |
 192 |         /// Stream stdout and stderr as `AsyncSequence` provided as an argument to closures passed to
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:190:14: warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
 188 |         /// Stream `stdout` and `stderr` via the corresponding closures. If `redirectStderr` is `true`, `stderr` will
 189 |         /// be redirected to `stdout`.
 190 |         case stream(stdout: OutputClosure, stderr: OutputClosure, redirectStderr: Bool)
     |              |- warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
     |              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 191 |
 192 |         /// Stream stdout and stderr as `AsyncSequence` provided as an argument to closures passed to
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:265:24: warning: static property '_loggingHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 263 |     package typealias LoggingHandler = (String) -> Void
 264 |
 265 |     private static var _loggingHandler: LoggingHandler?
     |                        |- warning: static property '_loggingHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert '_loggingHandler' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: add '@MainActor' to make static property '_loggingHandler' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 266 |     private static let loggingHandlerLock = NSLock()
 267 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:333:24: warning: static property 'validatedExecutablesMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 331 |     /// Key: Executable name or path.
 332 |     /// Value: Path to the executable, if found.
 333 |     private static var validatedExecutablesMap = [String: AbsolutePath?]()
     |                        |- warning: static property 'validatedExecutablesMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert 'validatedExecutablesMap' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: add '@MainActor' to make static property 'validatedExecutablesMap' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 334 |     private static let validatedExecutablesMapLock = NSLock()
 335 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:361:62: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 359 |         self.outputRedirection = outputRedirection
 360 |         self.startNewProcessGroup = startNewProcessGroup
 361 |         self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
     |                                                              `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 362 |     }
 363 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:387:62: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 385 |         self.outputRedirection = outputRedirection
 386 |         self.startNewProcessGroup = startNewProcessGroup
 387 |         self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
     |                                                              `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 388 |     }
 389 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:190:14: warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
 188 |         /// Stream `stdout` and `stderr` via the corresponding closures. If `redirectStderr` is `true`, `stderr` will
 189 |         /// be redirected to `stdout`.
 190 |         case stream(stdout: OutputClosure, stderr: OutputClosure, redirectStderr: Bool)
     |              |- warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
     |              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 191 |
 192 |         /// Stream stdout and stderr as `AsyncSequence` provided as an argument to closures passed to
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:190:14: warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
 188 |         /// Stream `stdout` and `stderr` via the corresponding closures. If `redirectStderr` is `true`, `stderr` will
 189 |         /// be redirected to `stdout`.
 190 |         case stream(stdout: OutputClosure, stderr: OutputClosure, redirectStderr: Bool)
     |              |- warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
     |              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 191 |
 192 |         /// Stream stdout and stderr as `AsyncSequence` provided as an argument to closures passed to
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:265:24: warning: static property '_loggingHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 263 |     package typealias LoggingHandler = (String) -> Void
 264 |
 265 |     private static var _loggingHandler: LoggingHandler?
     |                        |- warning: static property '_loggingHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert '_loggingHandler' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: add '@MainActor' to make static property '_loggingHandler' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 266 |     private static let loggingHandlerLock = NSLock()
 267 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:333:24: warning: static property 'validatedExecutablesMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 331 |     /// Key: Executable name or path.
 332 |     /// Value: Path to the executable, if found.
 333 |     private static var validatedExecutablesMap = [String: AbsolutePath?]()
     |                        |- warning: static property 'validatedExecutablesMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert 'validatedExecutablesMap' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: add '@MainActor' to make static property 'validatedExecutablesMap' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 334 |     private static let validatedExecutablesMapLock = NSLock()
 335 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:361:62: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 359 |         self.outputRedirection = outputRedirection
 360 |         self.startNewProcessGroup = startNewProcessGroup
 361 |         self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
     |                                                              `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 362 |     }
 363 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:387:62: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 385 |         self.outputRedirection = outputRedirection
 386 |         self.startNewProcessGroup = startNewProcessGroup
 387 |         self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
     |                                                              `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 388 |     }
 389 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:190:14: warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
 188 |         /// Stream `stdout` and `stderr` via the corresponding closures. If `redirectStderr` is `true`, `stderr` will
 189 |         /// be redirected to `stdout`.
 190 |         case stream(stdout: OutputClosure, stderr: OutputClosure, redirectStderr: Bool)
     |              |- warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
     |              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 191 |
 192 |         /// Stream stdout and stderr as `AsyncSequence` provided as an argument to closures passed to
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:190:14: warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
 188 |         /// Stream `stdout` and `stderr` via the corresponding closures. If `redirectStderr` is `true`, `stderr` will
 189 |         /// be redirected to `stdout`.
 190 |         case stream(stdout: OutputClosure, stderr: OutputClosure, redirectStderr: Bool)
     |              |- warning: associated value 'stream(stdout:stderr:redirectStderr:)' of 'Sendable'-conforming enum 'OutputRedirection' has non-sendable type 'AsyncProcess.OutputClosure' (aka '(Array<UInt8>) -> ()'); this is an error in the Swift 6 language mode
     |              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 191 |
 192 |         /// Stream stdout and stderr as `AsyncSequence` provided as an argument to closures passed to
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:265:24: warning: static property '_loggingHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 263 |     package typealias LoggingHandler = (String) -> Void
 264 |
 265 |     private static var _loggingHandler: LoggingHandler?
     |                        |- warning: static property '_loggingHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert '_loggingHandler' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: add '@MainActor' to make static property '_loggingHandler' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 266 |     private static let loggingHandlerLock = NSLock()
 267 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:333:24: warning: static property 'validatedExecutablesMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 331 |     /// Key: Executable name or path.
 332 |     /// Value: Path to the executable, if found.
 333 |     private static var validatedExecutablesMap = [String: AbsolutePath?]()
     |                        |- warning: static property 'validatedExecutablesMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert 'validatedExecutablesMap' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: add '@MainActor' to make static property 'validatedExecutablesMap' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 334 |     private static let validatedExecutablesMapLock = NSLock()
 335 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:361:62: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 359 |         self.outputRedirection = outputRedirection
 360 |         self.startNewProcessGroup = startNewProcessGroup
 361 |         self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
     |                                                              `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 362 |     }
 363 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:387:62: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 385 |         self.outputRedirection = outputRedirection
 386 |         self.startNewProcessGroup = startNewProcessGroup
 387 |         self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
     |                                                              `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 388 |     }
 389 |
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
[758/880] Compiling SwiftOptions ParsedOptions.swift
[759/880] Compiling SwiftOptions Option.swift
[760/880] Compiling SwiftOptions OptionTable.swift
[761/880] Compiling SwiftOptions OptionParsing.swift
[762/880] Compiling SwiftOptions DriverKind.swift
[763/880] Emitting module SwiftOptions
[764/880] Compiling SwiftOptions Options.swift
[765/981] Compiling SwiftDriver VerifyModuleInterfaceJob.swift
[766/981] Compiling SwiftDriver WebAssemblyToolchain+LinkerSupport.swift
[767/981] Compiling SwiftDriver WindowsToolchain+LinkerSupport.swift
[768/981] Compiling SwiftDriver DependencyGraphBuilder.swift
[769/981] Compiling SwiftDriver Loader.swift
[770/981] Compiling SwiftDriver SwiftScan.swift
[771/981] Compiling SwiftDriver SwiftScanCAS.swift
[772/981] Compiling SwiftDriver DarwinToolchain.swift
[773/981] Compiling SwiftDriver GenericUnixToolchain.swift
[774/1023] Compiling SwiftDriver CommandLineArguments.swift
[775/1023] Compiling SwiftDriver CompileJob.swift
[776/1023] Compiling SwiftDriver DarwinToolchain+LinkerSupport.swift
[777/1023] Compiling SwiftDriver EmitModuleJob.swift
[778/1023] Compiling SwiftDriver EmitSupportedFeaturesJob.swift
[779/1023] Compiling SwiftDriver FrontendJobHelpers.swift
[780/1023] Compiling SwiftDriver GenerateDSYMJob.swift
[781/1040] Emitting module SWBLLBuild
[782/1040] Compiling SWBLLBuild LowLevelBuildSystem.swift
[783/1094] Compiling SWBCAS CASProtocol.swift
[784/1094] Compiling SWBCAS ToolchainCASPlugin.swift
[785/1094] Compiling SWBCAS plugin_api_t.swift
[786/1101] Emitting module SWBCAS
[787/1101] Compiling SWBCAS Errors.swift
[788/1101] Compiling SWBCAS CASFSNode.swift
[789/1101] Compiling dummy_swiftc main.swift
[790/1101] Emitting module dummy_swiftc
[790/1101] Write Objects.LinkFileList
[792/1101] Compiling PackageCollectionsSigning X509Extensions.swift
[793/1101] Emitting module SPMLLBuild
[794/1101] Compiling SPMLLBuild llbuild.swift
[795/1106] Compiling QueryEngine QueryEngine.swift
[796/1106] Compiling QueryEngine CacheKey.swift
[797/1106] Emitting module QueryEngine
[798/1106] Compiling QueryEngine Query.swift
[799/1106] Compiling QueryEngine FileCacheRecord.swift
[800/1106] Compiling BinarySymbols ReferencedSymbols.swift
[801/1106] Compiling BinarySymbols SymbolProvider.swift
[802/1106] Compiling PackageModel PlatformDescription.swift
[803/1106] Compiling PackageModel ProductDescription.swift
[804/1106] Compiling PackageModel SystemPackageProviderDescription.swift
[805/1106] Compiling PackageModel TargetBuildSettingDescription.swift
[806/1106] Compiling PackageModel PlainTextSnippetExtractor.swift
[807/1106] Compiling PackageModel Sources.swift
[808/1106] Compiling PackageModel SupportedLanguageExtension.swift
[809/1109] Compiling PackageCollectionsSigning Signature.swift
[810/1109] Compiling PackageCollectionsSigning Base64URL.swift
[811/1109] Compiling PackageCollectionsSigning embedded_resources.swift
[812/1109] Compiling PackageCollectionsSigning Utilities.swift
[813/1109] Compiling PackageCollectionsSigning PackageCollectionSigning.swift
[814/1109] Compiling PackageCollectionsSigning CertificatePolicy.swift
[815/1109] Emitting module PackageCollectionsSigning
[815/1109] Linking dummy-swiftc
[816/1109] Applying dummy-swiftc
[818/1109] Compiling PackageModel SwiftSDKBundleStore.swift
[819/1109] Compiling PackageModel SwiftSDKConfigurationStore.swift
[820/1109] Compiling PackageModel Toolchain+SupportedFeatures.swift
[821/1109] Compiling PackageModel Toolchain.swift
[822/1109] Compiling PackageModel ToolchainConfiguration.swift
[823/1114] Compiling PackageModel ClangModule.swift
[824/1114] Compiling PackageModel Module.swift
[825/1114] Compiling PackageModel PluginModule.swift
[826/1114] Compiling PackageModel SwiftModule.swift
[827/1114] Compiling PackageModel SystemLibraryModule.swift
[828/1114] Compiling PackageModel ModuleMapType.swift
[829/1114] Compiling PackageModel ArtifactsArchiveMetadata.swift
[830/1114] Compiling PackageModel BuildConfiguration.swift
[831/1114] Compiling PackageModel BuildEnvironment.swift
[832/1114] Compiling PackageModel BuildFlags.swift
[833/1114] Compiling PackageModel BuildSettings.swift
[834/1114] Compiling PackageModel DependencyMapper.swift
[835/1114] Emitting module SwiftDriver
[836/1114] Compiling PackageModel Registry.swift
[837/1114] Compiling PackageModel RegistryReleaseMetadata.swift
[838/1114] Compiling PackageModel Resource.swift
[839/1114] Compiling PackageModel Sanitizers.swift
[840/1114] Compiling PackageModel Snippet.swift
[841/1114] Compiling PackageModel SnippetGroup.swift
[842/1119] Compiling LLBuildManifest Command.swift
[843/1119] Compiling LLBuildManifest LLBuildManifestWriter.swift
[844/1119] Compiling LLBuildManifest Target.swift
[845/1119] Compiling LLBuildManifest Node.swift
[846/1120] Compiling LLBuildManifest LLBuildManifest.swift
[847/1120] Emitting module LLBuildManifest
[848/1120] Compiling LLBuildManifest Tools.swift
[849/1125] Compiling SWBProtocol Target.swift
[850/1125] Compiling SWBProtocol TargetDependency.swift
[851/1125] Compiling SWBProtocol Workspace.swift
[852/1125] Emitting module SWBProtocol
[863/1125] Compiling PackageModel PackageConditionDescription.swift
[864/1125] Compiling PackageModel PackageDependencyDescription.swift
[874/1125] Compiling PackageModel Diagnostics.swift
[875/1125] Compiling PackageModel EnabledTraitsMap.swift
[876/1125] Compiling PackageModel IdentityResolver.swift
[877/1125] Compiling PackageModel InstalledSwiftPMConfiguration.swift
[878/1125] Compiling PackageModel Manifest+Traits.swift
[879/1125] Compiling PackageModel Manifest.swift
[898/1125] Emitting module PackageModel
/Users/admin/builder/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 69 |
 70 |     /// Regex for parsing the Swift language version.
 71 |     private static let regex = try! RegEx(pattern: #"^(\d+)(?:\.(\d+))?(?:\.(\d+))?$"#)
    |                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[899/1125] Compiling BinarySymbols ClangHostDefaultObjectsDetector.swift
[900/1125] Emitting module BinarySymbols
[901/1125] Compiling BinarySymbols LLVMObjdumpSymbolProvider.swift
[902/1125] Compiling PackageModel PackageIdentity.swift
[903/1125] Compiling PackageModel PackageModel.swift
[904/1125] Compiling PackageModel PackageReference.swift
[905/1125] Compiling PackageModel Platform.swift
[906/1125] Compiling PackageModel PlatformRegistry.swift
[907/1125] Compiling PackageModel Product.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 69 |
 70 |     /// Regex for parsing the Swift language version.
 71 |     private static let regex = try! RegEx(pattern: #"^(\d+)(?:\.(\d+))?(?:\.(\d+))?$"#)
    |                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
/Users/admin/builder/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 69 |
 70 |     /// Regex for parsing the Swift language version.
 71 |     private static let regex = try! RegEx(pattern: #"^(\d+)(?:\.(\d+))?(?:\.(\d+))?$"#)
    |                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
/Users/admin/builder/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 69 |
 70 |     /// Regex for parsing the Swift language version.
 71 |     private static let regex = try! RegEx(pattern: #"^(\d+)(?:\.(\d+))?(?:\.(\d+))?$"#)
    |                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
/Users/admin/builder/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 69 |
 70 |     /// Regex for parsing the Swift language version.
 71 |     private static let regex = try! RegEx(pattern: #"^(\d+)(?:\.(\d+))?(?:\.(\d+))?$"#)
    |                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
/Users/admin/builder/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 69 |
 70 |     /// Regex for parsing the Swift language version.
 71 |     private static let regex = try! RegEx(pattern: #"^(\d+)(?:\.(\d+))?(?:\.(\d+))?$"#)
    |                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
/Users/admin/builder/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 69 |
 70 |     /// Regex for parsing the Swift language version.
 71 |     private static let regex = try! RegEx(pattern: #"^(\d+)(?:\.(\d+))?(?:\.(\d+))?$"#)
    |                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[922/1125] Compiling PackageModel ToolsVersion.swift
[923/1125] Compiling PackageModel ToolsVersionSpecificationGeneration.swift
[924/1125] Compiling PackageModel Toolset.swift
[925/1125] Emitting module SwiftSyntax
[972/1125] Compiling PackageModel UserToolchain.swift
[973/1125] Compiling PackageModel WindowsToolchainInfo.swift
[974/1125] Compiling SwiftDriver VerifyDebugInfoJob.swift
[984/1125] Compiling SwiftDriver Toolchain.swift
[985/1125] Compiling PackageModel TargetDescription.swift
[986/1125] Compiling PackageModel TraitConfiguration.swift
[987/1125] Compiling PackageModel TraitDescription.swift
[988/1125] Compiling PackageModel ManifestSourceGeneration.swift
[989/1125] Compiling PackageModel MinimumDeploymentTarget.swift
[990/1125] Compiling PackageModel BinaryModule.swift
[998/1125] Compiling SwiftDriver GeneratePCHJob.swift
[999/1125] Compiling SwiftDriver GeneratePCMJob.swift
[1000/1125] Compiling SwiftDriver GenericUnixToolchain+LinkerSupport.swift
[1001/1125] Compiling SwiftDriver InterpretJob.swift
[1004/1125] Compiling SwiftDriver NodeFinder.swift
[1005/1125] Compiling SwiftDriver Tracer.swift
[1006/1125] Compiling SwiftDriver Multidictionary.swift
[1007/1125] Compiling SwiftDriver SourceFileDependencyGraph.swift
[1008/1125] Compiling SwiftDriver SwiftSourceFile.swift
[1009/1125] Compiling SwiftDriver TwoDMap.swift
[1010/1125] Compiling SwiftDriver TwoLevelMap.swift
[1011/1125] Compiling SwiftDriver APIDigesterJobs.swift
[1012/1125] Compiling SwiftDriver AutolinkExtractJob.swift
[1013/1125] Compiling SwiftDriver Job.swift
[1014/1125] Compiling SwiftDriver LinkJob.swift
[1015/1125] Compiling SwiftDriver ModuleWrapJob.swift
[1016/1125] Compiling SwiftDriver Planning.swift
[1017/1125] Compiling SwiftDriver PrebuiltModulesJob.swift
[1018/1125] Compiling SwiftDriver PrintSupportedFeaturesJob.swift
[1019/1125] Compiling SwiftDriver PrintTargetInfoJob.swift
[1020/1125] Compiling SwiftDriver ReplJob.swift
[1021/1125] Compiling SwiftDriver SwiftHelpIntroJob.swift
[1022/1125] Compiling SwiftDriver Toolchain+InterpreterSupport.swift
[1023/1125] Compiling SwiftDriver Toolchain+LinkerSupport.swift
[1057/1143] Compiling SwiftDriver PredictableRandomNumberGenerator.swift
[1058/1143] Compiling SwiftDriver PythonArchitecture.swift
[1059/1143] Compiling SwiftDriver RelativePathAdditions.swift
[1060/1143] Compiling SwiftDriver Sanitizer.swift
[1061/1143] Compiling SwiftDriver StringAdditions.swift
[1062/1143] Compiling SwiftDriver System.swift
[1063/1143] Compiling SwiftDriver Triple+Platforms.swift
[1064/1143] Compiling SwiftDriver Triple.swift
[1065/1143] Compiling SwiftDriver TypedVirtualPath.swift
[1066/1143] Compiling SwiftDriver Version.swift
[1067/1143] Compiling SwiftDriver VirtualPath.swift
[1068/1143] Compiling PackageFingerprint PackageFingerprintStorage.swift
[1069/1143] Compiling PackageFingerprint Model.swift
[1074/1175] Compiling PackageSigning SigningIdentity.swift
[1075/1175] Compiling PackageSigning VerifierPolicies.swift
[1076/1175] Compiling SourceControl RepositoryManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/RepositoryManager.swift:501:29: warning: stored property 'manager' of 'Sendable'-conforming struct 'RepositoryHandle' has non-sendable type 'RepositoryManager'; this is an error in the Swift 6 language mode
 19 |
 20 | /// Manages a collection of bare repositories.
 21 | public class RepositoryManager: Cancellable {
    |              `- note: class 'RepositoryManager' does not conform to the 'Sendable' protocol
 22 |     public typealias Delegate = RepositoryManagerDelegate
 23 |
    :
499 |     public struct RepositoryHandle: Sendable {
500 |         /// The manager this repository is owned by.
501 |         private unowned let manager: RepositoryManager
    |                             `- warning: stored property 'manager' of 'Sendable'-conforming struct 'RepositoryHandle' has non-sendable type 'RepositoryManager'; this is an error in the Swift 6 language mode
502 |
503 |         /// The repository specifier.
[1077/1175] Compiling PackageSigning CertificateStores.swift
[1078/1175] Compiling PackageSigning SignatureProvider.swift
[1079/1175] Compiling PackageSigning FilePackageSigningEntityStorage.swift
[1080/1175] Compiling PackageSigning PackageSigningEntityStorage.swift
[1081/1175] Compiling PackageSigning SigningEntity.swift
[1082/1175] Compiling SWBServiceCore ServiceExtensionPoint.swift
[1083/1175] Compiling DriverSupport SPMSwiftDriverExecutor.swift
/Users/admin/builder/spi-builder-workspace/Sources/DriverSupport/SPMSwiftDriverExecutor.swift:61:28: warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock
59 |
60 |         var childEnv = [String: String](env)
61 |         childEnv.merge(job.extraEnvironment, uniquingKeysWith: { (_, new) in new })
   |                            `- warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock
62 |
63 |         let process = try Process.launchProcess(arguments: arguments, env: childEnv)
/Users/admin/builder/spi-builder-workspace/Sources/DriverSupport/SPMSwiftDriverExecutor.swift:63:35: warning: 'launchProcess(arguments:env:)' is deprecated: use launchProcess(arguments:envBlock:) instead
61 |         childEnv.merge(job.extraEnvironment, uniquingKeysWith: { (_, new) in new })
62 |
63 |         let process = try Process.launchProcess(arguments: arguments, env: childEnv)
   |                                   `- warning: 'launchProcess(arguments:env:)' is deprecated: use launchProcess(arguments:envBlock:) instead
64 |         return try process.waitUntilExit()
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DriverSupport/SPMSwiftDriverExecutor.swift:89:17: warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock
87 |         }
88 |
89 |         if !job.extraEnvironment.isEmpty {
   |                 `- warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock
90 |             result += " #"
91 |             for (envVar, val) in job.extraEnvironment {
/Users/admin/builder/spi-builder-workspace/Sources/DriverSupport/SPMSwiftDriverExecutor.swift:91:38: warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock
89 |         if !job.extraEnvironment.isEmpty {
90 |             result += " #"
91 |             for (envVar, val) in job.extraEnvironment {
   |                                      `- warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock
92 |                 result += " \(envVar)=\(val)"
93 |             }
[1084/1175] Emitting module DriverSupport
[1085/1175] Compiling DriverSupport DriverSupportUtils.swift
/Users/admin/builder/spi-builder-workspace/Sources/DriverSupport/DriverSupportUtils.swift:71:48: warning: 'launchProcess(arguments:env:)' is deprecated: use launchProcess(arguments:envBlock:) instead
69 |         }
70 |         do {
71 |             let helpJob = try TSCBasic.Process.launchProcess(
   |                                                `- warning: 'launchProcess(arguments:env:)' is deprecated: use launchProcess(arguments:envBlock:) instead
72 |                 arguments: [swiftcPathString, "-h"],
73 |                 env: .init(Environment.current)
[1086/1175] Compiling PackageFingerprint FilePackageFingerprintStorage.swift
[1087/1175] Emitting module PackageFingerprint
[1088/1175] Emitting module PackageSigning
[1089/1175] Compiling PackageSigning X509Extensions.swift
[1090/1175] Compiling PackageSigning embedded_resources.swift
[1091/1175] Compiling SWBServiceCore Service.swift
[1092/1175] Compiling SWBServiceCore Request.swift
[1093/1175] Emitting module SWBServiceCore
[1094/1175] Compiling SWBServiceCore ServiceEntryPoint.swift
[1095/1175] Compiling SWBServiceCore ServiceHostConnection.swift
[1096/1175] Compiling SWBMacro MacroType.swift
[1097/1176] Compiling SWBMacro MacroExpressionParsing.swift
[1098/1176] Compiling SWBMacro MacroNamespace.swift
[1099/1176] Compiling SWBMacro MacroEvaluationScope.swift
[1100/1176] Compiling SWBMacro MacroExpression.swift
[1101/1176] Compiling SWBMacro MacroExpressionDiagnostic.swift
[1102/1176] Compiling SWBMacro MacroDeclaration.swift
[1103/1176] Compiling SWBMacro MacroEvaluationProgram.swift
[1104/1176] Compiling SWBMacro MacroConfigFileDiagnostic.swift
[1105/1176] Compiling SWBMacro MacroConfigFileParser.swift
[1106/1176] Compiling SWBMacro MacroConditionParameter.swift
[1107/1176] Compiling SWBMacro MacroConditionSet.swift
[1108/1176] Emitting module SWBMacro
[1109/1176] Compiling SWBMacro MacroCondition.swift
[1110/1176] Compiling SWBMacro MacroConditionExpression.swift
[1111/1176] Compiling SourceControl Repository.swift
[1112/1176] Emitting module SourceControl
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:410:17: warning: stored property 'cachedHashes' of 'Sendable'-conforming class 'GitRepository' is mutable; this is an error in the Swift 6 language mode
 408 |
 409 |     /// Dictionary for memoizing results of git calls that are not expected to change.
 410 |     private var cachedHashes = ThreadSafeKeyValueStore<String, Hash>()
     |                 `- warning: stored property 'cachedHashes' of 'Sendable'-conforming class 'GitRepository' is mutable; this is an error in the Swift 6 language mode
 411 |     private var cachedBlobs = ThreadSafeKeyValueStore<Hash, ByteString>()
 412 |     private var cachedTrees = ThreadSafeKeyValueStore<String, Tree>()
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:1265:29: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
1263 |     )
1264 |     """#
1265 |     static let regex = try? RegEx(pattern: pattern)
     |                             `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
1266 |
1267 |     init?(from string: String) {
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/RepositoryManager.swift:501:29: warning: stored property 'manager' of 'Sendable'-conforming struct 'RepositoryHandle' has non-sendable type 'RepositoryManager'; this is an error in the Swift 6 language mode
 19 |
 20 | /// Manages a collection of bare repositories.
 21 | public class RepositoryManager: Cancellable {
    |              `- note: class 'RepositoryManager' does not conform to the 'Sendable' protocol
 22 |     public typealias Delegate = RepositoryManagerDelegate
 23 |
    :
499 |     public struct RepositoryHandle: Sendable {
500 |         /// The manager this repository is owned by.
501 |         private unowned let manager: RepositoryManager
    |                             `- warning: stored property 'manager' of 'Sendable'-conforming struct 'RepositoryHandle' has non-sendable type 'RepositoryManager'; this is an error in the Swift 6 language mode
502 |
503 |         /// The repository specifier.
[1113/1176] Compiling SourceControl GitRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:410:17: warning: stored property 'cachedHashes' of 'Sendable'-conforming class 'GitRepository' is mutable; this is an error in the Swift 6 language mode
 408 |
 409 |     /// Dictionary for memoizing results of git calls that are not expected to change.
 410 |     private var cachedHashes = ThreadSafeKeyValueStore<String, Hash>()
     |                 `- warning: stored property 'cachedHashes' of 'Sendable'-conforming class 'GitRepository' is mutable; this is an error in the Swift 6 language mode
 411 |     private var cachedBlobs = ThreadSafeKeyValueStore<Hash, ByteString>()
 412 |     private var cachedTrees = ThreadSafeKeyValueStore<String, Tree>()
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:1265:29: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
1263 |     )
1264 |     """#
1265 |     static let regex = try? RegEx(pattern: pattern)
     |                             `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
1266 |
1267 |     init?(from string: String) {
[1114/1216] Compiling SWBMacro MacroValueAssignmentTable.swift
[1115/1216] Compiling SWBProjectModel IDESwiftPackageExtensions.swift
[1116/1216] Compiling SWBProjectModel IDEPIFSerializer.swift
[1117/1216] Compiling SWBProjectModel IDEPIFObjectInfo.swift
[1118/1216] Compiling SWBProjectModel IDEPIFObject.swift
[1119/1216] Compiling SWBProjectModel IDEPIFGenerating.swift
[1120/1216] Emitting module SWBProjectModel
[1121/1216] Compiling SWBProjectModel IDEPIFGUID.swift
[1122/1216] Compiling SWBProjectModel PIFGenerationModel.swift
[1123/1368] Compiling SWBCore InterfaceBuilderShared.swift
[1124/1368] Compiling SWBCore BuildFileFilteringContext.swift
[1125/1370] Compiling SWBCore SymlinkTool.swift
[1126/1370] Compiling SWBCore TAPISymbolExtractor.swift
[1127/1370] Compiling SWBCore TAPITools.swift
[1128/1370] Compiling PackageLoading RegistryReleaseMetadataSerialization.swift
[1129/1370] Compiling PackageLoading Target+PkgConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/Target+PkgConfig.swift:330:25: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
328 | /// See https://github.com/swiftlang/swift-package-manager/issues/6439 for details.
329 | public func patchSDKPaths(in flags: [String], to sdkRootPath: AbsolutePath) throws -> [String] {
330 |     let sdkRegex = try! RegEx(pattern: #"^.*\.sdk(\/.*|$)"#)
    |                         `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
331 |
332 |     return try ["-I", "-L"].reduce(flags) { (flags, flag) in
[1130/1370] Compiling PackageLoading Platform.swift
[1131/1370] Compiling PackageLoading TargetSourcesBuilder.swift
[1132/1371] Compiling PackageCollections Trie.swift
[1133/1371] Compiling PackageCollections Utility.swift
[1134/1371] Emitting module PackageCollections
[1135/1371] Compiling SWBCore SwiftABICheckerTool.swift
[1136/1371] Compiling SWBCore SwiftABIGenerationTool.swift
[1137/1371] Compiling SWBCore SwiftCompiler.swift
[1138/1371] Compiling SWBCore ShellScriptTool.swift
[1139/1371] Compiling SWBCore SignatureCollection.swift
[1140/1371] Compiling SWBCore StripTool.swift
[1141/1371] Compiling PackageLoading ToolsVersionParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/ToolsVersionParser.swift:624:26: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
622 |             throw ToolsVersionParser.Error.inaccessiblePackage(path: packagePath, reason: String(describing: error))
623 |         }
624 |         let regex = try! RegEx(pattern: #"^Package@swift-(\d+)(?:\.(\d+))?(?:\.(\d+))?.swift$"#)
    |                          `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
625 |
626 |         // Collect all version-specific manifests at the given package path.
[1142/1371] Compiling SWBCore BuildRequest.swift
[1143/1371] Compiling SWBCore BuildRequestContext.swift
[1144/1371] Compiling SWBCore BuildFileResolution.swift
[1145/1371] Compiling SWBCore BuildParameters.swift
[1146/1371] Compiling SWBCore SwiftHeaderTool.swift
[1147/1371] Compiling SWBCore SwiftStdLibTool.swift
[1148/1371] Compiling SWBCore SwiftSymbolExtractor.swift
[1149/1371] Compiling SWBCore TiffUtilTool.swift
[1150/1371] Compiling SWBCore TouchTool.swift
[1151/1371] Compiling SWBCore UnifdefTool.swift
[1152/1371] Compiling SWBCore ValidateDependencies.swift
[1153/1371] Compiling SWBCore ActivityReporting.swift
[1154/1371] Compiling SWBCore DeviceFamily.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/ManifestJSONParser.swift:257:53: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
255 |
256 |     /// Looks for Xcode-style build setting macros "$()".
257 |     fileprivate static let invalidValueRegex = try! RegEx(pattern: #"(\$\(.*?\))"#)
    |                                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
258 | }
259 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/ManifestJSONParser.swift:257:53: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
255 |
256 |     /// Looks for Xcode-style build setting macros "$()".
257 |     fileprivate static let invalidValueRegex = try! RegEx(pattern: #"(\$\(.*?\))"#)
    |                                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
258 | }
259 |
[1163/1371] Emitting module PackageLoading
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/ManifestJSONParser.swift:257:53: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
255 |
256 |     /// Looks for Xcode-style build setting macros "$()".
257 |     fileprivate static let invalidValueRegex = try! RegEx(pattern: #"(\$\(.*?\))"#)
    |                                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
258 | }
259 |
[1166/1406] Emitting module PackageGraph
[1167/1409] Compiling PackageGraph ResolvedModule.swift
[1168/1409] Compiling PackageGraph ResolvedPackage.swift
[1169/1409] Compiling PackageGraph ResolvedProduct.swift
[1170/1409] Compiling PackageGraph PubGrubDependencyResolver.swift
[1171/1409] Compiling PackageGraph PubGrubPackageContainer.swift
[1172/1409] Compiling PackageGraph Term.swift
[1173/1409] Compiling PackageGraph PlatformVersionProvider.swift
[1174/1409] Compiling PackageGraph Assignment.swift
[1175/1409] Compiling PackageGraph ContainerProvider.swift
[1176/1409] Compiling PackageGraph PackageModel+Extensions.swift
[1177/1409] Compiling PackageGraph PackageRequirement.swift
[1178/1409] Compiling PackageGraph DependencyResolutionNode.swift
[1179/1409] Compiling PackageGraph DependencyResolverBinding.swift
[1180/1409] Compiling PackageGraph DependencyResolverDelegate.swift
[1181/1409] Compiling PackageGraph DependencyResolverError.swift
[1182/1409] Compiling PackageGraph ModulesGraph.swift
[1183/1409] Compiling PackageGraph PackageContainer.swift
[1184/1409] Compiling PackageGraph PackageGraphRoot.swift
[1185/1409] Compiling PackageGraph DiagnosticReportBuilder.swift
[1186/1409] Compiling PackageGraph Incompatibility.swift
[1187/1409] Compiling PackageGraph PartialSolution.swift
[1188/1409] Compiling PackageGraph ResolvedPackagesStore.swift
[1189/1409] Compiling PackageGraph Version+Extensions.swift
[1190/1409] Compiling PackageGraph VersionSetSpecifier.swift
[1191/1409] Compiling PackageGraph BoundVersion.swift
[1192/1409] Compiling PackageGraph DependencyMirrors.swift
[1193/1409] Compiling PackageGraph Diagnostics.swift
[1194/1409] Compiling PackageGraph GraphLoadingNode.swift
[1195/1409] Compiling PackageGraph ModuleAliasTracker.swift
[1196/1409] Compiling PackageGraph ModulesGraph+Loading.swift
[1197/1431] Compiling SPMBuildCore ResolvedPackage+Extensions.swift
[1198/1431] Compiling SPMBuildCore Triple+Extensions.swift
[1199/1433] Compiling PackageRegistry SigningEntityTOFU.swift
[1200/1433] Compiling PackageRegistry ChecksumTOFU.swift
[1201/1433] Compiling PackageRegistry RegistryDownloadsManager.swift
[1202/1433] Compiling PackageRegistry SignatureValidation.swift
[1203/1433] Compiling PackageRegistry RegistryClient.swift
[1204/1433] Emitting module PackageRegistry
[1205/1433] Compiling PackageRegistry RegistryConfiguration.swift
[1206/1433] Compiling SPMBuildCore BuildSystemCommand.swift
[1207/1433] Compiling SPMBuildCore BuildSystemDelegate.swift
[1208/1433] Compiling SPMBuildCore BinaryTarget+Extensions.swift
[1209/1433] Compiling SPMBuildCore BuildParameters+APIDigester.swift
[1210/1433] Compiling SPMBuildCore BuildParameters+Debugging.swift
[1211/1433] Compiling SPMBuildCore BuildParameters+Testing.swift
[1212/1433] Compiling SPMBuildCore BuildParameters.swift
[1213/1433] Compiling SPMBuildCore XCFrameworkMetadata.swift
[1214/1433] Compiling SPMBuildCore XcodeProjectRepresentation.swift
[1220/1435] Emitting module SPMBuildCore
[1221/1435] Compiling PackageMetadata PackageMetadata.swift
[1222/1435] Emitting module PackageMetadata
[1225/1435] Compiling SPMBuildCore BuildSystem.swift
[1226/1435] Compiling SPMBuildCore DiagnosticsCapturingBuildSystemDelegate.swift
[1227/1435] Compiling SPMBuildCore BuiltTestProduct.swift
[1228/1435] Compiling SPMBuildCore BuildParameters+Driver.swift
[1229/1435] Compiling SPMBuildCore BuildParameters+Linking.swift
[1230/1435] Compiling SPMBuildCore BuildParameters+Output.swift
[1231/1435] Emitting module SWBCore
[1232/1435] Compiling SWBCore ModuleVerifierModuleMapFileVerifier.swift
[1233/1435] Compiling SWBCore ModuleVerifierTarget.swift
[1234/1435] Compiling SWBCore ClangModuleVerifierOutputParser.swift
[1235/1435] Compiling SWBCore ClangSerializedDiagnostics.swift
[1236/1435] Compiling SWBCore CommandLineArgument.swift
[1237/1435] Compiling SWBCore ConfiguredTarget.swift
[1238/1435] Compiling SWBCore Core.swift
[1239/1435] Compiling SWBCore CustomTaskTypeDescription.swift
[1240/1435] Compiling SWBCore Dependencies.swift
[1241/1435] Compiling SWBCore DependencyInfoEditPayload.swift
[1242/1435] Compiling SWBCore DependencyResolution.swift
[1243/1435] Compiling SWBCore DiagnosticSupport.swift
[1244/1435] Compiling SWBCore EnvironmentBindings.swift
[1245/1435] Compiling SWBCore ExecutableTask.swift
[1246/1435] Compiling SWBCore DeveloperDirectoryExtension.swift
[1247/1435] Compiling SWBCore DiagnosticToolingExtension.swift
[1248/1435] Compiling SWBCore EnvironmentExtension.swift
[1249/1435] Compiling SWBCore SpecParser.swift
[1250/1435] Compiling SWBCore SpecRegistry.swift
[1251/1435] Compiling SWBCore Specs.swift
[1252/1435] Compiling SWBCore AppShortcutStringsMetadataCompiler.swift
[1253/1435] Compiling SWBCore CCompiler.swift
[1254/1435] Compiling SWBCore ClangModuleVerifierInputGenerator.swift
[1255/1435] Compiling SWBCore ClangStatCache.swift
[1256/1435] Compiling SWBCore CodeSign.swift
[1257/1435] Compiling SWBCore ConcatenateTool.swift
[1258/1435] Compiling SWBCore ConstructStubExecutorFileListTool.swift
[1259/1435] Compiling SWBCore CopyTool.swift
[1260/1435] Compiling SWBCore CreateAssetPackManifestTool.swift
[1261/1435] Compiling SWBCore CreateBuildDirectory.swift
[1262/1435] Compiling SWBCore DocumentationCompiler.swift
[1263/1435] Compiling SWBCore DsymutilTool.swift
[1264/1435] Compiling SWBCore GCCCompatibleCompilerSupport.swift
[1265/1435] Compiling SWBCore Gate.swift
[1266/1451] Compiling SPMBuildCore PluginContextSerializer.swift
[1267/1451] Compiling SPMBuildCore PluginInvocation.swift
[1268/1451] Compiling SPMBuildCore CommandPluginResult.swift
[1269/1451] Compiling SPMBuildCore DefaultPluginScriptRunner.swift
[1270/1451] Compiling SPMBuildCore PluginMessages.swift
[1271/1451] Compiling SPMBuildCore PluginScriptRunner.swift
[1272/1512] Compiling XCBuildSupport XcodeBuildSystem.swift
[1273/1512] Compiling Workspace Workspace+Registry.swift
[1274/1512] Compiling Workspace Workspace+ResolvedPackages.swift
[1275/1512] Compiling Workspace Workspace+Signing.swift
[1276/1515] Compiling Workspace ManagedPrebuilt.swift
[1277/1515] Compiling Workspace Base64URL.swift
[1278/1515] Compiling Build LLBuildManifestBuilder+Resources.swift
[1279/1517] Compiling Workspace CheckoutState.swift
[1280/1517] Compiling Workspace Diagnostics.swift
[1281/1517] Compiling Workspace InitPackage.swift
[1282/1517] Compiling Workspace LoadableResult.swift
[1283/1517] Compiling Build ClangSupport.swift
[1284/1517] Compiling Build LLBuildCommands.swift
[1285/1517] Compiling Build LLBuildDescription.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:462:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
460 |                 // will be very slow), so they can later be passed to the advice provider in case of failure.
461 |                 if output.utf8.count < 1024 * 10 {
462 |                     let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
    |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
463 |                     for match in regex.matchGroups(in: output) {
464 |                         self.errorMessagesByTarget[parser.targetName] = (
[1286/1517] Compiling Build LLBuildProgressTracker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:462:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
460 |                 // will be very slow), so they can later be passed to the advice provider in case of failure.
461 |                 if output.utf8.count < 1024 * 10 {
462 |                     let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
    |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
463 |                     for match in regex.matchGroups(in: output) {
464 |                         self.errorMessagesByTarget[parser.targetName] = (
[1287/1517] Emitting module Workspace
[1291/1517] Emitting module Build
[1293/1517] Compiling Workspace ManagedArtifact.swift
[1294/1517] Compiling Workspace ManagedDependency.swift
[1295/1517] Compiling Workspace Utilities.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/BuildOperation.swift:874:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 872 |
 873 |         // Check for cases involving modules that cannot be found.
 874 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 875 |             // A target is importing a module that can't be found.  We take a look at the build plan and see if can offer any advice.
 876 |
[1296/1517] Compiling Workspace X509Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/BuildOperation.swift:874:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 872 |
 873 |         // Check for cases involving modules that cannot be found.
 874 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 875 |             // A target is importing a module that can't be found.  We take a look at the build plan and see if can offer any advice.
 876 |
[1297/1517] Compiling Build LLBuildManifestBuilder+Swift.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/BuildManifest/LLBuildManifestBuilder+Swift.swift:86:65: warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic
 84 |         var driver = try Driver(
 85 |             args: commandLine,
 86 |             diagnosticsOutput: .handler(self.observabilityScope.makeDiagnosticsHandler()),
    |                                                                 `- warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic
 87 |             fileSystem: self.fileSystem,
 88 |             executor: executor,
[1298/1517] Compiling Workspace Signature.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/BuildManifest/LLBuildManifestBuilder+Swift.swift:86:65: warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic
 84 |         var driver = try Driver(
 85 |             args: commandLine,
 86 |             diagnosticsOutput: .handler(self.observabilityScope.makeDiagnosticsHandler()),
    |                                                                 `- warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic
 87 |             fileSystem: self.fileSystem,
 88 |             executor: executor,
[1312/1517] Compiling Build BuildPlan+Product.swift
[1313/1517] Compiling Build BuildPlan+Swift.swift
[1314/1517] Compiling Build BuildPlan+Test.swift
[1319/1517] Compiling Build SwiftCompilerOutputParser.swift
[1320/1517] Compiling Build TestObservation.swift
[1332/1517] Compiling Build BuildPlan.swift
[1333/1517] Compiling XCBuildSupport XCBuildOutputParser.swift
[1334/1517] Compiling XCBuildSupport PIFBuilder.swift
[1335/1517] Compiling XCBuildSupport XCBuildMessage.swift
[1336/1517] Compiling XCBuildSupport XCBuildDelegate.swift
[1337/1517] Emitting module XCBuildSupport
[1338/1517] Compiling XCBuildSupport PIF.swift
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
281 |                 } else {
282 |                     // Revision does not exist, so we customize the error.
283 |                     let sha1RegEx = try! RegEx(pattern: #"\A[:xdigit:]{40}\Z"#)
    |                                          `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
281 |                 } else {
282 |                     // Revision does not exist, so we customize the error.
283 |                     let sha1RegEx = try! RegEx(pattern: #"\A[:xdigit:]{40}\Z"#)
    |                                          `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
281 |                 } else {
282 |                     // Revision does not exist, so we customize the error.
283 |                     let sha1RegEx = try! RegEx(pattern: #"\A[:xdigit:]{40}\Z"#)
    |                                          `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
[1342/1520] Compiling SWBCore LinkerSpec.swift
[1343/1520] Compiling SWBCore ProductTypes.swift
[1344/1520] Compiling SWBCore PropertyDomainSpec.swift
[1345/1520] Compiling SWBCore RegisterSpecs.swift
[1346/1520] Compiling SWBCore BuildRule.swift
[1347/1520] Compiling SWBCore DependencyInfoFormat.swift
[1348/1520] Compiling SWBCore FilePathResolver.swift
[1352/1520] Compiling Workspace Workspace+Delegation.swift
[1353/1520] Compiling Workspace Workspace+Dependencies.swift
[1354/1520] Compiling Workspace Workspace+Editing.swift
[1356/1520] Compiling Workspace Workspace+PackageContainer.swift
[1357/1520] Compiling Workspace Workspace+Prebuilts.swift
[1358/1520] Compiling SourceKitLSPAPI PluginTargetBuildDescription.swift
[1359/1520] Compiling SourceKitLSPAPI BuildDescription.swift
[1360/1520] Emitting module SourceKitLSPAPI
[1361/1580] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[1362/1581] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[1363/1581] Compiling SwiftBasicFormat Syntax+Extensions.swift
[1364/1581] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[1365/1581] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[1366/1581] Compiling SwiftDiagnostics Convenience.swift
[1367/1581] Emitting module SwiftDiagnostics
[1368/1581] Compiling SwiftDiagnostics Diagnostic.swift
[1369/1581] Compiling SwiftDiagnostics Message.swift
[1370/1581] Compiling SwiftDiagnostics Note.swift
[1371/1581] Compiling SwiftBasicFormat InferIndentation.swift
[1372/1581] Compiling SwiftBasicFormat Indenter.swift
[1373/1581] Compiling SwiftDiagnostics FixIt.swift
[1374/1581] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[1375/1581] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[1376/1581] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[1377/1581] Emitting module SwiftBasicFormat
[1378/1581] Compiling SwiftBasicFormat BasicFormat.swift
[1379/1581] Compiling SWBCore MacroConfigFileLoader.swift
[1380/1581] Compiling SWBCore MacroEvaluationExtensions.swift
[1381/1581] Compiling SWBCore MacroExpressionSourceExtensions.swift
[1382/1581] Compiling SWBCore OnDemandResources.swift
[1383/1581] Compiling SWBCore OptimizationRemarks.swift
[1384/1581] Compiling SWBCore PlannedNode.swift
[1385/1581] Compiling SWBCore PlannedTask.swift
[1386/1581] Compiling SWBCore PlannedTaskAction.swift
[1387/1581] Compiling SWBCore PlatformEnvironment.swift
[1388/1581] Compiling SWBCore PlatformFiltering.swift
[1389/1581] Compiling SWBCore PlatformRegistry.swift
[1390/1581] Compiling SWBCore Process.swift
[1391/1581] Compiling SWBCore ProcessExecutionCache.swift
[1392/1581] Compiling SWBCore ProductTypeIdentifier.swift
[1393/1581] Compiling SWBCore BuildConfiguration.swift
[1394/1581] Compiling SWBCore BuildFile.swift
[1395/1581] Compiling SWBCore BuildPhase.swift
[1396/1581] Compiling SWBCore GenerateAppPlaygroundAssetCatalog.swift
[1397/1581] Compiling SWBCore InfoPlistTool.swift
[1398/1581] Compiling SWBCore LaunchServicesRegisterTool.swift
[1399/1581] Compiling SWBCore LinkerTools.swift
[1400/1581] Compiling SWBCore Lipo.swift
[1401/1581] Compiling SWBCore MergeInfoPlist.swift
[1402/1581] Compiling SWBCore MkdirTool.swift
[1403/1581] Compiling SWBCore ModulesVerifierTool.swift
[1404/1581] Compiling SWBCore ObjectLibraryAssembler.swift
[1405/1581] Compiling SWBCore PLUtilTool.swift
[1406/1581] Compiling SWBCore PrelinkedObjectLink.swift
[1407/1581] Compiling SWBCore ProcessSDKImports.swift
[1408/1581] Compiling SWBCore ProcessXCFrameworkLibrary.swift
[1409/1581] Compiling SWBCore ProductPackaging.swift
[1410/1581] Compiling SWBCore RegisterExecutionPolicyException.swift
[1411/1581] Compiling SWBCore SetAttributes.swift
[1415/1581] Compiling SWBCore FileTextEncoding.swift
[1416/1581] Compiling SWBCore ImpartedBuildProperties.swift
[1417/1581] Compiling SWBCore PIFLoader.swift
[1418/1581] Compiling SWBCore PlatformFilter.swift
[1419/1581] Compiling SWBCore Project.swift
[1420/1581] Compiling SWBCore ProjectModelItem.swift
[1421/1581] Compiling SWBCore Reference.swift
[1422/1581] Compiling SWBCore ReferenceLookupContext.swift
[1423/1581] Compiling SWBCore Target.swift
[1424/1581] Compiling SWBCore Workspace.swift
[1425/1581] Compiling SWBCore WorkspaceHeaderIndex.swift
[1426/1581] Compiling SWBCore ProvisionalTask.swift
[1427/1581] Compiling SWBCore Provisioning.swift
[1428/1581] Compiling SWBCore ProvisioningTaskInputs.swift
[1429/1581] Compiling SwiftParser StringLiterals.swift
[1430/1581] Compiling SwiftParser SwiftParserCompatibility.swift
[1431/1581] Compiling SwiftParser SwiftVersion.swift
[1432/1581] Compiling SwiftParser SyntaxUtils.swift
[1434/1581] Compiling SwiftParser TokenConsumer.swift
[1435/1581] Compiling SwiftParser TokenPrecedence.swift
[1436/1581] Compiling SwiftParser TokenSpec.swift
[1437/1581] Compiling SwiftParser TokenSpecSet.swift
[1438/1581] Compiling SwiftParser TopLevel.swift
[1439/1581] Compiling SwiftParser TriviaParser.swift
[1440/1581] Compiling SwiftParser Types.swift
[1441/1581] Compiling SwiftParser ExperimentalFeatures.swift
[1442/1581] Compiling SWBCore FileToBuild.swift
[1443/1581] Compiling SWBCore LibSwiftDriver.swift
[1444/1581] Compiling SWBCore PlannedBuild.swift
[1445/1581] Compiling SWBCore ArrayExtensions.swift
[1446/1581] Compiling SWBCore CStringArray.swift
[1447/1581] Compiling SWBCore Libclang.swift
[1448/1581] Compiling SWBCore LinkageDependencyResolver.swift
[1449/1581] Compiling SWBCore MacCatalystInfo.swift
[1450/1581] Compiling SwiftParser UnicodeScalarExtensions.swift
[1451/1581] Compiling SwiftParser Lookahead.swift
[1452/1581] Compiling SwiftParser LoopProgressCondition.swift
[1453/1581] Compiling SwiftParser Modifiers.swift
[1454/1581] Compiling SwiftParser Names.swift
[1455/1581] Compiling SwiftParser Nominals.swift
[1456/1581] Compiling SwiftParser Parameters.swift
[1457/1581] Compiling SwiftParser ParseSourceFile.swift
[1458/1581] Compiling SwiftParser Parser.swift
[1459/1581] Compiling SwiftParser Patterns.swift
[1460/1581] Compiling SwiftParser Recovery.swift
[1461/1581] Compiling SwiftParser Specifiers.swift
[1462/1581] Compiling SwiftParser Statements.swift
[1463/1581] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[1467/1581] Compiling SWBCore SDKRegistry.swift
[1468/1581] Compiling SWBCore SWBFeatureFlag.swift
[1469/1581] Compiling SWBCore BuildRuleFile.swift
[1470/1581] Compiling SWBCore BuiltinMacros.swift
[1471/1581] Compiling SWBCore CASOptions.swift
[1472/1581] Compiling SWBCore RecursiveSearchPathResolver.swift
[1473/1581] Compiling SWBCore Settings.swift
[1474/1581] Compiling SWBCore StackedSearchPaths.swift
[1475/1581] Compiling SWBCore ShellScript.swift
[1476/1581] Compiling SWBCore SigningSupport.swift
[1477/1581] Compiling SWBCore CommandLineToolSpec.swift
[1478/1581] Compiling SWBCore CompilerSpec.swift
[1479/1581] Compiling SWBCore FileTypes.swift
[1492/1585] Emitting module SwiftParser
[1493/1585] Compiling SwiftParser RegexLiteralLexer.swift
[1508/1585] Compiling SwiftParser IsValidIdentifier.swift
[1509/1585] Compiling SwiftParser Cursor.swift
[1510/1585] Compiling SwiftParser Lexeme.swift
[1511/1585] Compiling SwiftParser LexemeSequence.swift
[1512/1585] Compiling SwiftParser Lexer.swift
[1515/1585] Write Objects.LinkFileList
[1518/1626] Emitting module package_info
[1519/1626] Compiling package_info example.swift
[1520/1626] Compiling _InternalTestSupport BuildConfiguration+Helpers.swift
[1521/1626] Compiling _InternalTestSupport BuildSystemProvider+Configuration.swift
[1522/1626] Compiling _InternalTestSupport BuildSystemProvider+Supported.swift
[1523/1626] Compiling _InternalTestSupport CombinationsWithRepetition.swift
[1524/1626] Compiling _InternalTestSupport Observability.swift
[1525/1626] Compiling _InternalTestSupport PackageDependencyDescriptionExtensions.swift
[1526/1626] Compiling _InternalTestSupport PackageGraphTester.swift
[1527/1626] Compiling _InternalTestSupport PackageGraphTesterXCTest.swift
[1528/1626] Compiling _InternalTestSupport Commands.swift
[1529/1626] Compiling _InternalTestSupport GitRepositoryExtensions.swift
[1529/1626] Write Objects.LinkFileList
[1531/1626] Compiling SWBCore ValidateDevelopmentAssets.swift
[1532/1626] Compiling SWBCore ValidateEmbeddedBinaryTool.swift
[1533/1626] Compiling SWBCore ValidateProductTool.swift
[1534/1626] Compiling SWBCore WriteFile.swift
[1535/1626] Compiling SWBCore SwiftSDK.swift
[1536/1626] Compiling SWBCore TargetDependencyResolver.swift
[1537/1626] Compiling SWBCore TargetPlatformDiagnostics.swift
[1538/1626] Compiling SWBCore TaskGeneration.swift
[1539/1626] Compiling SWBCore TaskResult.swift
[1540/1626] Compiling SWBCore ClangToolInfo.swift
[1541/1626] Compiling SWBCore ToolchainRegistry.swift
[1542/1626] Compiling SWBCore Tuning.swift
[1543/1626] Compiling SWBCore WorkspaceContext.swift
[1544/1626] Compiling SWBCore WorkspaceSettingsCache.swift
[1545/1626] Compiling SWBCore XCFramework.swift
[1546/1626] Compiling SWBCore resource_bundle_accessor.swift
[1547/1626] Compiling SwiftParser IsLexerClassified.swift
[1548/1626] Compiling SwiftParser LayoutNodes+Parsable.swift
[1549/1626] Compiling SwiftParser Parser+TokenSpecSet.swift
[1550/1626] Compiling SwiftParser TokenSpecStaticMembers.swift
[1551/1680] Emitting module swift_build_prebuilts
[1552/1680] Compiling swift_build_prebuilts BuildPrebuilts.swift
[1553/1747] Compiling SWBWebAssemblyPlatform resource_bundle_accessor.swift
[1554/1747] Compiling SWBQNXPlatform resource_bundle_accessor.swift
[1555/1747] Emitting module SWBWebAssemblyPlatform
[1556/1747] Compiling SWBWebAssemblyPlatform Plugin.swift
[1557/1756] Compiling SWBWindowsPlatform resource_bundle_accessor.swift
[1558/1756] Compiling SWBWindowsPlatform VSInstallation.swift
[1559/1756] Emitting module SWBWindowsPlatform
[1560/1756] Compiling SWBWindowsPlatform KnownFolders.swift
[1561/1756] Compiling SWBWindowsPlatform Plugin.swift
[1562/1759] Compiling SwiftIDEUtils SyntaxClassification.swift
[1563/1759] Compiling SWBQNXPlatform Plugin.swift
[1564/1759] Emitting module SWBQNXPlatform
[1565/1759] Compiling SWBQNXPlatform QNXSDP.swift
[1566/1764] Compiling SwiftIDEUtils Utils.swift
[1567/1764] Compiling SwiftIDEUtils SwiftIDEUtilsCompatibility.swift
[1568/1764] Compiling SwiftIDEUtils SyntaxClassifier.swift
[1569/1764] Compiling SwiftIDEUtils Syntax+Classifications.swift
[1569/1764] Linking libSwiftPMDataModel.dylib
[1570/1764] Write Objects.LinkFileList
[1572/1764] Compiling SWBAndroidPlatform resource_bundle_accessor.swift
[1573/1764] Compiling SwiftIDEUtils DeclNameLocation.swift
[1574/1764] Compiling SwiftIDEUtils FixItApplier.swift
[1575/1764] Emitting module SwiftIDEUtils
[1576/1764] Compiling SwiftIDEUtils NameMatcher.swift
[1577/1766] Compiling SwiftParserDiagnostics PresenceUtils.swift
[1578/1766] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[1579/1766] Compiling SwiftParserDiagnostics MissingNodesError.swift
[1580/1766] Compiling SwiftParserDiagnostics MissingTokenError.swift
[1581/1766] Compiling SwiftParserDiagnostics Utils.swift
[1582/1766] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[1583/1767] Emitting module SWBTaskConstruction
[1584/1771] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[1585/1771] Compiling SWBAndroidPlatform JavaProperties.swift
[1586/1771] Emitting module SWBGenericUnixPlatform
[1587/1771] Compiling SWBGenericUnixPlatform resource_bundle_accessor.swift
[1588/1771] Compiling SWBGenericUnixPlatform Plugin.swift
[1589/1771] Emitting module SwiftBuild
[1589/1776] Linking package-info
[1591/1776] Compiling SWBAndroidPlatform Plugin.swift
[1592/1776] Compiling SWBAndroidPlatform AndroidSDK.swift
[1593/1776] Emitting module SWBAndroidPlatform
[1593/1776] Applying package-info
[1596/1776] Compiling SwiftBuild ImpartedBuildProperties.swift
[1597/1776] Compiling SwiftBuild PlatformFilter.swift
[1598/1776] Compiling SwiftBuild Project.swift
[1599/1776] Compiling SwiftBuild ProjectModel.swift
[1600/1776] Compiling SwiftBuild References.swift
[1601/1776] Emitting module SwiftFixIt
[1602/1776] Compiling SwiftFixIt SwiftFixIt.swift
[1603/1776] Compiling SwiftBuild SWBSourceLanguage.swift
[1604/1776] Compiling SwiftBuild SWBSystemInfo.swift
[1605/1776] Compiling SwiftBuild SWBTargetGUID.swift
[1606/1776] Compiling SwiftBuild SWBTerminal.swift
[1607/1776] Compiling SwiftBuild SWBUserInfo.swift
[1608/1776] Compiling SwiftBuild SWBMacroEvaluation.swift
[1609/1776] Compiling SwiftBuild SWBPreviewSupport.swift
[1610/1776] Compiling SwiftBuild SWBProductPlannerSupport.swift
[1611/1776] Compiling SwiftBuild SWBPropertyList.swift
[1612/1776] Compiling SwiftBuild SWBProvisioningTaskInputs.swift
[1613/1776] Compiling SwiftBuild SandboxingOverride.swift
[1614/1776] Compiling SwiftBuild TargetDependency.swift
[1615/1776] Compiling SWBTaskConstruction IndexBuildVFSDirectoryRemapTaskProducer.swift
[1616/1776] Compiling SWBTaskConstruction PCHModuleMapTaskProducer.swift
[1617/1776] Compiling SWBTaskConstruction XCFrameworkTaskProducer.swift
[1618/1776] Compiling SWBTaskConstruction XCFrameworkContext.swift
[1623/1776] Compiling SwiftBuild SWBWorkspaceInfo.swift
[1624/1776] Compiling SwiftBuild SWBuildMessage+Protocol.swift
[1625/1776] Compiling SwiftBuild SwiftBuild.swift
[1626/1776] Compiling SwiftBuild SwiftBuildVersion.swift
[1627/1776] Compiling SwiftBuild TerminalAttributes.swift
[1628/1776] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[1629/1776] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[1630/1776] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[1631/1776] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[1632/1776] Emitting module SwiftParserDiagnostics
[1633/1776] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[1634/1776] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[1645/1791] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[1646/1791] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[1647/1791] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[1648/1791] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[1649/1791] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[1651/1791] Compiling SwiftBuild SWBServiceConsoleXcodeCommands.swift
[1652/1791] Compiling SwiftBuild BuildConfig.swift
[1653/1791] Compiling SwiftBuild BuildFile.swift
[1654/1791] Compiling SwiftBuild BuildPhases.swift
[1654/1791] Linking libSwiftPM.dylib
[1656/1791] Compiling SwiftBuild SWBServiceConsoleCreateXCFrameworkCommand.swift
[1657/1791] Compiling SwiftBuild SWBServiceConsoleGeneralCommands.swift
[1658/1791] Compiling SwiftBuild SWBServiceConsoleSessionCommands.swift
[1659/1791] Compiling SwiftBuild SWBConfiguredTargetInfo.swift
[1660/1791] Compiling SwiftBuild SWBConfiguredTargetSourceFilesInfo.swift
[1661/1791] Compiling SwiftBuild SWBClientExchangeSupport.swift
[1662/1791] Compiling SwiftBuild SWBConfiguredTargetIdentifier.swift
[1663/1791] Compiling SwiftBuild CompatibilityShims.swift
[1664/1791] Compiling SwiftBuild SWBServiceConsoleBuildCommand.swift
[1665/1791] Compiling SwiftBuild SWBServiceConsoleBuildCommandProtocol.swift
[1666/1791] Compiling SwiftBuild SWBDocumentationSupport.swift
[1667/1791] Compiling SwiftBuild SWBIndexingSupport.swift
[1668/1791] Compiling SwiftBuild SWBLocalizationSupport.swift
[1670/1791] Linking swift-build-prebuilts
[1672/1791] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[1673/1791] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[1674/1791] Compiling SwiftSyntaxBuilder Indenter.swift
[1675/1791] Compiling SwiftSyntaxBuilder ListBuilder.swift
[1676/1791] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[1676/1791] Applying swift-build-prebuilts
[1683/1791] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[1684/1792] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[1685/1792] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[1686/1792] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[1695/1792] Emitting module SwiftSyntaxBuilder
[1698/1792] Emitting module _InternalTestSupport
[1699/1795] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[1705/1795] Compiling SwiftBuild SWBBuildServiceConsole.swift
[1706/1795] Compiling SwiftBuild SWBBuildServiceSession.swift
[1707/1795] Compiling SwiftBuild SWBChannel.swift
[1714/1795] Compiling SwiftBuild BuildRule.swift
[1715/1795] Compiling SwiftBuild BuildSettings.swift
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:45:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 43 |         disabled("skipping test because the `llvm-profdata` tool isn't available") {
 44 |             let toolPath = try (try? UserToolchain.default)!.getLLVMProf()
 45 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 46 |         }
 47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:53:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 51 |         disabled("skipping test because the `llvm-cov` tool isn't available") {
 52 |             let toolPath = try (try? UserToolchain.default)!.getLLVMCov()
 53 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 54 |         }
 55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:61:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 59 |         disabled("skipping test because the `swift-symbolgraph-extract` tools isn't available") {
 60 |             let toolPath = try (try? UserToolchain.default)!.getSymbolGraphExtract()
 61 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 62 |         }
 63 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:45:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 43 |         disabled("skipping test because the `llvm-profdata` tool isn't available") {
 44 |             let toolPath = try (try? UserToolchain.default)!.getLLVMProf()
 45 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 46 |         }
 47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:53:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 51 |         disabled("skipping test because the `llvm-cov` tool isn't available") {
 52 |             let toolPath = try (try? UserToolchain.default)!.getLLVMCov()
 53 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 54 |         }
 55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:61:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 59 |         disabled("skipping test because the `swift-symbolgraph-extract` tools isn't available") {
 60 |             let toolPath = try (try? UserToolchain.default)!.getSymbolGraphExtract()
 61 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 62 |         }
 63 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:45:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 43 |         disabled("skipping test because the `llvm-profdata` tool isn't available") {
 44 |             let toolPath = try (try? UserToolchain.default)!.getLLVMProf()
 45 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 46 |         }
 47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:53:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 51 |         disabled("skipping test because the `llvm-cov` tool isn't available") {
 52 |             let toolPath = try (try? UserToolchain.default)!.getLLVMCov()
 53 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 54 |         }
 55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:61:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 59 |         disabled("skipping test because the `swift-symbolgraph-extract` tools isn't available") {
 60 |             let toolPath = try (try? UserToolchain.default)!.getSymbolGraphExtract()
 61 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 62 |         }
 63 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:45:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 43 |         disabled("skipping test because the `llvm-profdata` tool isn't available") {
 44 |             let toolPath = try (try? UserToolchain.default)!.getLLVMProf()
 45 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 46 |         }
 47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:53:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 51 |         disabled("skipping test because the `llvm-cov` tool isn't available") {
 52 |             let toolPath = try (try? UserToolchain.default)!.getLLVMCov()
 53 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 54 |         }
 55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/SwiftTesting+TraitConditional.swift:61:29: warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 59 |         disabled("skipping test because the `swift-symbolgraph-extract` tools isn't available") {
 60 |             let toolPath = try (try? UserToolchain.default)!.getSymbolGraphExtract()
 61 |             return toolPath == nil
    |                             `- warning: comparing non-optional value of type 'AbsolutePath' to 'nil' always returns false
 62 |         }
 63 |     }
[1746/1822] Emitting module SwiftRefactor
[1747/1824] Compiling SwiftRefactor AddPackageDependency.swift
[1748/1824] Compiling SwiftRefactor AddPackageTarget.swift
[1749/1824] Compiling SwiftRefactor AddPluginUsage.swift
[1750/1824] Compiling SwiftRefactor ConvertComputedPropertyToStored.swift
[1751/1824] Compiling SwiftRefactor ConvertComputedPropertyToZeroParameterFunction.swift
[1752/1824] Compiling SwiftRefactor ConvertStoredPropertyToComputed.swift
[1753/1824] Compiling SwiftRefactor AddSeparatorsToIntegerLiteral.swift
[1754/1824] Compiling SwiftRefactor CallLikeSyntax.swift
[1755/1824] Compiling SwiftRefactor CallToTrailingClosures.swift
[1756/1824] Compiling SwiftRefactor IntegerLiteralUtilities.swift
[1757/1824] Compiling SwiftRefactor MigrateToNewIfLetSyntax.swift
[1758/1824] Compiling SwiftRefactor OpaqueParameterToGeneric.swift
[1759/1824] Compiling SwiftRefactor ConvertZeroParameterFunctionToComputedProperty.swift
[1760/1824] Compiling SwiftRefactor ExpandEditorPlaceholder.swift
[1761/1824] Compiling SwiftRefactor FormatRawStringLiteral.swift
[1762/1824] Compiling SwiftRefactor SyntaxEditUtils.swift
[1763/1824] Compiling SwiftRefactor RefactoringProvider.swift
[1764/1824] Compiling SwiftRefactor RemoveSeparatorsFromIntegerLiteral.swift
[1765/1824] Compiling SwiftRefactor SyntaxUtils.swift
[1770/1824] Compiling _InternalTestSupport Toolchain.swift
[1771/1824] Compiling _InternalTestSupport XCTAssertHelpers.swift
[1772/1824] Compiling _InternalTestSupport misc.swift
[1773/1824] Compiling SwiftRefactor ManifestEditError.swift
[1774/1824] Compiling SwiftRefactor ManifestSyntaxRepresentable.swift
[1775/1824] Compiling SwiftRefactor PackageDependency.swift
[1776/1824] Compiling SwiftRefactor PackageTarget.swift
[1777/1824] Compiling SwiftRefactor ProductDescription.swift
[1778/1824] Compiling SwiftRefactor StringUtils.swift
[1779/1824] Compiling SwiftRefactor AddProduct.swift
[1780/1824] Compiling SwiftRefactor AddSwiftSetting.swift
[1781/1824] Compiling SwiftRefactor AddTargetDependency.swift
[1790/1827] Emitting module _IntegrationTestSupport
[1791/1827] Compiling _IntegrationTestSupport Filesystem.swift
[1792/1827] Compiling _IntegrationTestSupport Helpers.swift
[1798/1926] Compiling SWBTaskExecution DynamicTaskSpecRegistry.swift
[1799/1926] Compiling SWBTaskExecution PrecompileClangModuleDynamicTaskSpec.swift
[1800/1926] Compiling SWBTaskExecution CodeSignTaskAction.swift
[1801/1929] Emitting module SWBApplePlatform
[1802/1929] Compiling SWBTaskExecution BuildDescription.swift
[1803/1929] Compiling SWBTaskExecution BuildDescriptionManager.swift
[1804/1929] Compiling SWBTaskExecution BuildDescriptionSignature.swift
[1805/1929] Compiling SWBTaskExecution BuiltinTaskActionsExtension.swift
[1806/1929] Compiling SWBTaskExecution ClangModuleDependencyGraph.swift
[1807/1929] Compiling SWBTaskExecution CompilationCachingDataPruner.swift
[1808/1929] Compiling SWBTaskExecution CompilationCachingUploader.swift
[1809/1929] Compiling SWBTaskExecution DynamicTaskOperationContext.swift
[1810/1929] Compiling SWBTaskExecution ClangCachingKeyQueryDynamicTaskSpec.swift
[1811/1929] Compiling SWBTaskExecution ClangCachingMaterializeKeyDynamicTaskSpec.swift
[1812/1929] Compiling SWBTaskExecution ClangCachingOutputMaterializerDynamicTaskSpec.swift
[1813/1929] Compiling SWBTaskExecution ClangCachingTaskCacheKey.swift
[1814/1929] Compiling SWBApplePlatform XCStringsCompiler.swift
[1815/1929] Compiling SWBApplePlatform XCStringsInputFileGroupingStrategy.swift
[1816/1929] Compiling SWBApplePlatform resource_bundle_accessor.swift
[1817/1929] Compiling SWBTaskExecution SwiftDriverJobDynamicTaskSpec.swift
[1818/1929] Compiling SWBTaskExecution SwiftDriverPlanningDynamicTaskSpec.swift
[1819/1929] Compiling SWBTaskExecution ProjectPlanner.swift
[1820/1929] Compiling SWBTaskExecution Task.swift
[1821/1929] Compiling SWBTaskExecution CopyTiffTaskAction.swift
[1822/1929] Compiling SWBTaskExecution CreateBuildDirectoryTaskAction.swift
[1823/1929] Compiling SWBTaskExecution SwiftCachingDynamicTaskSpec.swift
[1824/1929] Compiling SWBTaskExecution SwiftCachingTaskKeys.swift
[1825/1929] Compiling SWBTaskExecution TaskActionExtensionPoint.swift
[1826/1929] Compiling SWBTaskExecution AuxiliaryFileTaskAction.swift
[1827/1929] Compiling SWBTaskExecution ClangCachingKeyQueryTaskAction.swift
[1828/1929] Compiling SWBTaskExecution ClangCachingMaterializeKeyTaskAction.swift
[1829/1929] Compiling SWBTaskExecution ConcatenateTaskAction.swift
[1830/1929] Compiling SWBTaskExecution ConstructStubExecutorInputFileListTaskAction.swift
[1831/1929] Compiling SWBTaskExecution CopyPlistTaskAction.swift
[1832/1929] Compiling SWBTaskExecution CopyStringsFileTaskAction.swift
[1833/1929] Compiling SWBTaskExecution ClangCachingOutputMaterializerTaskAction.swift
[1834/1929] Compiling SWBTaskExecution ClangCompileTaskAction.swift
[1835/1929] Compiling SWBTaskExecution ClangModuleVerifierInputGeneratorTaskAction.swift
[1836/1929] Compiling SWBTaskExecution ClangScanTaskAction.swift
[1844/1935] Compiling SWBTaskExecution ProcessSDKImportsTaskAction.swift
[1845/1935] Compiling SWBTaskExecution ProcessXCFrameworkTaskAction.swift
[1846/1935] Compiling SWBTaskExecution RegisterExecutionPolicyExceptionTaskAction.swift
[1847/1935] Compiling SWBTaskExecution SignatureCollectionTaskAction.swift
[1848/1935] Compiling SWBTaskExecution SwiftCachingKeyQueryTaskAction.swift
[1849/1935] Compiling SWBTaskExecution SwiftCachingMaterializeKeyTaskAction.swift
[1850/1935] Compiling SWBTaskExecution SwiftCachingOutputMaterializerTaskAction.swift
[1851/1935] Compiling SWBTaskExecution SwiftCompilationTaskAction.swift
[1852/1935] Compiling SWBTaskExecution SwiftDriverCompilationRequirementTaskAction.swift
[1853/1935] Compiling SWBTaskExecution SwiftDriverJobSchedulingTaskAction.swift
[1854/1935] Compiling SWBTaskExecution SwiftDriverJobTaskAction.swift
[1855/1935] Compiling SWBTaskExecution SwiftDriverTaskAction.swift
[1856/1935] Compiling SWBTaskExecution SwiftHeaderToolTaskAction.swift
[1857/1935] Compiling SWBTaskExecution LinkerTaskAction.swift
[1858/1935] Compiling SWBTaskExecution MergeInfoPlistTaskAction.swift
[1859/1935] Compiling SWBTaskExecution ODRAssetPackManifestTaskAction.swift
[1860/1935] Compiling SWBTaskExecution ObjectLibraryAssemblerTaskAction.swift
[1861/1935] Compiling SWBTaskExecution PrecompileClangModuleTaskAction.swift
[1862/1935] Compiling SWBTaskExecution ProcessProductEntitlementsTaskAction.swift
[1863/1935] Compiling SWBTaskExecution ProcessProductProvisioningProfileTaskAction.swift
[1871/1935] Compiling SWBTaskExecution TaskAction.swift
[1872/1935] Compiling SWBTaskExecution ValidateDependenciesTaskAction.swift
[1873/1935] Compiling SWBTaskExecution ValidateDevelopmentAssetsTaskAction.swift
[1874/1935] Compiling SWBTaskExecution ValidateProductTaskAction.swift
[1875/1935] Compiling SWBTaskExecution TaskResult.swift
[1876/1935] Compiling SWBTaskExecution TaskStore.swift
[1884/1935] Emitting module SWBTaskExecution
[1902/1935] Compiling SWBTaskExecution GenericCachingTaskAction.swift
[1903/1935] Compiling SWBTaskExecution InfoPlistProcessorTaskAction.swift
[1904/1935] Compiling SWBTaskExecution LSRegisterURLTaskAction.swift
[1905/1935] Compiling SWBTaskExecution LinkAssetCatalogTaskAction.swift
[1906/1955] Emitting module SWBUniversalPlatform
[1907/1955] Compiling SWBUniversalPlatform BareMetal.swift
[1908/1955] Compiling SWBUniversalPlatform CopyPlistFile.swift
[1909/1956] Compiling SWBUniversalPlatform YaccCompiler.swift
[1910/1956] Compiling SWBUniversalPlatform TestEntryPointGenerationTool.swift
[1911/1956] Compiling SWBUniversalPlatform TestEntryPointTaskProducer.swift
[1912/1956] Compiling SWBUniversalPlatform Plugin.swift
[1913/1956] Compiling SWBUniversalPlatform LexCompiler.swift
[1914/1956] Compiling SWBUniversalPlatform TestEntryPointGenerationTaskAction.swift
[1915/1956] Compiling SWBUniversalPlatform CopyStringsFile.swift
[1916/1956] Compiling SWBUniversalPlatform CppTool.swift
[1917/1956] Compiling SWBUniversalPlatform DiffTool.swift
[1918/1956] Compiling SWBUniversalPlatform resource_bundle_accessor.swift
[1919/1956] Compiling SWBBuildSystem CleanOperation.swift
[1920/1956] Compiling SWBBuildSystem SandboxViolations.swift
[1921/1956] Compiling SWBBuildSystem DependencyCycleFormatter.swift
[1922/1956] Compiling SWBBuildSystem BuildOperationExtension.swift
[1923/1956] Compiling SWBBuildSystem BuildSystemCache.swift
[1924/1956] Compiling SWBBuildSystem BuildManager.swift
[1925/1956] Emitting module SWBBuildSystem
[1926/1956] Compiling SWBBuildSystem BuildOperation.swift
[1927/1971] Emitting module SWBBuildService
[1928/1972] Compiling SWBBuildService PreviewInfo.swift
[1929/1972] Compiling SWBBuildService DependencyGraphMessages.swift
[1930/1972] Compiling SWBBuildService DocumentationInfo.swift
[1931/1972] Compiling SWBBuildService BuildDependencyInfo.swift
[1932/1972] Compiling SWBBuildService BuildDescriptionMessages.swift
[1933/1972] Compiling SWBBuildService Tools.swift
[1934/1972] Compiling SWBBuildService PlanningOperation.swift
[1935/1972] Compiling SWBBuildService BuildServiceEntryPoint.swift
[1936/1972] Compiling SWBBuildService ClientExchangeDelegate.swift
[1937/1972] Compiling SWBBuildService Session.swift
[1938/1972] Compiling SWBBuildService BuildOperationMessages.swift
[1939/1972] Compiling SWBBuildService BuildService.swift
[1940/1972] Compiling SWBBuildService LocalizationInfo.swift
[1941/1972] Compiling SWBBuildService Messages.swift
[1942/1972] Compiling SWBBuildService ProjectDescriptor.swift
[1943/1983] Compiling SwiftBuildSupport PackagePIFProjectBuilder+Modules.swift
[1944/1983] Compiling SwiftBuildSupport PackagePIFProjectBuilder.swift
[1945/1983] Compiling SwiftBuildSupport PackagePIFBuilder+Helpers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/PackagePIFBuilder+Helpers.swift:911:13: warning: default will never be executed
 909 |                 fatalError("Unexpected BuildSettings.Declaration: \(setting)")
 910 |             // Allow staging in new cases
 911 |             default:
     |             `- warning: default will never be executed
 912 |                 fatalError("Unhandled enum case in BuildSettings.Declaration. Will generate a warning until we have SE-0487")
 913 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/PackagePIFBuilder+Helpers.swift:936:13: warning: default will never be executed
 934 |                 fatalError("Unexpected BuildSettings.Declaration: \(setting)")
 935 |             // Allow staging in new cases
 936 |             default:
     |             `- warning: default will never be executed
 937 |                 fatalError("Unhandled enum case in BuildSettings.Declaration. Will generate a warning until we have SE-0487")
 938 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/PackagePIFBuilder+Helpers.swift:967:9: warning: default will never be executed
 965 |             return nil
 966 |         // Allow staging in new cases
 967 |         default:
     |         `- warning: default will never be executed
 968 |             fatalError("Unhandled enum case in BuildSettings.Declaration. Will generate a warning until we have SE-0487")
 969 |         }
[1946/1983] Compiling SwiftBuildSupport PackagePIFBuilder+Plugins.swift
[1947/1983] Compiling SwiftBuildSupport PackagePIFBuilder.swift
[1948/1983] Compiling SwiftBuildSupport PIF.swift
[1949/1983] Compiling SwiftBuildSupport PIFBuilder.swift
[1950/1983] Emitting module SwiftBuildSupport
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/SwiftBuildSystem.swift:378:71: warning: converting non-sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races
 376 |         let buildStartTime = ContinuousClock.Instant.now
 377 |         var replArguments: CLIArguments?
 378 |         return try await withService(connectionMode: .inProcessStatic(swiftbuildServiceEntryPoint)) { service in
     |                                                                       `- warning: converting non-sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races
 379 |             let derivedDataPath = self.buildParameters.dataPath
 380 |
[1951/1983] Compiling SwiftBuildSupport BuildSystem.swift
[1952/1983] Compiling SwiftBuildSupport DotPIFSerializer.swift
[1953/1983] Compiling SwiftBuildSupport PackagePIFProjectBuilder+Products.swift
[1954/1984] Compiling SwiftBuildSupport SwiftBuildSystem.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/SwiftBuildSystem.swift:378:71: warning: converting non-sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races
 376 |         let buildStartTime = ContinuousClock.Instant.now
 377 |         var replArguments: CLIArguments?
 378 |         return try await withService(connectionMode: .inProcessStatic(swiftbuildServiceEntryPoint)) { service in
     |                                                                       `- warning: converting non-sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races
 379 |             let derivedDataPath = self.buildParameters.dataPath
 380 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/SwiftBuildSystem.swift:828:13: warning: variable 'settings' was never mutated; consider changing to 'let' constant
 826 |
 827 |     private static func constructDebuggingSettingsOverrides(from parameters: BuildParameters.Debugging) -> [String: String] {
 828 |         var settings: [String: String] = [:]
     |             `- warning: variable 'settings' was never mutated; consider changing to 'let' constant
 829 |         // TODO: debugInfoFormat: https://github.com/swiftlang/swift-build/issues/560
 830 |         // TODO: shouldEnableDebuggingEntitlement: Enable/Disable get-task-allow
[1955/1994] Compiling _InternalBuildTestSupport MockBuildTestHelper.swift
[1956/1994] Emitting module _InternalBuildTestSupport
[1957/1994] Compiling _InternalBuildTestSupport PIFTester.swift
[1958/1994] Compiling swift_bootstrap main.swift
[1959/1994] Emitting module swift_bootstrap
[1960/1994] Compiling CoreCommands SwiftCommandState.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreCommands/SwiftCommandState.swift:422:22: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 420 |
 421 |         // set global process logging handler
 422 |         AsyncProcess.loggingHandler = { self.observabilityScope.emit(debug: $0) }
     |                      `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 423 |     }
 424 |
/Users/admin/builder/spi-builder-workspace/Sources/CoreCommands/SwiftCommandState.swift:823:78: warning: converting non-sendable function value to '@Sendable (DispatchTime) async throws -> Void' may introduce data races
 821 |
 822 |         // register the build system with the cancellation handler
 823 |         self.cancellator.register(name: "build system", handler: buildSystem.cancel)
     |                                                                              `- warning: converting non-sendable function value to '@Sendable (DispatchTime) async throws -> Void' may introduce data races
 824 |         return buildSystem
 825 |     }
[1961/1994] Compiling CoreCommands SwiftCommandObservabilityHandler.swift
[1961/1994] Write Objects.LinkFileList
[1963/1994] Compiling CoreCommands BuildSystemSupport.swift
[1964/1994] Emitting module CoreCommands
[1965/1994] Compiling CoreCommands Options.swift
[1966/2051] Compiling SwiftSDKCommand ListSwiftSDKs.swift
[1967/2052] Compiling SwiftSDKCommand RemoveSwiftSDK.swift
[1968/2052] Compiling SwiftSDKCommand InstallSwiftSDK.swift
[1969/2052] Compiling SwiftSDKCommand ConfigureSwiftSDK.swift
[1970/2052] Compiling SwiftSDKCommand SwiftSDKCommand.swift
[1971/2052] Compiling Commands CommandWorkspaceDelegate.swift
[1972/2052] Compiling Commands APIDiff.swift
[1973/2052] Compiling SwiftSDKCommand SetConfiguration.swift
[1974/2052] Compiling SwiftSDKCommand ResetConfiguration.swift
[1975/2052] Emitting module SwiftSDKCommand
[1976/2052] Compiling SwiftSDKCommand ShowConfiguration.swift
[1977/2052] Compiling SwiftSDKCommand SwiftSDKSubcommand.swift
[1978/2052] Compiling Commands DependenciesSerializer.swift
[1979/2052] Compiling Commands DescribedPackage.swift
[1980/2052] Compiling Commands MermaidPackageSerializer.swift
[1981/2052] Compiling Commands MultiRootSupport.swift
[1982/2052] Compiling Commands PlainTextEncoder.swift
[1983/2057] Emitting module Commands
/Users/admin/builder/spi-builder-workspace/Sources/Commands/PackageCommands/DumpCommands.swift:202:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
200 |
201 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
202 |     fileprivate static func accessLevel(_ accessLevel: SymbolGraphExtract.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
203 |         return BuildOutput.SymbolGraphAccessLevel.init(rawValue: accessLevel.rawValue)!
204 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Utilities/PluginDelegate.swift:520:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
518 |
519 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
520 |     fileprivate static func accessLevel(_ accessLevel: PluginInvocationSymbolGraphOptions.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
521 |         return switch accessLevel {
522 |         case .private:
[1984/2057] Compiling Commands AddTarget.swift
[1985/2057] Compiling Commands AddTargetDependency.swift
[1986/2057] Compiling Commands ArchiveSource.swift
[1987/2057] Compiling Commands AuditBinaryArtifact.swift
[1988/2057] Compiling Commands CompletionCommand.swift
[1989/2057] Compiling Commands SwiftPackageCommand.swift
[1990/2057] Compiling Commands ToolsVersionCommand.swift
[1991/2057] Compiling Commands Update.swift
[1992/2057] Compiling Commands Card.swift
[1993/2057] Compiling Commands CardEvent.swift
[1996/2057] Compiling Commands AddDependency.swift
[1997/2057] Compiling Commands AddProduct.swift
[1998/2057] Compiling Commands AddSetting.swift
[1999/2057] Compiling Commands PluginCommand.swift
[2000/2057] Compiling Commands ResetCommands.swift
[2001/2057] Compiling Commands Resolve.swift
[2002/2057] Compiling Commands ShowDependencies.swift
[2003/2057] Compiling Commands ShowExecutables.swift
[2004/2057] Compiling Commands PluginDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Utilities/PluginDelegate.swift:520:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
518 |
519 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
520 |     fileprivate static func accessLevel(_ accessLevel: PluginInvocationSymbolGraphOptions.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
521 |         return switch accessLevel {
522 |         case .private:
[2005/2057] Compiling Commands RefactoringSupport.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Utilities/PluginDelegate.swift:520:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
518 |
519 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
520 |     fileprivate static func accessLevel(_ accessLevel: PluginInvocationSymbolGraphOptions.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
521 |         return switch accessLevel {
522 |         case .private:
[2006/2057] Compiling Commands SymbolGraphExtract.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Utilities/PluginDelegate.swift:520:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
518 |
519 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
520 |     fileprivate static func accessLevel(_ accessLevel: PluginInvocationSymbolGraphOptions.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
521 |         return switch accessLevel {
522 |         case .private:
[2007/2057] Compiling Commands TestingSupport.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Utilities/PluginDelegate.swift:520:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
518 |
519 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
520 |     fileprivate static func accessLevel(_ accessLevel: PluginInvocationSymbolGraphOptions.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
521 |         return switch accessLevel {
522 |         case .private:
[2008/2057] Compiling Commands XCTEvents.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Utilities/PluginDelegate.swift:520:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
518 |
519 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
520 |     fileprivate static func accessLevel(_ accessLevel: PluginInvocationSymbolGraphOptions.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
521 |         return switch accessLevel {
522 |         case .private:
[2009/2057] Compiling Commands CardStack.swift
[2010/2057] Compiling Commands SnippetCard.swift
[2011/2057] Compiling Commands SnippetGroupCard.swift
[2012/2057] Compiling Commands TopCard.swift
[2013/2057] Compiling Commands Colorful.swift
[2014/2057] Compiling Commands Format.swift
[2015/2057] Compiling Commands Init.swift
[2016/2057] Compiling Commands Install.swift
[2017/2057] Compiling Commands Learn.swift
[2018/2057] Compiling Commands Migrate.swift
[2019/2057] Compiling Commands SwiftBuildCommand.swift
[2020/2057] Compiling Commands SwiftRunCommand.swift
[2021/2057] Compiling Commands SwiftTestCommand.swift
[2022/2057] Compiling Commands APIDigester.swift
[2023/2057] Compiling Commands DOTManifestSerializer.swift
[2024/2057] Compiling Commands ComputeChecksum.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/PackageCommands/DumpCommands.swift:202:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
200 |
201 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
202 |     fileprivate static func accessLevel(_ accessLevel: SymbolGraphExtract.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
203 |         return BuildOutput.SymbolGraphAccessLevel.init(rawValue: accessLevel.rawValue)!
204 |     }
[2025/2057] Compiling Commands Config.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/PackageCommands/DumpCommands.swift:202:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
200 |
201 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
202 |     fileprivate static func accessLevel(_ accessLevel: SymbolGraphExtract.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
203 |         return BuildOutput.SymbolGraphAccessLevel.init(rawValue: accessLevel.rawValue)!
204 |     }
[2026/2057] Compiling Commands Describe.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/PackageCommands/DumpCommands.swift:202:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
200 |
201 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
202 |     fileprivate static func accessLevel(_ accessLevel: SymbolGraphExtract.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
203 |         return BuildOutput.SymbolGraphAccessLevel.init(rawValue: accessLevel.rawValue)!
204 |     }
[2027/2057] Compiling Commands DumpCommands.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/PackageCommands/DumpCommands.swift:202:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
200 |
201 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
202 |     fileprivate static func accessLevel(_ accessLevel: SymbolGraphExtract.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
203 |         return BuildOutput.SymbolGraphAccessLevel.init(rawValue: accessLevel.rawValue)!
204 |     }
[2028/2057] Compiling Commands EditCommands.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/PackageCommands/DumpCommands.swift:202:5: warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
200 |
201 | fileprivate extension BuildOutput.SymbolGraphAccessLevel {
202 |     fileprivate static func accessLevel(_ accessLevel: SymbolGraphExtract.AccessLevel) -> BuildOutput.SymbolGraphAccessLevel {
    |     `- warning: 'fileprivate' modifier is redundant for static method declared in a fileprivate extension
203 |         return BuildOutput.SymbolGraphAccessLevel.init(rawValue: accessLevel.rawValue)!
204 |     }
[2028/2075] Linking swift-bootstrap
[2029/2075] Applying swift-bootstrap
[2031/2075] Compiling swift_experimental_sdk Entrypoint.swift
[2032/2075] Emitting module swift_run
[2033/2075] Compiling swift_run Entrypoint.swift
[2034/2075] Emitting module swift_sdk
[2035/2075] Compiling swift_sdk Entrypoint.swift
[2036/2075] Emitting module swift_build
[2037/2075] Compiling swift_build Entrypoint.swift
[2038/2075] Emitting module swift_experimental_sdk
[2039/2075] Compiling swift_test Entrypoint.swift
[2040/2075] Emitting module swift_test
[2041/2075] Emitting module swift_package
[2042/2075] Compiling swift_package Entrypoint.swift
[2042/2075] Write Objects.LinkFileList
[2049/2075] Compiling PackageRegistryCommand PackageRegistryCommand.swift
[2050/2075] Compiling PackageRegistryCommand PackageRegistryCommand+Auth.swift
[2051/2075] Emitting module PackageRegistryCommand
[2052/2075] Compiling PackageRegistryCommand PackageRegistryCommand+Publish.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageRegistryCommand/PackageRegistryCommand+Publish.swift:436:25: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
434 |         manifests.append(Manifest.filename)
435 |
436 |         let regex = try RegEx(pattern: #"^Package@swift-(\d+)(?:\.(\d+))?(?:\.(\d+))?.swift$"#)
    |                         `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
437 |         let versionSpecificManifests: [String] = packageContents.filter { file in
438 |             let matchGroups = regex.matchGroups(in: file)
[2053/2077] Compiling PackageCollectionsCommand PackageCollectionsCommand.swift
[2054/2077] Emitting module PackageCollectionsCommand
[2055/2077] Compiling swift_package_registry runner.swift
[2056/2077] Emitting module swift_package_registry
[2056/2077] Write Objects.LinkFileList
[2058/2081] Emitting module swift_package_collection
[2059/2081] Compiling swift_package_collection Entrypoint.swift
[2060/2081] Emitting module swift_package_manager
[2061/2081] Compiling swift_package_manager SwiftPM.swift
[2061/2081] Write Objects.LinkFileList
[2063/2081] Linking swift-sdk
[2064/2081] Linking swift-run
[2065/2081] Linking swift-experimental-sdk
[2066/2081] Linking swift-build
[2067/2081] Applying swift-sdk
[2068/2081] Linking swift-test
[2069/2081] Linking swift-package
[2070/2081] Applying swift-run
[2071/2081] Applying swift-experimental-sdk
[2072/2081] Applying swift-build
[2073/2081] Applying swift-test
[2074/2081] Linking swift-package-registry
[2075/2081] Applying swift-package
[2076/2081] Applying swift-package-registry
[2077/2081] Linking swift-package-collection
[2078/2081] Linking swift-package-manager
[2079/2081] Applying swift-package-collection
[2080/2081] Applying swift-package-manager
Build complete! (62.99s)
warning: failed to retrieve search paths with pkg-config; maybe pkg-config is not installed
warning: couldn't find pc file for sqlite3
warning: couldn't find pc file for sqlite3
warning: 'swift-build': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-build/Sources/SWBWindowsPlatform/README.md
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-llbuild",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-llbuild.git"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.1",
            "upper_bound" : "1.6.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "3.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    },
    {
      "identity" : "swift-system",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-system.git"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.1",
            "upper_bound" : "1.2.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.git"
    },
    {
      "identity" : "swift-certificates",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.1",
            "upper_bound" : "1.6.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-certificates.git"
    },
    {
      "identity" : "swift-toolchain-sqlite",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-toolchain-sqlite.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-docc-plugin"
    },
    {
      "identity" : "swift-tools-support-core",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-tools-support-core.git"
    },
    {
      "identity" : "swift-driver",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-driver.git"
    },
    {
      "identity" : "swift-build",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-build.git"
    }
  ],
  "manifest_display_name" : "SwiftPM",
  "name" : "SwiftPM",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "17.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftPM",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageGraph",
        "PackageLoading",
        "PackageMetadata",
        "PackageModel",
        "SourceControl",
        "Workspace",
        "Build",
        "LLBuildManifest",
        "SourceKitLSPAPI",
        "SPMLLBuild"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SwiftPM-auto",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageGraph",
        "PackageLoading",
        "PackageMetadata",
        "PackageModel",
        "SourceControl",
        "Workspace",
        "Build",
        "LLBuildManifest",
        "SourceKitLSPAPI",
        "SPMLLBuild"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftPMDataModel",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageGraph",
        "PackageLoading",
        "PackageMetadata",
        "PackageModel",
        "SourceControl",
        "Workspace"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SwiftPMDataModel-auto",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageGraph",
        "PackageLoading",
        "PackageMetadata",
        "PackageModel",
        "SourceControl",
        "Workspace"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "XCBuildSupport",
      "targets" : [
        "XCBuildSupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PackageDescription",
      "targets" : [
        "PackageDescription",
        "CompilerPluginSupport"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "AppleProductTypes",
      "targets" : [
        "AppleProductTypes"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "PackagePlugin",
      "targets" : [
        "PackagePlugin"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "PackageCollectionsModel",
      "targets" : [
        "PackageCollectionsModel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftPMPackageCollections",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageCollectionsSigning",
        "PackageModel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "swiftpm-testing-helper",
      "targets" : [
        "swiftpm-testing-helper"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-test",
      "targets" : [
        "swift-test"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-sdk",
      "targets" : [
        "swift-sdk"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-run",
      "targets" : [
        "swift-run"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-package-registry",
      "targets" : [
        "swift-package-registry"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-package-manager",
      "targets" : [
        "swift-package-manager"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-package-collection",
      "targets" : [
        "swift-package-collection"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-package",
      "targets" : [
        "swift-package"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-experimental-sdk",
      "targets" : [
        "swift-experimental-sdk"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-build-prebuilts",
      "targets" : [
        "swift-build-prebuilts"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-build",
      "targets" : [
        "swift-build"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-bootstrap",
      "targets" : [
        "swift-bootstrap"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "package-info",
      "targets" : [
        "package-info"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "dummy-swiftc",
      "targets" : [
        "dummy-swiftc"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "tsan_utils",
      "module_type" : "ClangTarget",
      "name" : "tsan_utils",
      "path" : "Sources/tsan_utils",
      "sources" : [
        "tsan_utils.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "swiftpm_testing_helper",
      "module_type" : "SwiftTarget",
      "name" : "swiftpm-testing-helper",
      "path" : "Sources/swiftpm-testing-helper",
      "product_memberships" : [
        "swiftpm-testing-helper"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_test",
      "module_type" : "SwiftTarget",
      "name" : "swift-test",
      "path" : "Sources/swift-test",
      "product_memberships" : [
        "swift-test"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_sdk",
      "module_type" : "SwiftTarget",
      "name" : "swift-sdk",
      "path" : "Sources/swift-sdk",
      "product_memberships" : [
        "swift-sdk"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands",
        "SwiftSDKCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_run",
      "module_type" : "SwiftTarget",
      "name" : "swift-run",
      "path" : "Sources/swift-run",
      "product_memberships" : [
        "swift-run"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_package_registry",
      "module_type" : "SwiftTarget",
      "name" : "swift-package-registry",
      "path" : "Sources/swift-package-registry",
      "product_memberships" : [
        "swift-package-registry"
      ],
      "sources" : [
        "runner.swift"
      ],
      "target_dependencies" : [
        "Commands",
        "PackageRegistryCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_package_manager",
      "module_type" : "SwiftTarget",
      "name" : "swift-package-manager",
      "path" : "Sources/swift-package-manager",
      "product_memberships" : [
        "swift-package-manager"
      ],
      "sources" : [
        "SwiftPM.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Commands",
        "SwiftSDKCommand",
        "PackageCollectionsCommand",
        "PackageRegistryCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_package_collection",
      "module_type" : "SwiftTarget",
      "name" : "swift-package-collection",
      "path" : "Sources/swift-package-collection",
      "product_memberships" : [
        "swift-package-collection"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands",
        "PackageCollectionsCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_package",
      "module_type" : "SwiftTarget",
      "name" : "swift-package",
      "path" : "Sources/swift-package",
      "product_memberships" : [
        "swift-package"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Commands"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_experimental_sdk",
      "module_type" : "SwiftTarget",
      "name" : "swift-experimental-sdk",
      "path" : "Sources/swift-experimental-sdk",
      "product_memberships" : [
        "swift-experimental-sdk"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands",
        "SwiftSDKCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_build_prebuilts",
      "module_type" : "SwiftTarget",
      "name" : "swift-build-prebuilts",
      "path" : "Sources/swift-build-prebuilts",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-build-prebuilts"
      ],
      "sources" : [
        "BuildPrebuilts.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Workspace"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_build",
      "module_type" : "SwiftTarget",
      "name" : "swift-build",
      "path" : "Sources/swift-build",
      "product_memberships" : [
        "swift-build"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_bootstrap",
      "module_type" : "SwiftTarget",
      "name" : "swift-bootstrap",
      "path" : "Sources/swift-bootstrap",
      "product_dependencies" : [
        "ArgumentParser",
        "OrderedCollections"
      ],
      "product_memberships" : [
        "swift-bootstrap"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Build",
        "PackageGraph",
        "PackageLoading",
        "PackageModel",
        "XCBuildSupport",
        "SwiftBuildSupport"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "package_info",
      "module_type" : "SwiftTarget",
      "name" : "package-info",
      "path" : "Examples/package-info/Sources/package-info",
      "product_memberships" : [
        "package-info"
      ],
      "sources" : [
        "example.swift"
      ],
      "target_dependencies" : [
        "Workspace"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "dummy_swiftc",
      "module_type" : "SwiftTarget",
      "name" : "dummy-swiftc",
      "path" : "Sources/dummy-swiftc",
      "product_memberships" : [
        "dummy-swiftc"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "_InternalTestSupportTests",
      "module_type" : "SwiftTarget",
      "name" : "_InternalTestSupportTests",
      "path" : "Tests/_InternalTestSupportTests",
      "sources" : [
        "MiscTests.swift",
        "XCTAssertHelpersTests.swift"
      ],
      "target_dependencies" : [
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "_InternalTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "_InternalTestSupport",
      "path" : "Sources/_InternalTestSupport",
      "product_dependencies" : [
        "OrderedCollections",
        "TSCTestSupport"
      ],
      "sources" : [
        "BuildConfiguration+Helpers.swift",
        "BuildSystemProvider+Configuration.swift",
        "BuildSystemProvider+Supported.swift",
        "CombinationsWithRepetition.swift",
        "Commands.swift",
        "GitRepositoryExtensions.swift",
        "InMemoryGitRepository.swift",
        "ManifestExtensions.swift",
        "MockArchiver.swift",
        "MockBuildTestHelper.swift",
        "MockDependency.swift",
        "MockDependencyGraph.swift",
        "MockHTTPClient.swift",
        "MockHashAlgorithm.swift",
        "MockManifestLoader.swift",
        "MockPackage.swift",
        "MockPackageContainer.swift",
        "MockPackageFingerprintStorage.swift",
        "MockPackageGraphs.swift",
        "MockPackageSigningEntityStorage.swift",
        "MockProduct.swift",
        "MockRegistry.swift",
        "MockTarget.swift",
        "MockWorkspace.swift",
        "Observability.swift",
        "PackageDependencyDescriptionExtensions.swift",
        "PackageGraphTester.swift",
        "PackageGraphTesterXCTest.swift",
        "ProcessInfo+hostutils.swift",
        "ResolvedModule+Mock.swift",
        "SwiftPMProduct.swift",
        "SwiftTesting+Helpers.swift",
        "SwiftTesting+Tags.swift",
        "SwiftTesting+TraitArgumentData.swift",
        "SwiftTesting+TraitConditional.swift",
        "SwiftTesting+TraitsBug.swift",
        "Toolchain.swift",
        "XCTAssertHelpers.swift",
        "misc.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "DriverSupport",
        "PackageFingerprint",
        "PackageGraph",
        "PackageLoading",
        "PackageRegistry",
        "PackageSigning",
        "SourceControl",
        "Workspace"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_InternalBuildTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "_InternalBuildTestSupport",
      "path" : "Sources/_InternalBuildTestSupport",
      "sources" : [
        "MockBuildTestHelper.swift",
        "PIFTester.swift"
      ],
      "target_dependencies" : [
        "Build",
        "XCBuildSupport",
        "SwiftBuildSupport",
        "_InternalTestSupport"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_IntegrationTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "_IntegrationTestSupport",
      "path" : "Sources/_IntegrationTestSupport",
      "product_dependencies" : [
        "TSCTestSupport"
      ],
      "sources" : [
        "Filesystem.swift",
        "Helpers.swift"
      ],
      "target_dependencies" : [
        "_InternalTestSupport"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_AsyncFileSystemTests",
      "module_type" : "SwiftTarget",
      "name" : "_AsyncFileSystemTests",
      "path" : "Tests/_AsyncFileSystemTests",
      "sources" : [
        "AsyncFileSystemTests.swift"
      ],
      "target_dependencies" : [
        "_AsyncFileSystem",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "_AsyncFileSystem",
      "module_type" : "SwiftTarget",
      "name" : "_AsyncFileSystem",
      "path" : "Sources/_AsyncFileSystem",
      "product_dependencies" : [
        "SystemPackage"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info",
        "dummy-swiftc"
      ],
      "sources" : [
        "AsyncFileSystem.swift",
        "ConcurrencySupport.swift",
        "MockFileSystem.swift",
        "OSFileSystem.swift",
        "OpenReadableFile.swift",
        "OpenWritableFile.swift",
        "ReadableFileStream.swift",
        "WritableStream.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "XCBuildSupportTests",
      "module_type" : "SwiftTarget",
      "name" : "XCBuildSupportTests",
      "path" : "Tests/XCBuildSupportTests",
      "sources" : [
        "PIFBuilderTests.swift",
        "PIFTests.swift"
      ],
      "target_dependencies" : [
        "XCBuildSupport",
        "_InternalTestSupport",
        "_InternalBuildTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XCBuildSupport",
      "module_type" : "SwiftTarget",
      "name" : "XCBuildSupport",
      "path" : "Sources/XCBuildSupport",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "XCBuildSupport",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "PIF.swift",
        "PIFBuilder.swift",
        "XCBuildDelegate.swift",
        "XCBuildMessage.swift",
        "XCBuildOutputParser.swift",
        "XcodeBuildSystem.swift"
      ],
      "target_dependencies" : [
        "SPMBuildCore",
        "PackageGraph"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkspaceTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkspaceTests",
      "path" : "Tests/WorkspaceTests",
      "sources" : [
        "AuthorizationProviderTests.swift",
        "InitTests.swift",
        "ManifestSourceGenerationTests.swift",
        "MirrorsConfigurationTests.swift",
        "PrebuiltsTests.swift",
        "RegistryPackageContainerTests.swift",
        "ResolvedPackagesStoreTests.swift",
        "SourceControlPackageContainerTests.swift",
        "ToolsVersionSpecificationGenerationTests.swift",
        "ToolsVersionSpecificationRewriterTests.swift",
        "WorkspaceStateTests.swift",
        "WorkspaceTests.swift"
      ],
      "target_dependencies" : [
        "Workspace",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Workspace",
      "module_type" : "SwiftTarget",
      "name" : "Workspace",
      "path" : "Sources/Workspace",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "package-info"
      ],
      "sources" : [
        "CheckoutState.swift",
        "Diagnostics.swift",
        "InitPackage.swift",
        "LoadableResult.swift",
        "ManagedArtifact.swift",
        "ManagedDependency.swift",
        "ManagedPrebuilt.swift",
        "ManifestSigning/Base64URL.swift",
        "ManifestSigning/CertificatePolicy.swift",
        "ManifestSigning/ManifestSigning.swift",
        "ManifestSigning/Signature.swift",
        "ManifestSigning/Utilities.swift",
        "ManifestSigning/X509Extensions.swift",
        "ManifestSigning/embedded_resources.swift",
        "PackageContainer/FileSystemPackageContainer.swift",
        "PackageContainer/RegistryPackageContainer.swift",
        "PackageContainer/SourceControlPackageContainer.swift",
        "ResolvedFileWatcher.swift",
        "ResolverPrecomputationProvider.swift",
        "ToolsVersionSpecificationRewriter.swift",
        "Workspace+BinaryArtifacts.swift",
        "Workspace+Configuration.swift",
        "Workspace+Delegation.swift",
        "Workspace+Dependencies.swift",
        "Workspace+Editing.swift",
        "Workspace+Manifests.swift",
        "Workspace+PackageContainer.swift",
        "Workspace+Prebuilts.swift",
        "Workspace+Registry.swift",
        "Workspace+ResolvedPackages.swift",
        "Workspace+Signing.swift",
        "Workspace+SourceControl.swift",
        "Workspace+State.swift",
        "Workspace.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageFingerprint",
        "PackageGraph",
        "PackageModel",
        "PackageRegistry",
        "PackageSigning",
        "SourceControl",
        "SPMBuildCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftSDKCommand",
      "module_type" : "SwiftTarget",
      "name" : "SwiftSDKCommand",
      "path" : "Sources/SwiftSDKCommand",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-sdk",
        "swift-package-manager",
        "swift-experimental-sdk"
      ],
      "sources" : [
        "Configuration/ConfigurationSubcommand.swift",
        "Configuration/DeprecatedSwiftSDKConfigurationCommand.swift",
        "Configuration/ResetConfiguration.swift",
        "Configuration/SetConfiguration.swift",
        "Configuration/ShowConfiguration.swift",
        "ConfigureSwiftSDK.swift",
        "InstallSwiftSDK.swift",
        "ListSwiftSDKs.swift",
        "RemoveSwiftSDK.swift",
        "SwiftSDKCommand.swift",
        "SwiftSDKSubcommand.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "CoreCommands",
        "SPMBuildCore",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftFixItTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFixItTests",
      "path" : "Tests/SwiftFixItTests",
      "sources" : [
        "BasicTests.swift",
        "CategoryTests.swift",
        "FilteringTests.swift",
        "Utilities.swift"
      ],
      "target_dependencies" : [
        "SwiftFixIt",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftFixIt",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFixIt",
      "path" : "Sources/SwiftFixIt",
      "product_dependencies" : [
        "TSCBasic",
        "SwiftDiagnostics",
        "SwiftIDEUtils",
        "SwiftParser",
        "SwiftSyntax"
      ],
      "product_memberships" : [
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build"
      ],
      "sources" : [
        "SwiftFixIt.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftBuildSupportTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftBuildSupportTests",
      "path" : "Tests/SwiftBuildSupportTests",
      "sources" : [
        "PIFBuilderTests.swift"
      ],
      "target_dependencies" : [
        "SwiftBuildSupport",
        "_InternalTestSupport",
        "_InternalBuildTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftBuildSupport",
      "module_type" : "SwiftTarget",
      "name" : "SwiftBuildSupport",
      "path" : "Sources/SwiftBuildSupport",
      "product_dependencies" : [
        "SwiftBuild",
        "SWBBuildService"
      ],
      "product_memberships" : [
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "BuildSystem.swift",
        "DotPIFSerializer.swift",
        "PIF.swift",
        "PIFBuilder.swift",
        "PackagePIFBuilder+Helpers.swift",
        "PackagePIFBuilder+Plugins.swift",
        "PackagePIFBuilder.swift",
        "PackagePIFProjectBuilder+Modules.swift",
        "PackagePIFProjectBuilder+Products.swift",
        "PackagePIFProjectBuilder.swift",
        "SwiftBuildSystem.swift"
      ],
      "target_dependencies" : [
        "SPMBuildCore",
        "PackageGraph"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceKitLSPAPITests",
      "module_type" : "SwiftTarget",
      "name" : "SourceKitLSPAPITests",
      "path" : "Tests/SourceKitLSPAPITests",
      "sources" : [
        "SourceKitLSPAPITests.swift"
      ],
      "target_dependencies" : [
        "SourceKitLSPAPI",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SourceKitLSPAPI",
      "module_type" : "SwiftTarget",
      "name" : "SourceKitLSPAPI",
      "path" : "Sources/SourceKitLSPAPI",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto"
      ],
      "sources" : [
        "BuildDescription.swift",
        "PluginTargetBuildDescription.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Build",
        "PackageGraph",
        "PackageLoading",
        "PackageModel",
        "SPMBuildCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceControlTests",
      "module_type" : "SwiftTarget",
      "name" : "SourceControlTests",
      "path" : "Tests/SourceControlTests",
      "sources" : [
        "GitRepositoryProviderTests.swift",
        "GitRepositoryTests.swift",
        "InMemoryGitRepositoryTests.swift",
        "RepositoryManagerTests.swift"
      ],
      "target_dependencies" : [
        "SourceControl",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SourceControl",
      "module_type" : "SwiftTarget",
      "name" : "SourceControl",
      "path" : "Sources/SourceControl",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "GitRepository.swift",
        "Repository.swift",
        "RepositoryManager.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SPMSQLite3",
      "module_type" : "SystemLibraryTarget",
      "name" : "SPMSQLite3",
      "path" : "Sources/SPMSQLite3",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info",
        "dummy-swiftc"
      ],
      "sources" : [
      ],
      "type" : "system-target"
    },
    {
      "c99name" : "SPMLLBuild",
      "module_type" : "SwiftTarget",
      "name" : "SPMLLBuild",
      "path" : "Sources/SPMLLBuild",
      "product_dependencies" : [
        "llbuildSwift"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "llbuild.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SPMBuildCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "SPMBuildCoreTests",
      "path" : "Tests/SPMBuildCoreTests",
      "sources" : [
        "ArtifactsArchiveMetadataTests.swift",
        "BuildParametersTests.swift",
        "XCFrameworkMetadataTests.swift"
      ],
      "target_dependencies" : [
        "SPMBuildCore",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SPMBuildCore",
      "module_type" : "SwiftTarget",
      "name" : "SPMBuildCore",
      "path" : "Sources/SPMBuildCore",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "BinaryTarget+Extensions.swift",
        "BuildParameters/BuildParameters+APIDigester.swift",
        "BuildParameters/BuildParameters+Debugging.swift",
        "BuildParameters/BuildParameters+Driver.swift",
        "BuildParameters/BuildParameters+Linking.swift",
        "BuildParameters/BuildParameters+Output.swift",
        "BuildParameters/BuildParameters+Testing.swift",
        "BuildParameters/BuildParameters.swift",
        "BuildSystem/BuildSystem.swift",
        "BuildSystem/BuildSystemCommand.swift",
        "BuildSystem/BuildSystemDelegate.swift",
        "BuildSystem/DiagnosticsCapturingBuildSystemDelegate.swift",
        "BuiltTestProduct.swift",
        "CommandPluginResult.swift",
        "Plugins/DefaultPluginScriptRunner.swift",
        "Plugins/PluginContextSerializer.swift",
        "Plugins/PluginInvocation.swift",
        "Plugins/PluginMessages.swift",
        "Plugins/PluginScriptRunner.swift",
        "ResolvedPackage+Extensions.swift",
        "Triple+Extensions.swift",
        "XCFrameworkMetadata.swift",
        "XcodeProjectRepresentation.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageGraph"
      ],
      "type" : "library"
    },
    {
      "c99name" : "QueryEngineTests",
      "module_type" : "SwiftTarget",
      "name" : "QueryEngineTests",
      "path" : "Tests/QueryEngineTests",
      "sources" : [
        "QueryEngineTests.swift"
      ],
      "target_dependencies" : [
        "QueryEngine",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "QueryEngine",
      "module_type" : "SwiftTarget",
      "name" : "QueryEngine",
      "path" : "Sources/QueryEngine",
      "product_dependencies" : [
        "Crypto"
      ],
      "sources" : [
        "CacheKey.swift",
        "FileCacheRecord.swift",
        "Query.swift",
        "QueryEngine.swift"
      ],
      "target_dependencies" : [
        "_AsyncFileSystem",
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageSigningTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageSigningTests",
      "path" : "Tests/PackageSigningTests",
      "sources" : [
        "FilePackageSigningEntityStorageTests.swift",
        "SigningEntityTests.swift",
        "SigningIdentityTests.swift",
        "SigningTests.swift",
        "Utilities.swift"
      ],
      "target_dependencies" : [
        "_InternalTestSupport",
        "PackageSigning"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageSigning",
      "module_type" : "SwiftTarget",
      "name" : "PackageSigning",
      "path" : "Sources/PackageSigning",
      "product_dependencies" : [
        "Crypto",
        "X509"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "package-info"
      ],
      "sources" : [
        "CertificateStores.swift",
        "SignatureProvider.swift",
        "SigningEntity/FilePackageSigningEntityStorage.swift",
        "SigningEntity/PackageSigningEntityStorage.swift",
        "SigningEntity/SigningEntity.swift",
        "SigningIdentity.swift",
        "VerifierPolicies.swift",
        "X509Extensions.swift",
        "embedded_resources.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageRegistryTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageRegistryTests",
      "path" : "Tests/PackageRegistryTests",
      "sources" : [
        "PackageSigningEntityTOFUTests.swift",
        "PackageVersionChecksumTOFUTests.swift",
        "RegistryClientTests.swift",
        "RegistryConfigurationTests.swift",
        "RegistryDownloadsManagerTests.swift",
        "SignatureValidationTests.swift"
      ],
      "target_dependencies" : [
        "_InternalTestSupport",
        "PackageRegistry"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageRegistryCommand",
      "module_type" : "SwiftTarget",
      "name" : "PackageRegistryCommand",
      "path" : "Sources/PackageRegistryCommand",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-package-registry",
        "swift-package-manager"
      ],
      "sources" : [
        "PackageRegistryCommand+Auth.swift",
        "PackageRegistryCommand+Publish.swift",
        "PackageRegistryCommand.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Commands",
        "CoreCommands",
        "PackageGraph",
        "PackageLoading",
        "PackageModel",
        "PackageRegistry",
        "PackageSigning",
        "SourceControl",
        "SPMBuildCore",
        "Workspace"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageRegistry",
      "module_type" : "SwiftTarget",
      "name" : "PackageRegistry",
      "path" : "Sources/PackageRegistry",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "package-info"
      ],
      "sources" : [
        "ChecksumTOFU.swift",
        "RegistryClient.swift",
        "RegistryConfiguration.swift",
        "RegistryDownloadsManager.swift",
        "SignatureValidation.swift",
        "SigningEntityTOFU.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageFingerprint",
        "PackageLoading",
        "PackageModel",
        "PackageSigning"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackagePluginAPITests",
      "module_type" : "SwiftTarget",
      "name" : "PackagePluginAPITests",
      "path" : "Tests/PackagePluginAPITests",
      "sources" : [
        "ArgumentExtractorTests.swift",
        "PathTests.swift"
      ],
      "target_dependencies" : [
        "PackagePlugin",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackagePlugin",
      "module_type" : "SwiftTarget",
      "name" : "PackagePlugin",
      "path" : "Sources/PackagePlugin",
      "product_memberships" : [
        "PackagePlugin"
      ],
      "sources" : [
        "ArgumentExtractor.swift",
        "Command.swift",
        "Context.swift",
        "Diagnostics.swift",
        "Errors.swift",
        "PackageManagerProxy.swift",
        "PackageModel.swift",
        "Path.swift",
        "Plugin.swift",
        "PluginContextDeserializer.swift",
        "PluginMessages.swift",
        "Protocols.swift",
        "Utilities.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageModelTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageModelTests",
      "path" : "Tests/PackageModelTests",
      "sources" : [
        "CanonicalPackageLocationTests.swift",
        "InstalledSwiftPMConfigurationTests.swift",
        "ManifestTests.swift",
        "MinimumDeploymentTargetTests.swift",
        "PackageIdentityNameTests.swift",
        "PackageIdentityParser.swift",
        "PackageIdentityScopeTests.swift",
        "PackageModelTests.swift",
        "SnippetTests.swift",
        "SwiftLanguageVersionTests.swift",
        "SwiftSDKBundleTests.swift",
        "SwiftSDKTests.swift",
        "ToolsVersionTests.swift",
        "ToolsetTests.swift"
      ],
      "target_dependencies" : [
        "PackageModel",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageModel",
      "module_type" : "SwiftTarget",
      "name" : "PackageModel",
      "path" : "Sources/PackageModel",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "ArtifactsArchiveMetadata.swift",
        "BuildConfiguration.swift",
        "BuildEnvironment.swift",
        "BuildFlags.swift",
        "BuildSettings.swift",
        "DependencyMapper.swift",
        "Diagnostics.swift",
        "EnabledTraitsMap.swift",
        "IdentityResolver.swift",
        "InstalledSwiftPMConfiguration.swift",
        "Manifest/Manifest+Traits.swift",
        "Manifest/Manifest.swift",
        "Manifest/PackageConditionDescription.swift",
        "Manifest/PackageDependencyDescription.swift",
        "Manifest/PlatformDescription.swift",
        "Manifest/ProductDescription.swift",
        "Manifest/SystemPackageProviderDescription.swift",
        "Manifest/TargetBuildSettingDescription.swift",
        "Manifest/TargetDescription.swift",
        "Manifest/TraitConfiguration.swift",
        "Manifest/TraitDescription.swift",
        "ManifestSourceGeneration.swift",
        "MinimumDeploymentTarget.swift",
        "Module/BinaryModule.swift",
        "Module/ClangModule.swift",
        "Module/Module.swift",
        "Module/PluginModule.swift",
        "Module/SwiftModule.swift",
        "Module/SystemLibraryModule.swift",
        "ModuleMapType.swift",
        "PackageIdentity.swift",
        "PackageModel.swift",
        "PackageReference.swift",
        "Platform.swift",
        "PlatformRegistry.swift",
        "Product.swift",
        "Registry.swift",
        "RegistryReleaseMetadata.swift",
        "Resource.swift",
        "Sanitizers.swift",
        "Snippets/Model/Snippet.swift",
        "Snippets/Model/SnippetGroup.swift",
        "Snippets/Parsing/PlainTextSnippetExtractor.swift",
        "Sources.swift",
        "SupportedLanguageExtension.swift",
        "SwiftLanguageVersion.swift",
        "SwiftSDKs/SwiftSDK.swift",
        "SwiftSDKs/SwiftSDKBundle.swift",
        "SwiftSDKs/SwiftSDKBundleStore.swift",
        "SwiftSDKs/SwiftSDKConfigurationStore.swift",
        "Toolchain+SupportedFeatures.swift",
        "Toolchain.swift",
        "ToolchainConfiguration.swift",
        "ToolsVersion.swift",
        "ToolsVersionSpecificationGeneration.swift",
        "Toolset.swift",
        "UserToolchain.swift",
        "WindowsToolchainInfo.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageMetadata",
      "module_type" : "SwiftTarget",
      "name" : "PackageMetadata",
      "path" : "Sources/PackageMetadata",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto"
      ],
      "sources" : [
        "PackageMetadata.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageCollections",
        "PackageModel",
        "PackageRegistry",
        "PackageSigning"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageManagerDocs",
      "module_type" : "SwiftTarget",
      "name" : "PackageManagerDocs",
      "path" : "Sources/PackageManagerDocs",
      "sources" : [
        "EmptyFile.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageLoadingTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageLoadingTests",
      "path" : "Tests/PackageLoadingTests",
      "sources" : [
        "ManifestLoaderCacheTests.swift",
        "ManifestSignatureParserTests.swift",
        "ModuleMapGenerationTests.swift",
        "PDAppleProductLoadingTests.swift",
        "PDLoadingTests.swift",
        "PD_4_0_LoadingTests.swift",
        "PD_4_2_LoadingTests.swift",
        "PD_5_0_LoadingTests.swift",
        "PD_5_2_LoadingTests.swift",
        "PD_5_3_LoadingTests.swift",
        "PD_5_4_LoadingTests.swift",
        "PD_5_5_LoadingTests.swift",
        "PD_5_6_LoadingTests.swift",
        "PD_5_7_LoadingTests.swift",
        "PD_5_9_LoadingTests.swift",
        "PD_6_0_LoadingTests.swift",
        "PD_6_2_LoadingTests.swift",
        "PD_Next_LoadingTests.swift",
        "PackageBuilderTests.swift",
        "PkgConfigAllowlistTests.swift",
        "PkgConfigParserTests.swift",
        "PkgConfigTests.swift",
        "TargetSourcesBuilderTests.swift",
        "ToolsVersionParserTests.swift",
        "TraitLoadingTests.swift"
      ],
      "target_dependencies" : [
        "PackageLoading",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageLoading",
      "module_type" : "SwiftTarget",
      "name" : "PackageLoading",
      "path" : "Sources/PackageLoading",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "ContextModel.swift",
        "Diagnostics.swift",
        "ManifestJSONParser.swift",
        "ManifestLoader+Validation.swift",
        "ManifestLoader.swift",
        "ManifestSignatureParser.swift",
        "ModuleMapGenerator.swift",
        "PackageBuilder.swift",
        "PackageDescriptionSerialization.swift",
        "PkgConfig.swift",
        "Platform.swift",
        "RegistryReleaseMetadataSerialization.swift",
        "Target+PkgConfig.swift",
        "TargetSourcesBuilder.swift",
        "ToolsVersionParser.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel",
        "SourceControl"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageGraphTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageGraphTests",
      "path" : "Tests/PackageGraphTests",
      "sources" : [
        "CrossCompilationPackageGraphTests.swift",
        "DependencyResolverTests.swift",
        "ModulesGraphTests.swift",
        "PubGrubTests.swift",
        "ResolvedTargetTests.swift",
        "TopologicalSortTests.swift",
        "VersionSetSpecifierTests.swift"
      ],
      "target_dependencies" : [
        "PackageGraph",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageGraphPerformanceTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageGraphPerformanceTests",
      "path" : "Tests/PackageGraphPerformanceTests",
      "sources" : [
        "DependencyResolverPerfTests.swift",
        "PackageGraphPerfTests.swift"
      ],
      "target_dependencies" : [
        "PackageGraph",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageGraph",
      "module_type" : "SwiftTarget",
      "name" : "PackageGraph",
      "path" : "Sources/PackageGraph",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "BoundVersion.swift",
        "DependencyMirrors.swift",
        "Diagnostics.swift",
        "GraphLoadingNode.swift",
        "ModuleAliasTracker.swift",
        "ModulesGraph+Loading.swift",
        "ModulesGraph.swift",
        "PackageContainer.swift",
        "PackageGraphRoot.swift",
        "PackageModel+Extensions.swift",
        "PackageRequirement.swift",
        "Resolution/DependencyResolutionNode.swift",
        "Resolution/DependencyResolverBinding.swift",
        "Resolution/DependencyResolverDelegate.swift",
        "Resolution/DependencyResolverError.swift",
        "Resolution/PlatformVersionProvider.swift",
        "Resolution/PubGrub/Assignment.swift",
        "Resolution/PubGrub/ContainerProvider.swift",
        "Resolution/PubGrub/DiagnosticReportBuilder.swift",
        "Resolution/PubGrub/Incompatibility.swift",
        "Resolution/PubGrub/PartialSolution.swift",
        "Resolution/PubGrub/PubGrubDependencyResolver.swift",
        "Resolution/PubGrub/PubGrubPackageContainer.swift",
        "Resolution/PubGrub/Term.swift",
        "Resolution/ResolvedModule.swift",
        "Resolution/ResolvedPackage.swift",
        "Resolution/ResolvedProduct.swift",
        "ResolvedPackagesStore.swift",
        "Version+Extensions.swift",
        "VersionSetSpecifier.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageLoading",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageFingerprintTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageFingerprintTests",
      "path" : "Tests/PackageFingerprintTests",
      "sources" : [
        "FilePackageFingerprintStorageTests.swift"
      ],
      "target_dependencies" : [
        "PackageFingerprint",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageFingerprint",
      "module_type" : "SwiftTarget",
      "name" : "PackageFingerprint",
      "path" : "Sources/PackageFingerprint",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "package-info"
      ],
      "sources" : [
        "FilePackageFingerprintStorage.swift",
        "Model.swift",
        "PackageFingerprintStorage.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageDescriptionTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageDescriptionTests",
      "path" : "Tests/PackageDescriptionTests",
      "sources" : [
        "VersionTests.swift"
      ],
      "target_dependencies" : [
        "PackageDescription"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageDescription",
      "module_type" : "SwiftTarget",
      "name" : "PackageDescription",
      "path" : "Sources/PackageDescription",
      "product_memberships" : [
        "PackageDescription",
        "AppleProductTypes"
      ],
      "sources" : [
        "BuildSettings.swift",
        "Context.swift",
        "ContextModel.swift",
        "LanguageStandardSettings.swift",
        "PackageDependency.swift",
        "PackageDependencyTrait.swift",
        "PackageDescription.swift",
        "PackageDescriptionSerialization.swift",
        "PackageDescriptionSerializationConversion.swift",
        "PackageRequirement.swift",
        "Product.swift",
        "Resource.swift",
        "SupportedPlatforms.swift",
        "Target.swift",
        "Trait.swift",
        "Version+StringLiteralConvertible.swift",
        "Version.swift",
        "WarningLevel.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageCollectionsTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsTests",
      "path" : "Tests/PackageCollectionsTests",
      "sources" : [
        "GitHubPackageMetadataProviderTests.swift",
        "JSONPackageCollectionProviderTests.swift",
        "PackageCollectionSourceCertificatePolicyTests.swift",
        "PackageCollectionValidationTests.swift",
        "PackageCollectionsModelTests.swift",
        "PackageCollectionsSourcesStorageTest.swift",
        "PackageCollectionsStorageTests.swift",
        "PackageCollectionsTests.swift",
        "PackageIndexAndCollectionsTests.swift",
        "PackageIndexConfigurationTests.swift",
        "PackageIndexTests.swift",
        "TrieTests.swift",
        "Utility.swift",
        "ValidationMessageTests.swift"
      ],
      "target_dependencies" : [
        "PackageCollections",
        "_InternalTestSupport",
        "tsan_utils"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageCollectionsSigningTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsSigningTests",
      "path" : "Tests/PackageCollectionsSigningTests",
      "sources" : [
        "CertificatePolicyTests.swift",
        "PackageCollectionSigningTests.swift",
        "SignatureTests.swift",
        "Utilities.swift"
      ],
      "target_dependencies" : [
        "PackageCollectionsSigning",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageCollectionsSigning",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsSigning",
      "path" : "Sources/PackageCollectionsSigning",
      "product_dependencies" : [
        "Crypto",
        "X509"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "SwiftPMPackageCollections",
        "swift-package-manager",
        "swift-package-collection"
      ],
      "sources" : [
        "CertificatePolicy.swift",
        "PackageCollectionSigning.swift",
        "Signature.swift",
        "Utilities/Base64URL.swift",
        "Utilities/Utilities.swift",
        "X509Extensions.swift",
        "embedded_resources.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageCollectionsModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageCollectionsModelTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsModelTests",
      "path" : "Tests/PackageCollectionsModelTests",
      "sources" : [
        "PackageCollectionModelTests.swift"
      ],
      "target_dependencies" : [
        "PackageCollectionsModel",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageCollectionsModel",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsModel",
      "path" : "Sources/PackageCollectionsModel",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "PackageCollectionsModel",
        "SwiftPMPackageCollections",
        "swift-package-manager",
        "swift-package-collection"
      ],
      "sources" : [
        "PackageCollectionModel+v1.swift",
        "PackageCollectionModel.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageCollectionsCommand",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsCommand",
      "path" : "Sources/PackageCollectionsCommand",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-package-manager",
        "swift-package-collection"
      ],
      "sources" : [
        "PackageCollectionsCommand.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Commands",
        "CoreCommands",
        "PackageCollections",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageCollections",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollections",
      "path" : "Sources/PackageCollections",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "SwiftPMPackageCollections",
        "swift-package-manager",
        "swift-package-collection"
      ],
      "sources" : [
        "API.swift",
        "Model/CVE.swift",
        "Model/Collection.swift",
        "Model/License.swift",
        "Model/PackageList.swift",
        "Model/PackageTypes.swift",
        "Model/Search.swift",
        "Model/TargetListResult.swift",
        "PackageCollections+CertificatePolicy.swift",
        "PackageCollections+Configuration.swift",
        "PackageCollections+Storage.swift",
        "PackageCollections+Validation.swift",
        "PackageCollections.swift",
        "PackageIndex+Configuration.swift",
        "PackageIndex.swift",
        "PackageIndexAndCollections.swift",
        "Providers/GitHubPackageMetadataProvider.swift",
        "Providers/JSONPackageCollectionProvider.swift",
        "Providers/PackageCollectionProvider.swift",
        "Providers/PackageMetadataProvider.swift",
        "Storage/FilePackageCollectionsSourcesStorage.swift",
        "Storage/PackageCollectionsSourcesStorage.swift",
        "Storage/PackageCollectionsStorage.swift",
        "Storage/SQLitePackageCollectionsStorage.swift",
        "Storage/Trie.swift",
        "Utility.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageCollectionsModel",
        "PackageCollectionsSigning",
        "PackageModel",
        "SourceControl"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LLBuildManifestTests",
      "module_type" : "SwiftTarget",
      "name" : "LLBuildManifestTests",
      "path" : "Tests/LLBuildManifestTests",
      "sources" : [
        "LLBuildManifestTests.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "LLBuildManifest",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LLBuildManifest",
      "module_type" : "SwiftTarget",
      "name" : "LLBuildManifest",
      "path" : "Sources/LLBuildManifest",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "Command.swift",
        "LLBuildManifest.swift",
        "LLBuildManifestWriter.swift",
        "Node.swift",
        "Target.swift",
        "Tools.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "IntegrationTests",
      "module_type" : "SwiftTarget",
      "name" : "IntegrationTests",
      "path" : "Tests/IntegrationTests",
      "product_dependencies" : [
        "TSCTestSupport",
        "SwiftToolsSupport-auto"
      ],
      "sources" : [
        "BasicTests.swift",
        "SwiftPMTests.swift",
        "XCBuildTests.swift"
      ],
      "target_dependencies" : [
        "_IntegrationTestSupport",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FunctionalTests",
      "module_type" : "SwiftTarget",
      "name" : "FunctionalTests",
      "path" : "Tests/FunctionalTests",
      "sources" : [
        "CFamilyTargetTests.swift",
        "DependencyResolutionTests.swift",
        "MacroTests.swift",
        "MiscellaneousTests.swift",
        "ModuleAliasingFixtureTests.swift",
        "ModuleMapTests.swift",
        "PluginTests.swift",
        "ResourcesTests.swift",
        "StaticBinaryLibrary.swift",
        "TestDiscoveryTests.swift",
        "ToolsVersionTests.swift",
        "TraitTests.swift",
        "VersionSpecificTests.swift"
      ],
      "target_dependencies" : [
        "swift-package-manager",
        "PackageModel",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FunctionalPerformanceTests",
      "module_type" : "SwiftTarget",
      "name" : "FunctionalPerformanceTests",
      "path" : "Tests/FunctionalPerformanceTests",
      "sources" : [
        "BuildPerfTests.swift"
      ],
      "target_dependencies" : [
        "swift-package-manager",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DriverSupport",
      "module_type" : "SwiftTarget",
      "name" : "DriverSupport",
      "path" : "Sources/DriverSupport",
      "product_dependencies" : [
        "SwiftDriver"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "DriverSupportUtils.swift",
        "SPMSwiftDriverExecutor.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreCommands",
      "module_type" : "SwiftTarget",
      "name" : "CoreCommands",
      "path" : "Sources/CoreCommands",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build"
      ],
      "sources" : [
        "BuildSystemSupport.swift",
        "Options.swift",
        "SwiftCommandObservabilityHandler.swift",
        "SwiftCommandState.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Build",
        "PackageLoading",
        "PackageModel",
        "PackageGraph",
        "Workspace",
        "XCBuildSupport",
        "SwiftBuildSupport"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CompilerPluginSupport",
      "module_type" : "SwiftTarget",
      "name" : "CompilerPluginSupport",
      "path" : "Sources/CompilerPluginSupport",
      "product_memberships" : [
        "PackageDescription"
      ],
      "sources" : [
        "TargetExtensions.swift"
      ],
      "target_dependencies" : [
        "PackageDescription"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CommandsTests",
      "module_type" : "SwiftTarget",
      "name" : "CommandsTests",
      "path" : "Tests/CommandsTests",
      "sources" : [
        "APIDiffTests.swift",
        "BuildCommandTests.swift",
        "MermaidPackageSerializerTests.swift",
        "MultiRootSupportTests.swift",
        "PackageCommandTests.swift",
        "PackageRegistryCommandTests.swift",
        "RunCommandTests.swift",
        "SwiftCommandStateTests.swift",
        "SwiftSDKCommandTests.swift",
        "TestCommandTests.swift"
      ],
      "target_dependencies" : [
        "swift-package-manager",
        "Basics",
        "Build",
        "Commands",
        "PackageModel",
        "PackageRegistryCommand",
        "SourceControl",
        "_InternalTestSupport",
        "Workspace",
        "dummy-swiftc"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Commands",
      "module_type" : "SwiftTarget",
      "name" : "Commands",
      "path" : "Sources/Commands",
      "product_dependencies" : [
        "ArgumentParser",
        "OrderedCollections",
        "SwiftIDEUtils",
        "SwiftRefactor"
      ],
      "product_memberships" : [
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build"
      ],
      "sources" : [
        "CommandWorkspaceDelegate.swift",
        "PackageCommands/APIDiff.swift",
        "PackageCommands/AddDependency.swift",
        "PackageCommands/AddProduct.swift",
        "PackageCommands/AddSetting.swift",
        "PackageCommands/AddTarget.swift",
        "PackageCommands/AddTargetDependency.swift",
        "PackageCommands/ArchiveSource.swift",
        "PackageCommands/AuditBinaryArtifact.swift",
        "PackageCommands/CompletionCommand.swift",
        "PackageCommands/ComputeChecksum.swift",
        "PackageCommands/Config.swift",
        "PackageCommands/Describe.swift",
        "PackageCommands/DumpCommands.swift",
        "PackageCommands/EditCommands.swift",
        "PackageCommands/Format.swift",
        "PackageCommands/Init.swift",
        "PackageCommands/Install.swift",
        "PackageCommands/Learn.swift",
        "PackageCommands/Migrate.swift",
        "PackageCommands/PluginCommand.swift",
        "PackageCommands/ResetCommands.swift",
        "PackageCommands/Resolve.swift",
        "PackageCommands/ShowDependencies.swift",
        "PackageCommands/ShowExecutables.swift",
        "PackageCommands/SwiftPackageCommand.swift",
        "PackageCommands/ToolsVersionCommand.swift",
        "PackageCommands/Update.swift",
        "Snippets/Card.swift",
        "Snippets/CardEvent.swift",
        "Snippets/CardStack.swift",
        "Snippets/Cards/SnippetCard.swift",
        "Snippets/Cards/SnippetGroupCard.swift",
        "Snippets/Cards/TopCard.swift",
        "Snippets/Colorful.swift",
        "SwiftBuildCommand.swift",
        "SwiftRunCommand.swift",
        "SwiftTestCommand.swift",
        "Utilities/APIDigester.swift",
        "Utilities/DOTManifestSerializer.swift",
        "Utilities/DependenciesSerializer.swift",
        "Utilities/DescribedPackage.swift",
        "Utilities/MermaidPackageSerializer.swift",
        "Utilities/MultiRootSupport.swift",
        "Utilities/PlainTextEncoder.swift",
        "Utilities/PluginDelegate.swift",
        "Utilities/RefactoringSupport.swift",
        "Utilities/SymbolGraphExtract.swift",
        "Utilities/TestingSupport.swift",
        "Utilities/XCTEvents.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "BinarySymbols",
        "Build",
        "CoreCommands",
        "PackageGraph",
        "SourceControl",
        "Workspace",
        "XCBuildSupport",
        "SwiftBuildSupport",
        "SwiftFixIt"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BuildTests",
      "module_type" : "SwiftTarget",
      "name" : "BuildTests",
      "path" : "Tests/BuildTests",
      "sources" : [
        "BuildOperationTests.swift",
        "BuildPlanTests.swift",
        "BuildPlanTraversalTests.swift",
        "BuildSystemDelegateTests.swift",
        "ClangTargetBuildDescriptionTests.swift",
        "CrossCompilationBuildPlanTests.swift",
        "IncrementalBuildTests.swift",
        "LLBuildManifestBuilderTests.swift",
        "ModuleAliasingBuildTests.swift",
        "PluginInvocationTests.swift",
        "PluginsBuildPlanTests.swift",
        "PrepareForIndexTests.swift",
        "ProductBuildDescriptionTests.swift",
        "SwiftCompilerOutputParserTests.swift",
        "WindowsBuildPlanTests.swift"
      ],
      "target_dependencies" : [
        "Build",
        "PackageModel",
        "Commands",
        "_InternalTestSupport",
        "_InternalBuildTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Build",
      "module_type" : "SwiftTarget",
      "name" : "Build",
      "path" : "Sources/Build",
      "product_dependencies" : [
        "OrderedCollections",
        "SwiftDriver"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "BuildDescription/ClangModuleBuildDescription.swift",
        "BuildDescription/ModuleBuildDescription.swift",
        "BuildDescription/PluginBuildDescription.swift",
        "BuildDescription/ProductBuildDescription.swift",
        "BuildDescription/ResolvedModule+BuildDescription.swift",
        "BuildDescription/SwiftModuleBuildDescription.swift",
        "BuildManifest/LLBuildManifestBuilder+Clang.swift",
        "BuildManifest/LLBuildManifestBuilder+Product.swift",
        "BuildManifest/LLBuildManifestBuilder+Resources.swift",
        "BuildManifest/LLBuildManifestBuilder+Swift.swift",
        "BuildManifest/LLBuildManifestBuilder.swift",
        "BuildOperation.swift",
        "BuildPlan/BuildPlan+Clang.swift",
        "BuildPlan/BuildPlan+Product.swift",
        "BuildPlan/BuildPlan+Swift.swift",
        "BuildPlan/BuildPlan+Test.swift",
        "BuildPlan/BuildPlan.swift",
        "ClangSupport.swift",
        "LLBuildCommands.swift",
        "LLBuildDescription.swift",
        "LLBuildProgressTracker.swift",
        "SwiftCompilerOutputParser.swift",
        "TestObservation.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "LLBuildManifest",
        "PackageGraph",
        "SPMBuildCore",
        "SPMLLBuild",
        "DriverSupport"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BinarySymbolsTests",
      "module_type" : "SwiftTarget",
      "name" : "BinarySymbolsTests",
      "path" : "Tests/BinarySymbolsTests",
      "sources" : [
        "LLVMObjdumpSymbolProviderTests.swift"
      ],
      "target_dependencies" : [
        "BinarySymbols",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BinarySymbols",
      "module_type" : "SwiftTarget",
      "name" : "BinarySymbols",
      "path" : "Sources/BinarySymbols",
      "product_dependencies" : [
        "TSCBasic"
      ],
      "product_memberships" : [
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build"
      ],
      "sources" : [
        "ClangHostDefaultObjectsDetector.swift",
        "LLVMObjdumpSymbolProvider.swift",
        "ReferencedSymbols.swift",
        "SymbolProvider.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BasicsTests",
      "module_type" : "SwiftTarget",
      "name" : "BasicsTests",
      "path" : "Tests/BasicsTests",
      "sources" : [
        "Archiver/TarArchiverTests.swift",
        "Archiver/UniversalArchiverTests.swift",
        "Archiver/ZipArchiverTests.swift",
        "ArrayHelpersTests.swift",
        "AsyncProcessTests.swift",
        "AuthorizationProviderTests.swift",
        "ByteStringExtensionsTests.swift",
        "CancellatorTests.swift",
        "ConcurrencyHelpersTests.swift",
        "DictionaryTest.swift",
        "DispatchTimeTests.swift",
        "Environment/EnvironmentKeyTests.swift",
        "Environment/EnvironmentTests.swift",
        "FileSystem/FileSystemTests.swift",
        "FileSystem/InMemoryFilesSystemTests.swift",
        "FileSystem/PathShimTests.swift",
        "FileSystem/PathTests.swift",
        "FileSystem/TemporaryFileTests.swift",
        "FileSystem/VFSTests.swift",
        "Graph/AdjacencyMatrixTests.swift",
        "Graph/DirectedGraphTests.swift",
        "Graph/UndirectedGraphTests.swift",
        "HTTPClientTests.swift",
        "LegacyHTTPClientTests.swift",
        "NetrcTests.swift",
        "ObservabilitySystemTests.swift",
        "ProcessInfoTests.swift",
        "ProgressAnimationTests.swift",
        "SQLiteBackedCacheTests.swift",
        "SandboxTests.swift",
        "Serialization/SerializedJSONTests.swift",
        "StringExtensionsTests.swift",
        "TripleTests.swift",
        "URLSessionHTTPClientTests.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "_InternalTestSupport",
        "tsan_utils"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Basics",
      "module_type" : "SwiftTarget",
      "name" : "Basics",
      "path" : "Sources/Basics",
      "product_dependencies" : [
        "SwiftToolchainCSQLite",
        "DequeModule",
        "OrderedCollections",
        "SystemPackage",
        "SwiftToolsSupport-auto"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info",
        "dummy-swiftc"
      ],
      "sources" : [
        "Archiver/Archiver.swift",
        "Archiver/TarArchiver.swift",
        "Archiver/UniversalArchiver.swift",
        "Archiver/ZipArchiver.swift",
        "ArrayHelpers.swift",
        "AuthorizationProvider.swift",
        "Cancellator.swift",
        "Collections/ByteString+Extensions.swift",
        "Collections/Dictionary+Extensions.swift",
        "Collections/IdentifiableSet.swift",
        "Collections/String+Extensions.swift",
        "Concurrency/AsyncProcess.swift",
        "Concurrency/ConcurrencyHelpers.swift",
        "Concurrency/NSLock+Extensions.swift",
        "Concurrency/SendableBox.swift",
        "Concurrency/ThreadSafeArrayStore.swift",
        "Concurrency/ThreadSafeBox.swift",
        "Concurrency/ThreadSafeKeyValueStore.swift",
        "Concurrency/ThrowingDefer.swift",
        "Concurrency/TokenBucket.swift",
        "DispatchTimeInterval+Extensions.swift",
        "Environment/Environment.swift",
        "Environment/EnvironmentKey.swift",
        "Environment/EnvironmentShims.swift",
        "Errors.swift",
        "FileSystem/AbsolutePath.swift",
        "FileSystem/FileSystem+Extensions.swift",
        "FileSystem/InMemoryFileSystem.swift",
        "FileSystem/NativePathExtensions.swift",
        "FileSystem/RelativePath.swift",
        "FileSystem/TSCAdapters.swift",
        "FileSystem/TemporaryFile.swift",
        "FileSystem/VFSOverlay.swift",
        "FileSystem/VirtualFileSystem.swift",
        "Graph/AdjacencyMatrix.swift",
        "Graph/DirectedGraph.swift",
        "Graph/GraphAlgorithms.swift",
        "Graph/UndirectedGraph.swift",
        "HTTPClient/HTTPClient.swift",
        "HTTPClient/HTTPClientConfiguration.swift",
        "HTTPClient/HTTPClientError.swift",
        "HTTPClient/HTTPClientHeaders.swift",
        "HTTPClient/HTTPClientRequest.swift",
        "HTTPClient/HTTPClientResponse.swift",
        "HTTPClient/HTTPMethod.swift",
        "HTTPClient/LegacyHTTPClient.swift",
        "HTTPClient/LegacyHTTPClientRequest.swift",
        "HTTPClient/URLSessionHTTPClient.swift",
        "ImportScanning.swift",
        "JSON+Extensions.swift",
        "JSONDecoder+Extensions.swift",
        "Netrc.swift",
        "OSSignpost.swift",
        "Observability.swift",
        "Process.swift",
        "ProgressAnimation/NinjaProgressAnimation.swift",
        "ProgressAnimation/PercentProgressAnimation.swift",
        "ProgressAnimation/ProgressAnimationProtocol.swift",
        "ProgressAnimation/SingleLinePercentProgressAnimation.swift",
        "ProgressAnimation/ThrottledProgressAnimation.swift",
        "SQLite.swift",
        "SQLiteBackedCache.swift",
        "Sandbox.swift",
        "SendableTimeInterval.swift",
        "Serialization/SerializedJSON.swift",
        "SourceControlURL.swift",
        "SwiftVersion.swift",
        "TestingLibrary.swift",
        "Triple+Basics.swift",
        "URL.swift",
        "Vendor/Triple+Platforms.swift",
        "Vendor/Triple.swift",
        "Version+Extensions.swift",
        "WritableByteStream+Extensions.swift"
      ],
      "target_dependencies" : [
        "_AsyncFileSystem",
        "SPMSQLite3"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AppleProductTypes",
      "module_type" : "SwiftTarget",
      "name" : "AppleProductTypes",
      "path" : "Sources/AppleProductTypes",
      "product_memberships" : [
        "AppleProductTypes"
      ],
      "sources" : [
        "Product.swift"
      ],
      "target_dependencies" : [
        "PackageDescription"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
Done.