Build Information
Failed to build SwiftPM, reference main (1335dd
), with Swift 6.1 for Linux on 16 Jun 2025 19:47:58 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
362 | }
363 |
/host/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 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:866:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
864 | self.state = .complete(executionResult)
865 | self.completionQueue.async {
866 | self.waitUntilExit(completion)
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
867 | }
868 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1110:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1108 | } catch {
1109 | completionQueue.async {
1110 | completion(.failure(error))
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1111 | }
1112 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/ConcurrencyHelpers.swift:33:5: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
31 |
32 | let box = ThreadSafeBox<T>()
33 | Task {
| |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
| `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
34 | let localValue: T = await body()
35 | box.mutate { _ in localValue }
:
37 | }
38 | semaphore.wait()
39 | return box.get()!
| `- note: access can happen concurrently
40 | }
41 |
[578/849] Compiling SWBUtil Collection.swift
/host/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
/host/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
/host/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 |
/host/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 |
/host/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 |
/host/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 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:866:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
864 | self.state = .complete(executionResult)
865 | self.completionQueue.async {
866 | self.waitUntilExit(completion)
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
867 | }
868 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1110:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1108 | } catch {
1109 | completionQueue.async {
1110 | completion(.failure(error))
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1111 | }
1112 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/ConcurrencyHelpers.swift:33:5: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
31 |
32 | let box = ThreadSafeBox<T>()
33 | Task {
| |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
| `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
34 | let localValue: T = await body()
35 | box.mutate { _ in localValue }
:
37 | }
38 | semaphore.wait()
39 | return box.get()!
| `- note: access can happen concurrently
40 | }
41 |
[579/849] Compiling SWBUtil CountedSet.swift
/host/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
/host/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
/host/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 |
/host/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 |
/host/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 |
/host/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 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:866:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
864 | self.state = .complete(executionResult)
865 | self.completionQueue.async {
866 | self.waitUntilExit(completion)
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
867 | }
868 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1110:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1108 | } catch {
1109 | completionQueue.async {
1110 | completion(.failure(error))
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1111 | }
1112 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/ConcurrencyHelpers.swift:33:5: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
31 |
32 | let box = ThreadSafeBox<T>()
33 | Task {
| |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
| `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
34 | let localValue: T = await body()
35 | box.mutate { _ in localValue }
:
37 | }
38 | semaphore.wait()
39 | return box.get()!
| `- note: access can happen concurrently
40 | }
41 |
[580/849] Compiling SWBUtil Debugger.swift
/host/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
/host/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
/host/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 |
/host/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 |
/host/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 |
/host/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 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:866:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
864 | self.state = .complete(executionResult)
865 | self.completionQueue.async {
866 | self.waitUntilExit(completion)
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
867 | }
868 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1110:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1108 | } catch {
1109 | completionQueue.async {
1110 | completion(.failure(error))
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1111 | }
1112 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/ConcurrencyHelpers.swift:33:5: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
31 |
32 | let box = ThreadSafeBox<T>()
33 | Task {
| |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
| `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
34 | let localValue: T = await body()
35 | box.mutate { _ in localValue }
:
37 | }
38 | semaphore.wait()
39 | return box.get()!
| `- note: access can happen concurrently
40 | }
41 |
[581/849] Compiling SWBUtil DependencyInfo.swift
/host/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
/host/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
/host/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 |
/host/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 |
/host/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 |
/host/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 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:866:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
864 | self.state = .complete(executionResult)
865 | self.completionQueue.async {
866 | self.waitUntilExit(completion)
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
867 | }
868 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1110:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1108 | } catch {
1109 | completionQueue.async {
1110 | completion(.failure(error))
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1111 | }
1112 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/ConcurrencyHelpers.swift:33:5: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
31 |
32 | let box = ThreadSafeBox<T>()
33 | Task {
| |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
| `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
34 | let localValue: T = await body()
35 | box.mutate { _ in localValue }
:
37 | }
38 | semaphore.wait()
39 | return box.get()!
| `- note: access can happen concurrently
40 | }
41 |
[582/849] Compiling SWBUtil DiagnosticsEngine.swift
/host/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
/host/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
/host/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 |
/host/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 |
/host/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 |
/host/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 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:866:36: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
864 | self.state = .complete(executionResult)
865 | self.completionQueue.async {
866 | self.waitUntilExit(completion)
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
867 | }
868 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1110:17: warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1108 | } catch {
1109 | completionQueue.async {
1110 | completion(.failure(error))
| |- warning: capture of 'completion' with non-sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1111 | }
1112 | }
/host/spi-builder-workspace/Sources/Basics/Concurrency/ConcurrencyHelpers.swift:33:5: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
31 |
32 | let box = ThreadSafeBox<T>()
33 | Task {
| |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
| `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
34 | let localValue: T = await body()
35 | box.mutate { _ in localValue }
:
37 | }
38 | semaphore.wait()
39 | return box.get()!
| `- note: access can happen concurrently
40 | }
41 |
[587/850] Wrapping AST for _CryptoExtras for debugging
[589/938] Compiling SwiftOptions OptionTable.swift
[590/938] Compiling SwiftOptions Options.swift
[592/938] Emitting module SWBUtil
[593/950] Compiling X509 SubjectKeyIdentifier.swift
[594/950] Compiling X509 Extension.swift
[595/950] Compiling X509 Extensions.swift
[596/950] Compiling X509 ExtensionsBuilder.swift
[597/950] Compiling X509 GeneralName.swift
[598/950] Compiling X509 LockedValueBox.swift
[599/950] Compiling X509 BasicOCSPResponse.swift
[600/950] Compiling X509 DirectoryString.swift
[601/950] Compiling X509 OCSPCertID.swift
[603/1107] Compiling dummy_swiftc main.swift
[604/1107] Emitting module dummy_swiftc
[605/1107] Compiling PackageModel Sanitizers.swift
[606/1107] Compiling PackageModel Snippet.swift
[607/1107] Compiling PackageModel SnippetGroup.swift
[608/1107] Compiling PackageModel PlainTextSnippetExtractor.swift
[609/1107] Compiling PackageModel Sources.swift
[610/1107] Compiling PackageModel SupportedLanguageExtension.swift
[611/1107] Compiling PackageModel SwiftLanguageVersion.swift
[612/1107] Compiling PackageModel SwiftSDK.swift
[613/1107] Compiling PackageModel SwiftSDKBundle.swift
[614/1107] Compiling PackageModel SwiftSDKBundleStore.swift
[615/1107] Compiling PackageModel SwiftSDKConfigurationStore.swift
[616/1107] Compiling PackageModel Toolchain+SupportedFeatures.swift
[617/1108] Compiling QueryEngine FileCacheRecord.swift
[619/1108] Compiling SwiftDriver IncrementalCompilationSynchronizer.swift
[620/1108] Compiling SwiftDriver IncrementalDependencyAndInputSetup.swift
[621/1108] Compiling SwiftDriver InputInfo.swift
[622/1108] Compiling SwiftDriver KeyAndFingerprintHolder.swift
[623/1108] Compiling SwiftDriver ModuleDependencyGraph.swift
[624/1108] Compiling SwiftDriver CompileJob.swift
[625/1108] Compiling SwiftDriver DarwinToolchain+LinkerSupport.swift
[626/1108] Compiling SwiftDriver EmitModuleJob.swift
[627/1108] Compiling SwiftDriver EmitSupportedFeaturesJob.swift
[628/1108] Compiling SwiftDriver FrontendJobHelpers.swift
[629/1108] Compiling SwiftDriver GenerateDSYMJob.swift
[630/1108] Compiling SwiftDriver GeneratePCHJob.swift
[631/1120] Emitting module SPMLLBuild
[632/1120] Compiling SPMLLBuild llbuild.swift
[633/1120] Compiling QueryEngine CacheKey.swift
[634/1120] Compiling QueryEngine QueryEngine.swift
[635/1120] Emitting module QueryEngine
[637/1121] Compiling QueryEngine Query.swift
[638/1121] Compiling SwiftDriver SwiftHelpIntroJob.swift
[639/1121] Compiling SwiftDriver Toolchain+InterpreterSupport.swift
[640/1121] Compiling SwiftDriver Toolchain+LinkerSupport.swift
[641/1121] Compiling SwiftDriver VerifyDebugInfoJob.swift
[642/1121] Compiling SwiftDriver VerifyModuleInterfaceJob.swift
[643/1121] Compiling SwiftDriver WebAssemblyToolchain+LinkerSupport.swift
[644/1121] Compiling SwiftDriver WindowsToolchain+LinkerSupport.swift
[645/1121] Compiling SwiftDriver DependencyGraphBuilder.swift
[646/1121] Compiling SwiftDriver Loader.swift
[647/1121] Compiling SwiftDriver SwiftScan.swift
[648/1121] Compiling SwiftDriver SwiftScanCAS.swift
[649/1121] Compiling SwiftDriver DarwinToolchain.swift
[651/1128] Compiling PackageModel ArtifactsArchiveMetadata.swift
[652/1128] Compiling PackageModel BuildConfiguration.swift
[653/1128] Compiling PackageModel BuildEnvironment.swift
[654/1128] Compiling PackageModel BuildFlags.swift
[655/1128] Compiling PackageModel BuildSettings.swift
[656/1128] Compiling PackageModel DependencyMapper.swift
[657/1128] Compiling PackageModel Diagnostics.swift
[658/1128] Compiling PackageModel IdentityResolver.swift
[659/1128] Compiling PackageModel InstalledSwiftPMConfiguration.swift
[660/1128] Compiling PackageModel Manifest+Traits.swift
[661/1128] Compiling PackageModel Manifest.swift
[662/1128] Compiling PackageModel PackageConditionDescription.swift
[663/1128] Compiling PackageModel PackageDependencyDescription.swift
[663/1128] Wrapping AST for dummy-swiftc for debugging
[664/1128] Write Objects.LinkFileList
[666/1133] Compiling LLBuildManifest Command.swift
[667/1133] Compiling LLBuildManifest Target.swift
[668/1133] Compiling BinarySymbols SymbolProvider.swift
[669/1133] Compiling BinarySymbols ReferencedSymbols.swift
[670/1133] Emitting module LLBuildManifest
[671/1133] Compiling LLBuildManifest Node.swift
[672/1133] Compiling PackageModel BinaryModule.swift
[673/1133] Compiling PackageModel ClangModule.swift
[674/1133] Compiling PackageModel Module.swift
[675/1133] Compiling PackageModel PluginModule.swift
[676/1133] Compiling PackageModel SwiftModule.swift
[677/1133] Compiling PackageModel SystemLibraryModule.swift
[678/1133] Compiling PackageModel ModuleMapType.swift
[690/1140] Compiling PackageModel Toolchain.swift
[691/1140] Compiling SwiftDriver GeneratePCMJob.swift
[692/1140] Compiling SwiftDriver GenericUnixToolchain+LinkerSupport.swift
[693/1140] Compiling SwiftDriver InterpretJob.swift
[694/1140] Compiling SwiftDriver Job.swift
[695/1140] Compiling SwiftDriver LinkJob.swift
[696/1140] Compiling SwiftDriver MergeModuleJob.swift
[697/1140] Compiling SwiftDriver ModuleWrapJob.swift
[698/1140] Compiling SwiftDriver Planning.swift
[699/1140] Compiling SwiftDriver PrebuiltModulesJob.swift
[700/1140] Compiling SwiftDriver PrintSupportedFeaturesJob.swift
[701/1140] Compiling SwiftDriver PrintTargetInfoJob.swift
[702/1140] Compiling SwiftDriver ReplJob.swift
[703/1140] Compiling LLBuildManifest LLBuildManifestWriter.swift
[704/1140] Compiling LLBuildManifest LLBuildManifest.swift
[704/1140] Linking dummy-swiftc
[719/1140] Compiling PackageModel PlatformDescription.swift
[720/1140] Compiling PackageModel ProductDescription.swift
[721/1140] Compiling PackageModel SystemPackageProviderDescription.swift
[722/1140] Compiling PackageModel TargetBuildSettingDescription.swift
[723/1140] Compiling PackageModel TargetDescription.swift
[724/1140] Compiling PackageModel TraitConfiguration.swift
[725/1140] Compiling PackageModel TraitDescription.swift
[726/1140] Compiling PackageModel ManifestSourceGeneration.swift
[727/1140] Compiling PackageModel MinimumDeploymentTarget.swift
[735/1140] Compiling PackageModel PackageIdentity.swift
[736/1140] Compiling PackageModel PackageModel.swift
[737/1140] Compiling PackageModel PackageReference.swift
[738/1140] Compiling PackageModel Platform.swift
[739/1140] Compiling PackageModel PlatformRegistry.swift
[740/1140] Compiling PackageModel Product.swift
[741/1140] Compiling PackageModel Registry.swift
[742/1140] Compiling PackageModel RegistryReleaseMetadata.swift
[743/1140] Compiling PackageModel Resource.swift
[746/1140] Compiling X509 UnverifiedChain.swift
[747/1140] Compiling X509 VerificationDiagnostic.swift
[748/1140] Compiling X509 Verifier.swift
[749/1140] Compiling X509 VerifierPolicy.swift
[750/1140] Compiling X509 AlgorithmIdentifier.swift
[751/1140] Compiling X509 ECDSASignature.swift
[752/1140] Compiling X509 RSAPKCS1PublicKey.swift
[753/1140] Compiling X509 SubjectPublicKeyInfo.swift
[754/1140] Compiling X509 TBSCertificate.swift
[755/1140] Compiling X509 Time.swift
[756/1140] Compiling X509 TimeCalculations.swift
[758/1140] Compiling PackageModel ToolchainConfiguration.swift
[759/1140] Compiling PackageModel ToolsVersion.swift
[760/1140] Compiling PackageModel ToolsVersionSpecificationGeneration.swift
[761/1140] Compiling PackageModel Toolset.swift
[762/1140] Compiling PackageModel UserToolchain.swift
[763/1140] Compiling PackageModel WindowsToolchainInfo.swift
[825/1141] Compiling LLBuildManifest Tools.swift
[828/1142] Emitting module PackageModel
/host/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.
[843/1155] Emitting module SwiftSyntax
[843/1162] Wrapping AST for SWBUtil for debugging
[845/1196] Emitting module X509
/host/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.
/host/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.
/host/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.
/host/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.
/host/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.
/host/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.
/host/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.
[860/1202] Emitting module BinarySymbols
[861/1202] Compiling BinarySymbols ClangHostDefaultObjectsDetector.swift
[862/1202] Compiling BinarySymbols LLVMObjdumpSymbolProvider.swift
[884/1202] Compiling SWBCAS CASProtocol.swift
[885/1202] Compiling SWBProtocol PreviewMessages.swift
[886/1202] Compiling SWBProtocol ProjectDescriptorMessages.swift
[887/1202] Compiling SWBProtocol ProjectDescriptorTypes.swift
[888/1202] Compiling SWBProtocol BuildConfiguration.swift
[889/1202] Compiling SWBProtocol BuildFile.swift
[890/1202] Compiling SWBProtocol BuildPhase.swift
[891/1202] Compiling SWBProtocol BuildRule.swift
[901/1202] Compiling SwiftDriver Diagnostics.swift
[902/1202] Compiling SwiftDriver FileList.swift
[903/1202] Compiling SwiftDriver FileType.swift
[904/1203] Compiling SWBCAS plugin_api_t.swift
[912/1203] Compiling SwiftSyntax SyntaxNodesC.swift
[913/1203] Compiling SwiftSyntax SyntaxNodesD.swift
[914/1203] Compiling SwiftSyntax SyntaxNodesEF.swift
[915/1203] Compiling SwiftSyntax SyntaxNodesGHI.swift
[916/1203] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[917/1203] Compiling SwiftSyntax SyntaxNodesOP.swift
[918/1203] Compiling SwiftSyntax SyntaxNodesQRS.swift
[919/1203] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[933/1203] Emitting module SWBLLBuild
[934/1203] Compiling SWBLLBuild LowLevelBuildSystem.swift
[934/1204] Wrapping AST for X509 for debugging
[937/1204] Compiling SWBCAS Errors.swift
[938/1204] Compiling SWBCAS ToolchainCASPlugin.swift
[939/1204] Compiling SWBProtocol DependencyInfo.swift
[940/1204] Compiling SWBProtocol ImpartedBuildProperties.swift
[941/1204] Compiling SWBProtocol MacroExpressionSource.swift
[942/1204] Compiling SWBProtocol PIFObject.swift
[942/1214] Wrapping AST for SWBLLBuild for debugging
[944/1216] Compiling SWBProtocol AsyncSequence.swift
[945/1216] Compiling SWBProtocol BuildAction.swift
[946/1216] Compiling SWBProtocol BuildOperationMessages.swift
[947/1216] Compiling SWBProtocol BuildSettingsInfoMessageTypes.swift
[948/1216] Compiling SWBProtocol ClientExchangeMessages.swift
[949/1216] Compiling SWBProtocol DependencyClosureMessages.swift
[950/1216] Compiling SWBProtocol DependencyGraphMessages.swift
[951/1216] Compiling SWBProtocol DocumentationMessages.swift
[952/1216] Compiling SWBProtocol IndexingMessages.swift
[953/1216] Compiling SWBProtocol LocalizationMessages.swift
[954/1216] Compiling SWBProtocol MacroEvaluationMessages.swift
[955/1216] Compiling SWBProtocol Message.swift
[956/1216] Compiling SWBProtocol MessageSupport.swift
[957/1216] Compiling SWBProtocol PIFKeyConstants.swift
[958/1216] Compiling SWBProtocol PlanningOperationMessages.swift
[959/1217] Emitting module SWBCAS
[960/1217] Compiling SWBCAS CASFSNode.swift
[961/1218] Compiling SWBProtocol PlatformFilter.swift
[962/1218] Compiling SWBProtocol Project.swift
[963/1218] Compiling SWBProtocol ProvisioningSourceData.swift
[964/1218] Compiling SWBProtocol Reference.swift
[967/1217] Compiling PackageCollectionsSigning Utilities.swift
[968/1217] Compiling PackageCollectionsSigning Base64URL.swift
[968/1217] Wrapping AST for SWBCAS for debugging
[970/1230] Compiling PackageSigning CertificateStores.swift
[971/1230] Compiling PackageSigning SignatureProvider.swift
[992/1230] Compiling SWBProtocol CustomTask.swift
[998/1230] Emitting module SwiftDriver
[1013/1233] Compiling PackageCollectionsSigning Signature.swift
[1014/1234] Compiling PackageCollectionsSigning PackageCollectionSigning.swift
[1019/1234] Compiling PackageSigning X509Extensions.swift
[1020/1235] Emitting module PackageCollectionsSigning
[1021/1235] Emitting module SourceControl
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:90:17: warning: stored property 'repositoryCache' of 'Sendable'-conforming struct 'GitRepositoryProvider' has non-sendable type 'ThreadSafeKeyValueStore<String, any Repository>'; this is an error in the Swift 6 language mode
88 | private let git: GitShellHelper
89 |
90 | private var repositoryCache = ThreadSafeKeyValueStore<String, Repository>()
| `- warning: stored property 'repositoryCache' of 'Sendable'-conforming struct 'GitRepositoryProvider' has non-sendable type 'ThreadSafeKeyValueStore<String, any Repository>'; this is an error in the Swift 6 language mode
91 |
92 | public init() {
/host/spi-builder-workspace/Sources/SourceControl/Repository.swift:167:17: note: protocol 'Repository' does not conform to the 'Sendable' protocol
165 | /// although the expectation is that implementations should throw or crash when
166 | /// an inconsistency can be detected.
167 | public protocol Repository {
| `- note: protocol 'Repository' does not conform to the 'Sendable' protocol
168 | /// Get the list of tags in the repository.
169 | func getTags() throws -> [String]
/host/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) {
/host/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.
[1022/1235] Compiling PackageFingerprint PackageFingerprintStorage.swift
[1023/1235] Compiling SWBProtocol SourceTree.swift
[1024/1235] Compiling SWBProtocol Target.swift
[1025/1235] Compiling SWBProtocol TargetDependency.swift
[1026/1235] Compiling SWBProtocol Workspace.swift
[1027/1235] Compiling PackageFingerprint Model.swift
[1028/1235] Compiling PackageCollectionsSigning CertificatePolicy.swift
[1029/1235] Compiling PackageCollectionsSigning X509Extensions.swift
[1030/1235] Compiling PackageCollectionsSigning embedded_resources.swift
[1031/1236] Compiling PackageSigning SigningEntity.swift
[1032/1236] Compiling SourceControl Repository.swift
[1033/1236] Compiling SourceControl RepositoryManager.swift
/host/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.
[1035/1236] Compiling PackageSigning SigningIdentity.swift
[1036/1236] Compiling PackageSigning VerifierPolicies.swift
[1037/1236] Compiling PackageSigning FilePackageSigningEntityStorage.swift
[1038/1236] Compiling PackageSigning PackageSigningEntityStorage.swift
[1040/1236] Wrapping AST for PackageCollectionsSigning for debugging
[1045/1236] Compiling SwiftDriver PredictableRandomNumberGenerator.swift
[1046/1236] Compiling SwiftDriver RelativePathAdditions.swift
[1047/1236] Compiling SwiftDriver Sanitizer.swift
[1048/1236] Compiling SwiftDriver StringAdditions.swift
[1049/1236] Compiling SwiftDriver System.swift
[1050/1236] Compiling SwiftDriver Triple+Platforms.swift
[1051/1236] Compiling SwiftDriver Triple.swift
[1052/1236] Compiling SwiftDriver TypedVirtualPath.swift
[1053/1236] Compiling SwiftDriver Version.swift
[1054/1236] Compiling SwiftDriver VirtualPath.swift
[1055/1236] Emitting module PackageSigning
[1057/1237] Emitting module PackageFingerprint
[1058/1237] Compiling PackageFingerprint FilePackageFingerprintStorage.swift
[1064/1238] Compiling PackageSigning embedded_resources.swift
[1082/1238] Wrapping AST for SwiftDriver for debugging
[1083/1256] Wrapping AST for PackageSigning for debugging
[1085/1256] Compiling SourceControl GitRepository.swift
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:90:17: warning: stored property 'repositoryCache' of 'Sendable'-conforming struct 'GitRepositoryProvider' has non-sendable type 'ThreadSafeKeyValueStore<String, any Repository>'; this is an error in the Swift 6 language mode
88 | private let git: GitShellHelper
89 |
90 | private var repositoryCache = ThreadSafeKeyValueStore<String, Repository>()
| `- warning: stored property 'repositoryCache' of 'Sendable'-conforming struct 'GitRepositoryProvider' has non-sendable type 'ThreadSafeKeyValueStore<String, any Repository>'; this is an error in the Swift 6 language mode
91 |
92 | public init() {
/host/spi-builder-workspace/Sources/SourceControl/Repository.swift:167:17: note: protocol 'Repository' does not conform to the 'Sendable' protocol
165 | /// although the expectation is that implementations should throw or crash when
166 | /// an inconsistency can be detected.
167 | public protocol Repository {
| `- note: protocol 'Repository' does not conform to the 'Sendable' protocol
168 | /// Get the list of tags in the repository.
169 | func getTags() throws -> [String]
/host/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) {
[1087/1257] Compiling DriverSupport SPMSwiftDriverExecutor.swift
[1088/1257] Compiling DriverSupport DriverSupportUtils.swift
[1089/1257] Emitting module DriverSupport
[1089/1258] Wrapping AST for SourceControl for debugging
[1092/1296] Compiling PackageLoading ManifestJSONParser.swift
[1093/1296] Compiling PackageLoading ManifestLoader+Validation.swift
[1094/1296] Compiling PackageLoading ManifestLoader.swift
[1095/1296] Compiling PackageLoading ManifestSignatureParser.swift
[1096/1297] Compiling PackageLoading ModuleMapGenerator.swift
[1097/1297] Compiling PackageLoading PackageBuilder.swift
[1098/1297] Compiling PackageLoading PackageDescriptionSerialization.swift
[1099/1297] Compiling PackageLoading PkgConfig.swift
[1100/1297] Compiling PackageLoading Platform.swift
[1101/1297] Compiling PackageLoading RegistryReleaseMetadataSerialization.swift
[1102/1297] Compiling PackageLoading Target+PkgConfig.swift
[1103/1297] Compiling PackageLoading TargetSourcesBuilder.swift
[1104/1297] Emitting module SWBProtocol
[1105/1297] Compiling PackageLoading ContextModel.swift
[1106/1297] Compiling PackageLoading Diagnostics.swift
[1110/1297] Emitting module SWBMacro
[1113/1297] Compiling PackageCollections FilePackageCollectionsSourcesStorage.swift
[1114/1297] Compiling PackageCollections PackageCollectionsSourcesStorage.swift
[1115/1297] Compiling PackageCollections PackageCollectionsStorage.swift
[1116/1300] Compiling SWBMacro MacroValueAssignmentTable.swift
[1117/1301] Wrapping AST for SWBMacro for debugging
[1119/1301] Emitting module PackageCollections
/host/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
/host/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
[1132/1302] Compiling PackageCollections JSONPackageCollectionProvider.swift
[1133/1302] Compiling PackageCollections PackageCollectionProvider.swift
[1134/1302] Compiling PackageCollections PackageMetadataProvider.swift
[1137/1302] Emitting module PackageLoading
/host/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 |
/host/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 |
/host/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 |
[1140/1302] Compiling PackageLoading ToolsVersionParser.swift
/host/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.
[1143/1302] Compiling PackageCollections SQLitePackageCollectionsStorage.swift
/host/spi-builder-workspace/Sources/PackageCollections/Storage/SQLitePackageCollectionsStorage.swift:102:25: warning: capture of 'db' with non-sendable type 'SQLite' in a '@Sendable' closure; this is an error in the Swift 6 language mode
100 | DispatchQueue.sharedConcurrent.asyncAfter(deadline: .now() + delay) {
101 | do {
102 | try db.close()
| `- warning: capture of 'db' with non-sendable type 'SQLite' in a '@Sendable' closure; this is an error in the Swift 6 language mode
103 | callback(.success(()))
104 | } catch {
/host/spi-builder-workspace/Sources/Basics/SQLite.swift:31:21: note: class 'SQLite' does not conform to the 'Sendable' protocol
29 |
30 | /// A minimal SQLite wrapper.
31 | package final class SQLite {
| `- note: class 'SQLite' does not conform to the 'Sendable' protocol
32 | /// The location of the database.
33 | package let location: Location
[1144/1302] Compiling PackageCollections Trie.swift
/host/spi-builder-workspace/Sources/PackageCollections/Storage/SQLitePackageCollectionsStorage.swift:102:25: warning: capture of 'db' with non-sendable type 'SQLite' in a '@Sendable' closure; this is an error in the Swift 6 language mode
100 | DispatchQueue.sharedConcurrent.asyncAfter(deadline: .now() + delay) {
101 | do {
102 | try db.close()
| `- warning: capture of 'db' with non-sendable type 'SQLite' in a '@Sendable' closure; this is an error in the Swift 6 language mode
103 | callback(.success(()))
104 | } catch {
/host/spi-builder-workspace/Sources/Basics/SQLite.swift:31:21: note: class 'SQLite' does not conform to the 'Sendable' protocol
29 |
30 | /// A minimal SQLite wrapper.
31 | package final class SQLite {
| `- note: class 'SQLite' does not conform to the 'Sendable' protocol
32 | /// The location of the database.
33 | package let location: Location
[1145/1302] Compiling PackageCollections Utility.swift
/host/spi-builder-workspace/Sources/PackageCollections/Storage/SQLitePackageCollectionsStorage.swift:102:25: warning: capture of 'db' with non-sendable type 'SQLite' in a '@Sendable' closure; this is an error in the Swift 6 language mode
100 | DispatchQueue.sharedConcurrent.asyncAfter(deadline: .now() + delay) {
101 | do {
102 | try db.close()
| `- warning: capture of 'db' with non-sendable type 'SQLite' in a '@Sendable' closure; this is an error in the Swift 6 language mode
103 | callback(.success(()))
104 | } catch {
/host/spi-builder-workspace/Sources/Basics/SQLite.swift:31:21: note: class 'SQLite' does not conform to the 'Sendable' protocol
29 |
30 | /// A minimal SQLite wrapper.
31 | package final class SQLite {
| `- note: class 'SQLite' does not conform to the 'Sendable' protocol
32 | /// The location of the database.
33 | package let location: Location
[1152/1302] Compiling PackageCollections PackageIndex.swift
[1153/1302] Compiling PackageCollections PackageIndexAndCollections.swift
[1154/1302] Compiling PackageCollections GitHubPackageMetadataProvider.swift
[1166/1304] Wrapping AST for PackageCollections for debugging
[1167/1304] Wrapping AST for SWBProtocol for debugging
[1169/1318] Compiling SWBProjectModel IDEPIFObject.swift
[1170/1318] Compiling SWBProjectModel IDEPIFGenerating.swift
[1171/1318] Compiling SWBProjectModel IDEPIFObjectInfo.swift
[1172/1318] Compiling SWBProjectModel IDEPIFGUID.swift
[1173/1318] Compiling SWBServiceCore ServiceEntryPoint.swift
[1174/1318] Emitting module SWBServiceCore
[1175/1318] Compiling SWBServiceCore Request.swift
[1176/1318] Compiling SWBServiceCore Service.swift
[1177/1318] Emitting module SWBProjectModel
[1182/1319] Compiling SWBServiceCore ServiceExtensionPoint.swift
[1183/1319] Compiling SWBServiceCore ServiceHostConnection.swift
[1186/1320] Compiling SWBProjectModel IDEPIFSerializer.swift
[1186/1320] Wrapping AST for SWBServiceCore for debugging
[1187/1326] Wrapping AST for PackageLoading for debugging
[1189/1500] Compiling PackageRegistry SigningEntityTOFU.swift
[1190/1500] Compiling PackageGraph DependencyResolverBinding.swift
[1191/1500] Compiling PackageGraph DependencyResolverDelegate.swift
[1192/1500] Compiling PackageGraph DependencyResolverError.swift
[1193/1500] Compiling PackageGraph PlatformVersionProvider.swift
[1194/1503] Emitting module PackageGraph
[1195/1503] Compiling PackageRegistry RegistryDownloadsManager.swift
[1196/1503] Compiling PackageRegistry SignatureValidation.swift
[1197/1503] Compiling SWBProjectModel PIFGenerationModel.swift
[1198/1503] Compiling SWBProjectModel IDESwiftPackageExtensions.swift
[1199/1504] Compiling PackageGraph ResolvedModule.swift
[1200/1504] Compiling PackageGraph ResolvedPackage.swift
[1201/1504] Compiling PackageGraph ResolvedProduct.swift
[1202/1504] Wrapping AST for SWBProjectModel for debugging
[1204/1504] Compiling PackageRegistry RegistryConfiguration.swift
[1205/1504] Compiling PackageGraph PackageGraphRoot.swift
[1206/1504] Compiling PackageGraph PackageModel+Extensions.swift
[1207/1504] Compiling PackageGraph PackageRequirement.swift
[1208/1504] Compiling PackageGraph DependencyResolutionNode.swift
[1209/1504] Compiling PackageGraph Assignment.swift
[1210/1504] Compiling PackageGraph ContainerProvider.swift
[1211/1504] Compiling PackageGraph DiagnosticReportBuilder.swift
[1212/1504] Compiling PackageGraph Incompatibility.swift
[1213/1504] Compiling PackageGraph PartialSolution.swift
[1214/1504] Compiling PackageGraph PubGrubDependencyResolver.swift
[1215/1504] Compiling PackageGraph PubGrubPackageContainer.swift
[1216/1504] Compiling PackageGraph Term.swift
[1217/1504] Compiling PackageGraph ResolvedPackagesStore.swift
[1218/1504] Compiling PackageGraph Version+Extensions.swift
[1219/1504] Compiling PackageGraph VersionSetSpecifier.swift
[1220/1504] Compiling PackageGraph BoundVersion.swift
[1221/1504] Compiling PackageGraph DependencyMirrors.swift
[1222/1504] Compiling PackageGraph Diagnostics.swift
[1223/1504] Compiling PackageGraph GraphLoadingNode.swift
[1224/1504] Compiling PackageGraph ModuleAliasTracker.swift
[1225/1504] Compiling PackageGraph ModulesGraph+Loading.swift
[1226/1504] Compiling PackageGraph ModulesGraph.swift
[1227/1504] Compiling PackageGraph PackageContainer.swift
[1228/1505] Wrapping AST for PackageGraph for debugging
[1230/1525] Compiling SPMBuildCore ResolvedPackage+Extensions.swift
[1231/1525] Compiling SPMBuildCore Triple+Extensions.swift
[1232/1527] Compiling SPMBuildCore XCFrameworkMetadata.swift
[1233/1527] Compiling SPMBuildCore XcodeProjectRepresentation.swift
[1234/1527] Compiling SPMBuildCore BinaryTarget+Extensions.swift
[1235/1527] Compiling SPMBuildCore BuildParameters+Debugging.swift
[1236/1527] Compiling SPMBuildCore BuildParameters+Driver.swift
[1237/1527] Compiling SPMBuildCore BuildParameters+Linking.swift
[1238/1527] Compiling SPMBuildCore BuildParameters+Output.swift
[1239/1527] Compiling SPMBuildCore BuildParameters+Testing.swift
[1240/1527] Compiling SPMBuildCore BuildParameters.swift
[1241/1527] Compiling SPMBuildCore BuildSystem.swift
[1242/1527] Compiling SPMBuildCore BuildSystemCommand.swift
[1243/1527] Emitting module SPMBuildCore
[1244/1527] Compiling PackageRegistry ChecksumTOFU.swift
[1245/1527] Compiling PackageRegistry RegistryClient.swift
[1246/1527] Emitting module PackageRegistry
[1256/1528] Compiling SWBCore DeveloperDirectoryExtension.swift
[1257/1528] Compiling SWBCore DiagnosticToolingExtension.swift
[1258/1528] Compiling SWBCore EnvironmentExtension.swift
[1259/1528] Compiling SWBCore FeatureAvailabilityExtension.swift
[1260/1528] Compiling SWBCore InputFileGroupingStrategyExtension.swift
[1261/1528] Compiling SWBCore PlatformInfoExtension.swift
[1262/1528] Compiling SWBCore SDKRegistryExtension.swift
[1263/1528] Compiling SWBCore SDKVariantInfoExtension.swift
[1264/1528] Compiling SWBCore SettingsBuilderExtension.swift
[1265/1528] Compiling SWBCore SpecificationsExtension.swift
[1266/1528] Compiling SWBCore ToolchainRegistryExtension.swift
[1267/1528] Compiling SWBCore FileSystemSignatureBasedCache.swift
[1268/1548] Wrapping AST for PackageRegistry for debugging
[1279/1550] Compiling SPMBuildCore BuildSystemDelegate.swift
[1280/1550] Compiling SPMBuildCore BuiltTestProduct.swift
[1281/1550] Compiling SPMBuildCore CommandPluginResult.swift
[1282/1550] Compiling SPMBuildCore DefaultPluginScriptRunner.swift
[1283/1550] Compiling SPMBuildCore PluginContextSerializer.swift
[1284/1550] Compiling SPMBuildCore PluginInvocation.swift
[1285/1550] Compiling SPMBuildCore PluginMessages.swift
[1286/1550] Compiling SPMBuildCore PluginScriptRunner.swift
[1291/1550] Compiling PackageMetadata PackageMetadata.swift
[1292/1550] Emitting module PackageMetadata
[1293/1551] Emitting module SWBCore
[1294/1551] Wrapping AST for PackageMetadata for debugging
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:570:38: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
568 | throw DefaultPluginScriptRunnerError.invocationEndedBySignal(
569 | signal: process.terminationStatus,
570 | command: command,
| `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
571 | output: String(decoding: stderrData, as: UTF8.self))
572 | }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:571:54: warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode
569 | signal: process.terminationStatus,
570 | command: command,
571 | output: String(decoding: stderrData, as: UTF8.self))
| `- warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode
572 | }
573 | // Otherwise return the termination satatus.
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:585:108: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
583 | catch {
584 | callbackQueue.async {
585 | completion(.failure(DefaultPluginScriptRunnerError.invocationFailed(error: error, command: command)))
| `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
586 | }
587 | }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:570:38: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
568 | throw DefaultPluginScriptRunnerError.invocationEndedBySignal(
569 | signal: process.terminationStatus,
570 | command: command,
| `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
571 | output: String(decoding: stderrData, as: UTF8.self))
572 | }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:571:54: warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode
569 | signal: process.terminationStatus,
570 | command: command,
571 | output: String(decoding: stderrData, as: UTF8.self))
| `- warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode
572 | }
573 | // Otherwise return the termination satatus.
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:585:108: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
583 | catch {
584 | callbackQueue.async {
585 | completion(.failure(DefaultPluginScriptRunnerError.invocationFailed(error: error, command: command)))
| `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
586 | }
587 | }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:570:38: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
568 | throw DefaultPluginScriptRunnerError.invocationEndedBySignal(
569 | signal: process.terminationStatus,
570 | command: command,
| `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
571 | output: String(decoding: stderrData, as: UTF8.self))
572 | }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:571:54: warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode
569 | signal: process.terminationStatus,
570 | command: command,
571 | output: String(decoding: stderrData, as: UTF8.self))
| `- warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode
572 | }
573 | // Otherwise return the termination satatus.
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:585:108: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
583 | catch {
584 | callbackQueue.async {
585 | completion(.failure(DefaultPluginScriptRunnerError.invocationFailed(error: error, command: command)))
| `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode
586 | }
587 | }
[1304/1552] Wrapping AST for SPMBuildCore for debugging
[1306/1612] Compiling Workspace Workspace+Prebuilts.swift
[1307/1612] Compiling Workspace Workspace+Registry.swift
[1308/1612] Compiling Workspace Workspace+ResolvedPackages.swift
[1315/1612] Compiling Workspace ManifestSigning.swift
[1316/1612] Compiling Workspace Signature.swift
[1317/1612] Compiling Workspace Utilities.swift
[1318/1612] Compiling Workspace X509Extensions.swift
[1319/1612] Compiling Workspace embedded_resources.swift
[1320/1612] Compiling Workspace FileSystemPackageContainer.swift
[1321/1612] Compiling Workspace RegistryPackageContainer.swift
[1322/1612] Compiling Workspace SourceControlPackageContainer.swift
[1323/1612] Compiling Workspace ResolvedFileWatcher.swift
[1324/1612] Compiling Workspace ResolverPrecomputationProvider.swift
[1325/1612] Compiling Workspace ToolsVersionSpecificationRewriter.swift
[1326/1612] Compiling Workspace Workspace+BinaryArtifacts.swift
[1327/1612] Compiling Workspace Workspace+Configuration.swift
[1328/1612] Compiling Workspace Workspace+Delegation.swift
[1329/1612] Compiling Workspace Workspace+Dependencies.swift
[1330/1612] Compiling Workspace Workspace+Editing.swift
[1331/1612] Compiling Workspace Workspace+Manifests.swift
[1332/1612] Compiling Workspace Workspace+PackageContainer.swift
[1333/1612] Compiling Workspace CheckoutState.swift
[1334/1612] Compiling Workspace Diagnostics.swift
[1335/1612] Compiling Workspace InitPackage.swift
[1336/1612] Compiling Workspace LoadableResult.swift
[1337/1612] Compiling Workspace ManagedArtifact.swift
[1338/1612] Compiling Workspace ManagedDependency.swift
[1339/1612] Compiling Workspace ManagedPrebuilt.swift
[1340/1612] Compiling Workspace Base64URL.swift
[1341/1612] Compiling Workspace CertificatePolicy.swift
[1348/1612] Compiling SWBCore ProductTypeIdentifier.swift
[1349/1612] Compiling SWBCore BuildConfiguration.swift
[1350/1612] Compiling SWBCore BuildFile.swift
[1351/1612] Emitting module Build
[1352/1612] Compiling XCBuildSupport XCBuildOutputParser.swift
[1353/1612] Compiling XCBuildSupport XcodeBuildSystem.swift
/host/spi-builder-workspace/Sources/XCBuildSupport/XcodeBuildSystem.swift:133:29: warning: 'init(contentsOfFile:)' is deprecated
131 | }
132 |
133 | let swiftSpec = NSArray(contentsOfFile: swiftSpecPath.pathString)
| `- warning: 'init(contentsOfFile:)' is deprecated
134 | let compilerSpec = swiftSpec?.compactMap { $0 as? NSDictionary }.first {
135 | if let identifier = $0["Identifier"] as? String {
[1354/1614] Compiling XCBuildSupport XCBuildDelegate.swift
[1355/1614] Compiling XCBuildSupport XCBuildMessage.swift
/host/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:451:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
449 | // will be very slow), so they can later be passed to the advice provider in case of failure.
450 | if output.utf8.count < 1024 * 10 {
451 | let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
| `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
452 | for match in regex.matchGroups(in: output) {
453 | self.errorMessagesByTarget[parser.targetName] = (
/host/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:451:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
449 | // will be very slow), so they can later be passed to the advice provider in case of failure.
450 | if output.utf8.count < 1024 * 10 {
451 | let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
| `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
452 | for match in regex.matchGroups(in: output) {
453 | self.errorMessagesByTarget[parser.targetName] = (
/host/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:451:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
449 | // will be very slow), so they can later be passed to the advice provider in case of failure.
450 | if output.utf8.count < 1024 * 10 {
451 | let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
| `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
452 | for match in regex.matchGroups(in: output) {
453 | self.errorMessagesByTarget[parser.targetName] = (
[1370/1618] Emitting module Workspace
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:220:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
218 |
219 | struct WorkspaceManifestLoaderDelegate: ManifestLoader.Delegate {
220 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
221 |
222 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:283:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
281 |
282 | struct WorkspaceRepositoryManagerDelegate: RepositoryManager.Delegate {
283 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
284 |
285 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:339:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
337 |
338 | struct WorkspaceRegistryDownloadsManagerDelegate: RegistryDownloadsManager.Delegate {
339 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
340 |
341 | init(workspaceDelegate: Workspace.Delegate) {
[1371/1618] Compiling Build SwiftCompilerOutputParser.swift
[1372/1618] Compiling Build TestObservation.swift
/host/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,
/host/spi-builder-workspace/Sources/Build/BuildOperation.swift:841:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
839 |
840 | // Check for cases involving modules that cannot be found.
841 | if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
| `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
842 | // 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.
843 |
/host/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,
/host/spi-builder-workspace/Sources/Build/BuildOperation.swift:841:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
839 |
840 | // Check for cases involving modules that cannot be found.
841 | if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
| `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
842 | // 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.
843 |
/host/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,
/host/spi-builder-workspace/Sources/Build/BuildOperation.swift:841:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
839 |
840 | // Check for cases involving modules that cannot be found.
841 | if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
| `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
842 | // 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.
843 |
[1383/1618] Compiling XCBuildSupport PIFBuilder.swift
[1389/1618] Emitting module XCBuildSupport
[1390/1618] Compiling XCBuildSupport PIF.swift
[1402/1620] Wrapping AST for XCBuildSupport for debugging
[1403/1620] Wrapping AST for Build for debugging
/host/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)")
/host/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)")
/host/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)")
/host/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)")
[1409/1623] Compiling SourceKitLSPAPI PluginTargetBuildDescription.swift
[1410/1623] Emitting module SourceKitLSPAPI
[1411/1623] Compiling SourceKitLSPAPI BuildDescription.swift
[1412/1624] Wrapping AST for SourceKitLSPAPI for debugging
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:220:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
218 |
219 | struct WorkspaceManifestLoaderDelegate: ManifestLoader.Delegate {
220 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
221 |
222 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:283:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
281 |
282 | struct WorkspaceRepositoryManagerDelegate: RepositoryManager.Delegate {
283 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
284 |
285 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:339:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
337 |
338 | struct WorkspaceRegistryDownloadsManagerDelegate: RegistryDownloadsManager.Delegate {
339 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
340 |
341 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:220:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
218 |
219 | struct WorkspaceManifestLoaderDelegate: ManifestLoader.Delegate {
220 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
221 |
222 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:283:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
281 |
282 | struct WorkspaceRepositoryManagerDelegate: RepositoryManager.Delegate {
283 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
284 |
285 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:339:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
337 |
338 | struct WorkspaceRegistryDownloadsManagerDelegate: RegistryDownloadsManager.Delegate {
339 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
340 |
341 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:220:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
218 |
219 | struct WorkspaceManifestLoaderDelegate: ManifestLoader.Delegate {
220 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
221 |
222 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:283:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
281 |
282 | struct WorkspaceRepositoryManagerDelegate: RepositoryManager.Delegate {
283 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
284 |
285 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:339:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
337 |
338 | struct WorkspaceRegistryDownloadsManagerDelegate: RegistryDownloadsManager.Delegate {
339 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
340 |
341 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:220:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
218 |
219 | struct WorkspaceManifestLoaderDelegate: ManifestLoader.Delegate {
220 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
221 |
222 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:283:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
281 |
282 | struct WorkspaceRepositoryManagerDelegate: RepositoryManager.Delegate {
283 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
284 |
285 | init(workspaceDelegate: Workspace.Delegate) {
/host/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:339:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
27 |
28 | /// The delegate interface used by the workspace to report status information.
29 | public protocol WorkspaceDelegate: AnyObject {
| `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
30 | /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
31 | /// Note that this does not include speculative loading of manifests that may occur during
:
337 |
338 | struct WorkspaceRegistryDownloadsManagerDelegate: RegistryDownloadsManager.Delegate {
339 | private weak var workspaceDelegate: Workspace.Delegate?
| `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
340 |
341 | init(workspaceDelegate: Workspace.Delegate) {
[1422/1624] Compiling SWBCore MkdirTool.swift
[1423/1624] Compiling SWBCore ModulesVerifierTool.swift
[1424/1624] Compiling SWBCore PLUtilTool.swift
[1425/1624] Compiling SWBCore PrelinkedObjectLink.swift
[1426/1624] Compiling SWBCore ProcessSDKImports.swift
[1427/1624] Compiling SWBCore ProcessXCFrameworkLibrary.swift
[1428/1624] Compiling SWBCore ProductPackaging.swift
[1429/1624] Compiling SWBCore RegisterExecutionPolicyException.swift
[1430/1624] Compiling SWBCore SetAttributes.swift
[1431/1624] Compiling SWBCore ShellScriptTool.swift
[1432/1624] Compiling SWBCore SignatureCollection.swift
[1433/1624] Compiling SWBCore StripTool.swift
[1434/1624] Compiling SWBCore SwiftABICheckerTool.swift
[1435/1624] Compiling SWBCore SwiftABIGenerationTool.swift
[1436/1624] Compiling SWBCore SwiftCompiler.swift
[1437/1624] Compiling SWBCore SwiftHeaderTool.swift
[1438/1624] Compiling SWBCore SwiftStdLibTool.swift
[1439/1624] Compiling SWBCore SwiftSymbolExtractor.swift
[1440/1624] Compiling SWBCore SymlinkTool.swift
[1441/1624] Compiling SWBCore TAPISymbolExtractor.swift
[1442/1624] Compiling SWBCore AppShortcutStringsMetadataCompiler.swift
[1443/1624] Compiling SWBCore CCompiler.swift
[1444/1624] Compiling SWBCore ClangModuleVerifierInputGenerator.swift
[1445/1624] Compiling SWBCore ClangStatCache.swift
[1446/1624] Compiling SWBCore CodeSign.swift
[1447/1624] Compiling SWBCore ConcatenateTool.swift
[1448/1624] Compiling SWBCore ConstructStubExecutorFileListTool.swift
[1449/1624] Compiling SWBCore CopyTool.swift
[1450/1624] Compiling SWBCore CreateAssetPackManifestTool.swift
[1451/1624] Compiling SWBCore CreateBuildDirectory.swift
[1452/1624] Compiling SWBCore DocumentationCompiler.swift
[1453/1624] Compiling SWBCore DsymutilTool.swift
[1454/1624] Compiling SWBCore GCCCompatibleCompilerSupport.swift
[1455/1624] Compiling SWBCore Gate.swift
[1456/1624] Compiling SWBCore GenerateAppPlaygroundAssetCatalog.swift
[1457/1624] Compiling SWBCore InfoPlistTool.swift
[1458/1624] Compiling SWBCore LaunchServicesRegisterTool.swift
[1459/1624] Compiling SWBCore LinkerTools.swift
[1460/1624] Compiling SWBCore Lipo.swift
[1461/1624] Compiling SWBCore MergeInfoPlist.swift
[1462/1624] Compiling SWBCore TAPITools.swift
[1463/1624] Compiling SWBCore TiffUtilTool.swift
[1464/1624] Compiling SWBCore TouchTool.swift
[1465/1624] Compiling SWBCore UnifdefTool.swift
[1466/1624] Compiling SWBCore ValidateDevelopmentAssets.swift
[1467/1624] Compiling SWBCore ValidateEmbeddedBinaryTool.swift
[1468/1624] Compiling SWBCore ValidateProductTool.swift
[1469/1624] Compiling SWBCore WriteFile.swift
[1470/1624] Compiling SWBCore SwiftSDK.swift
[1471/1624] Compiling SWBCore TargetDependencyResolver.swift
[1472/1624] Compiling SWBCore TargetPlatformDiagnostics.swift
[1473/1624] Compiling SWBCore TaskGeneration.swift
[1474/1624] Compiling SWBCore TaskResult.swift
[1475/1624] Compiling SWBCore ClangToolInfo.swift
[1476/1624] Compiling SWBCore ToolchainRegistry.swift
[1477/1624] Compiling SWBCore Tuning.swift
[1478/1624] Compiling SWBCore WorkspaceContext.swift
[1479/1624] Compiling SWBCore WorkspaceSettingsCache.swift
[1480/1624] Compiling SWBCore XCFramework.swift
[1481/1624] Compiling SWBCore resource_bundle_accessor.swift
[1482/1624] Compiling Workspace Workspace+Signing.swift
[1483/1624] Compiling Workspace Workspace+SourceControl.swift
[1484/1624] Compiling Workspace Workspace+State.swift
[1485/1624] Compiling Workspace Workspace.swift
[1486/1625] Wrapping AST for Workspace for debugging
[1488/1658] Emitting module package_info
[1489/1658] Compiling package_info example.swift
[1490/1659] Wrapping AST for package-info for debugging
[1491/1659] Write Objects.LinkFileList
[1493/1659] Emitting module _InternalTestSupport
/host/spi-builder-workspace/Sources/_InternalTestSupport/InMemoryGitRepository.swift:401:16: warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
399 | public final class InMemoryGitRepositoryProvider: RepositoryProvider {
400 | /// Contains the repository added to this provider.
401 | public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
| `- warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
402 |
403 | /// Contains the repositories which are fetched using this provider.
[1494/1659] Compiling _InternalTestSupport InMemoryGitRepository.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/InMemoryGitRepository.swift:401:16: warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
399 | public final class InMemoryGitRepositoryProvider: RepositoryProvider {
400 | /// Contains the repository added to this provider.
401 | public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
| `- warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
402 |
403 | /// Contains the repositories which are fetched using this provider.
[1495/1659] Compiling _InternalTestSupport ManifestExtensions.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/InMemoryGitRepository.swift:401:16: warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
399 | public final class InMemoryGitRepositoryProvider: RepositoryProvider {
400 | /// Contains the repository added to this provider.
401 | public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
| `- warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
402 |
403 | /// Contains the repositories which are fetched using this provider.
[1496/1659] Compiling _InternalTestSupport MockArchiver.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/InMemoryGitRepository.swift:401:16: warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
399 | public final class InMemoryGitRepositoryProvider: RepositoryProvider {
400 | /// Contains the repository added to this provider.
401 | public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
| `- warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
402 |
403 | /// Contains the repositories which are fetched using this provider.
[1497/1659] Compiling _InternalTestSupport MockBuildTestHelper.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/InMemoryGitRepository.swift:401:16: warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
399 | public final class InMemoryGitRepositoryProvider: RepositoryProvider {
400 | /// Contains the repository added to this provider.
401 | public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
| `- warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
402 |
403 | /// Contains the repositories which are fetched using this provider.
[1498/1662] Compiling _InternalTestSupport PackageGraphTester.swift
[1499/1662] Compiling _InternalTestSupport ResolvedModule+Mock.swift
[1500/1662] Compiling _InternalTestSupport SkippedTestSupport.swift
[1501/1662] Compiling _InternalTestSupport SwiftPMProduct.swift
[1502/1662] Compiling _InternalTestSupport Toolchain.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/XCTAssertHelpers.swift:51:8: warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
49 | public func XCTSkipIfPlatformCI(because reason: String? = nil, file: StaticString = #filePath, line: UInt = #line) throws {
50 | // TODO: is this actually the right variable now?
51 | if isInCiEnvironment {
| `- warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
52 | let failureCause = reason ?? "Skipping because the test is being run on CI"
53 | throw XCTSkip(failureCause, file: file, line: line)
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:210:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
208 | try localFileSystem.copy(from: srcDir, to: dstDir)
209 | #else
210 | try systemQuietly("cp", "-R", "-H", srcDir.pathString, dstDir.pathString)
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
211 | #endif
212 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:266:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
264 | }
265 |
266 | try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:267:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
265 |
266 | try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:268:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
266 | try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
269 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
270 | let repo = GitRepository(path: dir)
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:269:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
270 | let repo = GitRepository(path: dir)
271 | try repo.stageEverything()
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:276:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
274 | try repo.tag(name: tag)
275 | }
276 | try systemQuietly([Git.tool, "-C", dir.pathString, "branch", "-m", "main"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
277 | } catch {
278 | XCTFail("\(error.interpolationDescription)", file: file, line: line)
[1503/1662] Compiling _InternalTestSupport XCTAssertHelpers.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/XCTAssertHelpers.swift:51:8: warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
49 | public func XCTSkipIfPlatformCI(because reason: String? = nil, file: StaticString = #filePath, line: UInt = #line) throws {
50 | // TODO: is this actually the right variable now?
51 | if isInCiEnvironment {
| `- warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
52 | let failureCause = reason ?? "Skipping because the test is being run on CI"
53 | throw XCTSkip(failureCause, file: file, line: line)
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:210:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
208 | try localFileSystem.copy(from: srcDir, to: dstDir)
209 | #else
210 | try systemQuietly("cp", "-R", "-H", srcDir.pathString, dstDir.pathString)
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
211 | #endif
212 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:266:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
264 | }
265 |
266 | try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:267:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
265 |
266 | try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:268:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
266 | try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
269 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
270 | let repo = GitRepository(path: dir)
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:269:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
270 | let repo = GitRepository(path: dir)
271 | try repo.stageEverything()
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:276:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
274 | try repo.tag(name: tag)
275 | }
276 | try systemQuietly([Git.tool, "-C", dir.pathString, "branch", "-m", "main"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
277 | } catch {
278 | XCTFail("\(error.interpolationDescription)", file: file, line: line)
[1504/1662] Compiling _InternalTestSupport misc.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/XCTAssertHelpers.swift:51:8: warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
49 | public func XCTSkipIfPlatformCI(because reason: String? = nil, file: StaticString = #filePath, line: UInt = #line) throws {
50 | // TODO: is this actually the right variable now?
51 | if isInCiEnvironment {
| `- warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
52 | let failureCause = reason ?? "Skipping because the test is being run on CI"
53 | throw XCTSkip(failureCause, file: file, line: line)
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:210:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
208 | try localFileSystem.copy(from: srcDir, to: dstDir)
209 | #else
210 | try systemQuietly("cp", "-R", "-H", srcDir.pathString, dstDir.pathString)
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
211 | #endif
212 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:266:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
264 | }
265 |
266 | try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:267:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
265 |
266 | try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:268:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
266 | try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
269 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
270 | let repo = GitRepository(path: dir)
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:269:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 | try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
270 | let repo = GitRepository(path: dir)
271 | try repo.stageEverything()
/host/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:276:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
274 | try repo.tag(name: tag)
275 | }
276 | try systemQuietly([Git.tool, "-C", dir.pathString, "branch", "-m", "main"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
277 | } catch {
278 | XCTFail("\(error.interpolationDescription)", file: file, line: line)
[1505/1662] Compiling swift_build_prebuilts BuildPrebuilts.swift
[1506/1662] Emitting module swift_build_prebuilts
[1507/1663] Linking package-info
[1509/1663] Compiling _InternalTestSupport BuildSystemProvider+Configuration.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:24:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
22 | /// Create the repository using git init.
23 | func create() throws {
24 | try systemQuietly([Git.tool, "-C", self.path.pathString, "init"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
25 | }
26 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:41:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
39 | /// Stage a file.
40 | func stage(file: String) throws {
41 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add", file])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
42 | }
43 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:46:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
44 | /// Stage multiple files.
45 | func stage(files: String...) throws {
46 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add"] + files)
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
47 | }
48 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:51:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
49 | /// Stage entire unstaged changes.
50 | func stageEverything() throws {
51 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add", "."])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
52 | }
53 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:57:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
55 | func commit(message: String? = nil) throws {
56 | // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:58:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
56 | // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:59:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:60:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
62 | }
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:61:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
62 | }
63 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:66:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
64 | /// Tag the git repo.
65 | func tag(name: String) throws {
66 | try systemQuietly([Git.tool, "-C", self.path.pathString, "tag", name])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
67 | }
68 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:71:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
69 | /// Push the changes to specified remote and branch.
70 | func push(remote: String, branch: String) throws {
71 | try systemQuietly([Git.tool, "-C", self.path.pathString, "push", remote, branch])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
72 | }
73 | }
[1510/1663] Compiling _InternalTestSupport BuildSystemProvider+Supported.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:24:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
22 | /// Create the repository using git init.
23 | func create() throws {
24 | try systemQuietly([Git.tool, "-C", self.path.pathString, "init"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
25 | }
26 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:41:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
39 | /// Stage a file.
40 | func stage(file: String) throws {
41 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add", file])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
42 | }
43 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:46:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
44 | /// Stage multiple files.
45 | func stage(files: String...) throws {
46 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add"] + files)
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
47 | }
48 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:51:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
49 | /// Stage entire unstaged changes.
50 | func stageEverything() throws {
51 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add", "."])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
52 | }
53 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:57:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
55 | func commit(message: String? = nil) throws {
56 | // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:58:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
56 | // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:59:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:60:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
62 | }
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:61:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
62 | }
63 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:66:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
64 | /// Tag the git repo.
65 | func tag(name: String) throws {
66 | try systemQuietly([Git.tool, "-C", self.path.pathString, "tag", name])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
67 | }
68 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:71:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
69 | /// Push the changes to specified remote and branch.
70 | func push(remote: String, branch: String) throws {
71 | try systemQuietly([Git.tool, "-C", self.path.pathString, "push", remote, branch])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
72 | }
73 | }
[1511/1663] Compiling _InternalTestSupport Commands.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:24:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
22 | /// Create the repository using git init.
23 | func create() throws {
24 | try systemQuietly([Git.tool, "-C", self.path.pathString, "init"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
25 | }
26 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:41:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
39 | /// Stage a file.
40 | func stage(file: String) throws {
41 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add", file])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
42 | }
43 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:46:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
44 | /// Stage multiple files.
45 | func stage(files: String...) throws {
46 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add"] + files)
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
47 | }
48 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:51:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
49 | /// Stage entire unstaged changes.
50 | func stageEverything() throws {
51 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add", "."])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
52 | }
53 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:57:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
55 | func commit(message: String? = nil) throws {
56 | // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:58:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
56 | // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:59:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:60:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
62 | }
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:61:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
62 | }
63 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:66:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
64 | /// Tag the git repo.
65 | func tag(name: String) throws {
66 | try systemQuietly([Git.tool, "-C", self.path.pathString, "tag", name])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
67 | }
68 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:71:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
69 | /// Push the changes to specified remote and branch.
70 | func push(remote: String, branch: String) throws {
71 | try systemQuietly([Git.tool, "-C", self.path.pathString, "push", remote, branch])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
72 | }
73 | }
[1512/1663] Compiling _InternalTestSupport GitRepositoryExtensions.swift
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:24:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
22 | /// Create the repository using git init.
23 | func create() throws {
24 | try systemQuietly([Git.tool, "-C", self.path.pathString, "init"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
25 | }
26 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:41:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
39 | /// Stage a file.
40 | func stage(file: String) throws {
41 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add", file])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
42 | }
43 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:46:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
44 | /// Stage multiple files.
45 | func stage(files: String...) throws {
46 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add"] + files)
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
47 | }
48 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:51:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
49 | /// Stage entire unstaged changes.
50 | func stageEverything() throws {
51 | try systemQuietly([Git.tool, "-C", self.path.pathString, "add", "."])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
52 | }
53 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:57:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
55 | func commit(message: String? = nil) throws {
56 | // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:58:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
56 | // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:59:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
57 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:60:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
62 | }
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:61:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 | try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 | try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
62 | }
63 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:66:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
64 | /// Tag the git repo.
65 | func tag(name: String) throws {
66 | try systemQuietly([Git.tool, "-C", self.path.pathString, "tag", name])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
67 | }
68 |
/host/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:71:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
69 | /// Push the changes to specified remote and branch.
70 | func push(remote: String, branch: String) throws {
71 | try systemQuietly([Git.tool, "-C", self.path.pathString, "push", remote, branch])
| `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
72 | }
73 | }
[1513/1663] Compiling _InternalTestSupport MockPackageGraphs.swift
[1514/1663] Compiling _InternalTestSupport MockPackageSigningEntityStorage.swift
[1515/1663] Compiling _InternalTestSupport MockProduct.swift
[1516/1663] Compiling _InternalTestSupport MockRegistry.swift
[1517/1663] Compiling _InternalTestSupport MockManifestLoader.swift
[1518/1663] Compiling _InternalTestSupport MockPackage.swift
[1519/1663] Compiling _InternalTestSupport MockPackageContainer.swift
[1520/1663] Compiling _InternalTestSupport MockPackageFingerprintStorage.swift
[1521/1663] Compiling _InternalTestSupport MockDependency.swift
[1522/1663] Compiling _InternalTestSupport MockDependencyGraph.swift
[1523/1663] Compiling _InternalTestSupport MockHTTPClient.swift
[1524/1663] Compiling _InternalTestSupport MockHashAlgorithm.swift
[1525/1663] Compiling _InternalTestSupport MockTarget.swift
[1526/1663] Compiling _InternalTestSupport MockWorkspace.swift
[1527/1663] Compiling _InternalTestSupport Observability.swift
[1528/1663] Compiling _InternalTestSupport PackageDependencyDescriptionExtensions.swift
[1528/1663] Wrapping AST for swift-build-prebuilts for debugging
[1529/1663] Write Objects.LinkFileList
[1535/1664] Compiling SWBCore BuildPhase.swift
[1536/1664] Compiling SWBCore BuildRule.swift
[1537/1664] Compiling SWBCore DependencyInfoFormat.swift
[1538/1664] Compiling SWBCore FilePathResolver.swift
[1539/1664] Compiling SWBCore FileTextEncoding.swift
[1540/1664] Compiling SWBCore ImpartedBuildProperties.swift
[1541/1664] Compiling SWBCore PIFLoader.swift
[1542/1664] Compiling SWBCore PlatformFilter.swift
[1543/1664] Compiling SWBCore Project.swift
[1544/1664] Compiling SWBCore ProjectModelItem.swift
[1545/1664] Compiling SWBCore Reference.swift
[1546/1664] Compiling SWBCore ReferenceLookupContext.swift
[1547/1664] Compiling SWBCore Target.swift
[1548/1664] Compiling SWBCore Workspace.swift
[1549/1664] Compiling SWBCore WorkspaceHeaderIndex.swift
[1550/1664] Compiling SWBCore ProvisionalTask.swift
[1551/1664] Compiling SWBCore Provisioning.swift
[1552/1664] Compiling SWBCore ProvisioningTaskInputs.swift
[1553/1664] Compiling SWBCore FileToBuild.swift
[1554/1664] Compiling SWBCore LibSwiftDriver.swift
[1555/1664] Compiling SWBCore PlannedBuild.swift
[1556/1664] Compiling SWBCore ArrayExtensions.swift
[1557/1664] Compiling SWBCore CStringArray.swift
[1558/1664] Compiling SWBCore Libclang.swift
[1559/1664] Compiling SWBCore LinkageDependencyResolver.swift
[1560/1664] Compiling SWBCore MacCatalystInfo.swift
[1561/1664] Compiling SWBCore MacroConfigFileLoader.swift
[1562/1664] Compiling SWBCore MacroEvaluationExtensions.swift
[1563/1664] Compiling SWBCore MacroExpressionSourceExtensions.swift
[1564/1664] Compiling SWBCore OnDemandResources.swift
[1565/1664] Compiling SWBCore OptimizationRemarks.swift
[1566/1664] Compiling SWBCore PlannedNode.swift
[1567/1664] Compiling SWBCore PlannedTask.swift
[1568/1664] Compiling SWBCore PlannedTaskAction.swift
[1569/1664] Compiling SWBCore PlatformEnvironment.swift
[1570/1664] Compiling SWBCore PlatformFiltering.swift
[1571/1664] Compiling SWBCore PlatformRegistry.swift
[1572/1664] Compiling SWBCore Process.swift
[1573/1664] Compiling SWBCore ProcessExecutionCache.swift
[1574/1664] Compiling SWBCore SDKRegistry.swift
[1575/1664] Compiling SWBCore SWBFeatureFlag.swift
[1576/1664] Compiling SWBCore BuildRuleFile.swift
[1577/1664] Compiling SWBCore BuiltinMacros.swift
[1578/1664] Compiling SWBCore CASOptions.swift
[1579/1664] Compiling SWBCore RecursiveSearchPathResolver.swift
[1580/1664] Compiling SWBCore Settings.swift
[1581/1664] Compiling SWBCore StackedSearchPaths.swift
[1582/1664] Compiling SWBCore ShellScript.swift
[1583/1664] Compiling SWBCore SigningSupport.swift
[1584/1664] Compiling SWBCore CommandLineToolSpec.swift
[1585/1664] Compiling SWBCore CompilerSpec.swift
[1586/1664] Compiling SWBCore FileTypes.swift
[1587/1664] Compiling SWBCore LinkerSpec.swift
[1588/1664] Compiling SWBCore ProductTypes.swift
[1589/1664] Compiling SWBCore PropertyDomainSpec.swift
[1590/1664] Compiling SWBCore RegisterSpecs.swift
[1591/1664] Compiling SWBCore SpecParser.swift
[1592/1664] Compiling SWBCore SpecRegistry.swift
[1593/1664] Compiling SWBCore Specs.swift
[1595/1768] Compiling SWBWebAssemblyPlatform resource_bundle_accessor.swift
[1596/1768] Compiling SWBQNXPlatform resource_bundle_accessor.swift
[1597/1768] Emitting module SWBWebAssemblyPlatform
[1598/1768] Compiling SWBWebAssemblyPlatform Plugin.swift
[1599/1769] Compiling SWBGenericUnixPlatform resource_bundle_accessor.swift
[1600/1769] Compiling SWBWindowsPlatform resource_bundle_accessor.swift
[1601/1769] Emitting module SWBWindowsPlatform
[1603/1769] Emitting module SWBQNXPlatform
[1603/1769] Linking swift-build-prebuilts
[1605/1769] Compiling SWBWindowsPlatform VSInstallation.swift
[1605/1769] Wrapping AST for SWBWebAssemblyPlatform for debugging
[1607/1769] Emitting module SWBGenericUnixPlatform
[1608/1769] Compiling SWBGenericUnixPlatform Plugin.swift
[1609/1774] Wrapping AST for SWBCore for debugging
[1611/1774] Compiling SWBWindowsPlatform KnownFolders.swift
[1612/1774] Compiling SWBWindowsPlatform Plugin.swift
[1613/1775] Compiling SWBQNXPlatform Plugin.swift
[1614/1775] Compiling SWBQNXPlatform QNXSDP.swift
[1616/1776] Compiling SWBAndroidPlatform resource_bundle_accessor.swift
[1616/1776] Wrapping AST for SWBGenericUnixPlatform for debugging
[1618/1776] Wrapping AST for SWBWindowsPlatform for debugging
[1619/1776] Wrapping AST for SWBQNXPlatform for debugging
[1621/1776] Compiling SWBAndroidPlatform AndroidSDK.swift
[1622/1776] Emitting module SWBAndroidPlatform
[1623/1776] Compiling SWBAndroidPlatform Plugin.swift
[1625/1777] Compiling SwiftBuild SWBClientExchangeSupport.swift
[1626/1777] Compiling SwiftBuild SWBDocumentationSupport.swift
[1627/1777] Compiling SwiftBuild SWBIndexingSupport.swift
[1628/1777] Compiling SwiftBuild SWBLocalizationSupport.swift
[1629/1777] Compiling SwiftBuild SWBMacroEvaluation.swift
[1630/1777] Compiling SwiftBuild SWBPreviewSupport.swift
[1631/1777] Compiling SwiftBuild SWBProductPlannerSupport.swift
[1632/1777] Compiling SwiftBuild SWBPropertyList.swift
[1633/1777] Compiling SwiftBuild SWBProvisioningTaskInputs.swift
[1634/1777] Compiling SwiftBuild SWBSystemInfo.swift
[1635/1777] Compiling SwiftBuild SWBTargetGUID.swift
[1636/1777] Compiling SwiftBuild SWBTerminal.swift
[1636/1783] Wrapping AST for SWBAndroidPlatform for debugging
[1638/1783] Compiling SwiftBuild BuildConfig.swift
[1639/1783] Compiling SwiftBuild BuildFile.swift
[1640/1783] Compiling SwiftBuild BuildPhases.swift
[1641/1783] Compiling SwiftBuild BuildRule.swift
[1642/1783] Compiling SwiftBuild BuildSettings.swift
[1643/1783] Compiling SwiftBuild CustomTask.swift
[1644/1783] Compiling SwiftBuild SWBUserInfo.swift
[1645/1783] Compiling SwiftBuild SWBWorkspaceInfo.swift
[1646/1783] Compiling SwiftBuild SWBuildMessage+Protocol.swift
[1647/1783] Compiling SwiftBuild SwiftBuild.swift
[1648/1783] Compiling SwiftBuild SwiftBuildVersion.swift
[1649/1783] Compiling SwiftBuild TerminalAttributes.swift
[1650/1783] Compiling SwiftBuild ImpartedBuildProperties.swift
[1651/1783] Compiling SwiftBuild PlatformFilter.swift
[1652/1783] Compiling SwiftBuild Project.swift
[1653/1783] Compiling SwiftBuild ProjectModel.swift
[1654/1783] Compiling SwiftBuild References.swift
[1655/1783] Compiling SwiftBuild SandboxingOverride.swift
[1662/1783] Compiling SwiftBuild SWBBuildRequest.swift
[1663/1783] Compiling SwiftBuild SWBBuildService.swift
[1664/1783] Compiling SwiftBuild SWBBuildServiceConnection.swift
[1665/1783] Compiling SwiftBuild SWBBuildServiceConsole.swift
[1666/1783] Compiling SwiftBuild SWBBuildServiceSession.swift
[1667/1783] Compiling SwiftBuild SWBChannel.swift
[1674/1783] Compiling SwiftBuild TargetDependency.swift
[1675/1783] Compiling SwiftBuild Targets.swift
[1676/1783] Compiling SwiftBuild SWBBuildAction.swift
[1677/1783] Compiling SwiftBuild SWBBuildOperation.swift
[1678/1783] Compiling SwiftBuild SWBBuildOperationBacktraceFrame.swift
[1679/1783] Compiling SwiftBuild SWBBuildParameters.swift
[1692/1789] Emitting module SWBTaskConstruction
[1693/1789] Compiling SwiftBuild CompatibilityShims.swift
[1694/1789] Compiling SwiftBuild SWBServiceConsoleBuildCommand.swift
[1695/1789] Compiling SwiftBuild SWBServiceConsoleBuildCommandProtocol.swift
[1696/1789] Compiling SwiftBuild SWBServiceConsoleCreateXCFrameworkCommand.swift
[1697/1789] Compiling SwiftBuild SWBServiceConsoleGeneralCommands.swift
[1698/1789] Compiling SwiftBuild SWBServiceConsoleSessionCommands.swift
[1699/1789] Compiling SwiftBuild SWBServiceConsoleXcodeCommands.swift
[1700/1789] Emitting module SwiftBuild
[1709/1790] Compiling SWBTaskConstruction CreateBuildDirectoryTaskProducer.swift
[1710/1790] Compiling SWBTaskConstruction HeadermapVFSTaskProducer.swift
[1711/1790] Compiling SWBTaskConstruction IndexBuildVFSDirectoryRemapTaskProducer.swift
[1712/1790] Compiling SWBTaskConstruction PCHModuleMapTaskProducer.swift
[1713/1790] Compiling SWBTaskConstruction XCFrameworkTaskProducer.swift
[1714/1790] Compiling SWBTaskConstruction XCFrameworkContext.swift
[1714/1790] Wrapping AST for SwiftBuild for debugging
[1724/1791] Wrapping AST for SwiftSyntax for debugging
[1726/1850] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[1727/1850] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[1728/1850] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[1729/1851] Compiling SwiftDiagnostics Message.swift
[1730/1851] Compiling SwiftDiagnostics Note.swift
[1731/1851] Compiling SwiftDiagnostics FixIt.swift
[1732/1851] Compiling SwiftBasicFormat Syntax+Extensions.swift
[1733/1851] Compiling SwiftBasicFormat InferIndentation.swift
[1734/1851] Compiling SwiftBasicFormat Indenter.swift
[1735/1851] Compiling SwiftParser Expressions.swift
[1736/1851] Compiling SwiftParser IncrementalParseTransition.swift
[1737/1851] Emitting module SwiftDiagnostics
[1738/1851] Compiling SwiftParser Directives.swift
[1739/1851] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[1740/1851] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[1741/1851] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[1743/1852] Emitting module SwiftBasicFormat
[1744/1852] Compiling SwiftBasicFormat BasicFormat.swift
[1745/1853] Wrapping AST for SwiftDiagnostics for debugging
[1746/1853] Wrapping AST for SwiftBasicFormat for debugging
[1748/1853] Compiling SwiftParser StringLiterals.swift
[1749/1853] Compiling SwiftParser SwiftParserCompatibility.swift
[1750/1853] Compiling SwiftParser SwiftVersion.swift
[1751/1853] Compiling SwiftParser SyntaxUtils.swift
[1752/1853] Compiling SwiftParser TokenConsumer.swift
[1753/1853] Compiling SwiftParser TokenPrecedence.swift
[1754/1858] Compiling SwiftParser Lexeme.swift
[1755/1858] Compiling SwiftParser LexemeSequence.swift
[1756/1858] Compiling SwiftParser Lexer.swift
[1757/1858] Compiling SwiftParser RegexLiteralLexer.swift
[1758/1858] Compiling SwiftParser UnicodeScalarExtensions.swift
[1759/1858] Compiling SwiftParser Lookahead.swift
[1760/1858] Emitting module SwiftParser
[1761/1858] Compiling SwiftParser TokenSpec.swift
[1762/1858] Compiling SwiftParser TokenSpecSet.swift
[1763/1858] Compiling SwiftParser TopLevel.swift
[1764/1858] Compiling SwiftParser TriviaParser.swift
[1765/1858] Compiling SwiftParser Types.swift
[1766/1858] Compiling SwiftParser LoopProgressCondition.swift
[1767/1858] Compiling SwiftParser Modifiers.swift
[1768/1858] Compiling SwiftParser Names.swift
[1769/1858] Compiling SwiftParser Nominals.swift
[1770/1858] Compiling SwiftParser Parameters.swift
[1771/1858] Compiling SwiftParser ParseSourceFile.swift
[1772/1858] Compiling SwiftParser Parser.swift
[1773/1858] Compiling SwiftParser Patterns.swift
[1774/1858] Compiling SwiftParser Recovery.swift
[1775/1858] Compiling SwiftParser Specifiers.swift
[1776/1858] Compiling SwiftParser Statements.swift
[1777/1858] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[1778/1858] Compiling SwiftParser Availability.swift
[1779/1858] Compiling SwiftParser CharacterInfo.swift
[1780/1858] Compiling SwiftParser CollectionNodes+Parsable.swift
[1781/1858] Compiling SwiftParser CompilerFiles.swift
[1782/1858] Compiling SwiftParser Declarations.swift
[1790/1859] Wrapping AST for SWBTaskConstruction for debugging
[1792/1950] Compiling SWBTaskExecution SwiftCachingTaskKeys.swift
[1793/1950] Compiling SWBTaskExecution SwiftDriverJobDynamicTaskSpec.swift
[1794/1950] Compiling SWBTaskExecution BuildDescription.swift
[1795/1950] Compiling SWBTaskExecution BuildDescriptionManager.swift
[1796/1950] Compiling SWBTaskExecution BuildDescriptionSignature.swift
[1797/1950] Compiling SWBTaskExecution BuiltinTaskActionsExtension.swift
[1798/1950] Compiling SWBTaskExecution CompilationCachingDataPruner.swift
[1799/1950] Compiling SWBTaskExecution CompilationCachingUploader.swift
[1800/1950] Compiling SWBTaskExecution DynamicTaskOperationContext.swift
[1801/1950] Compiling SWBTaskExecution DynamicTaskSpecRegistry.swift
[1802/1950] Compiling SWBTaskExecution PrecompileClangModuleDynamicTaskSpec.swift
[1803/1950] Compiling SWBTaskExecution SwiftCachingDynamicTaskSpec.swift
[1804/1950] Emitting module SWBApplePlatform
[1805/1954] Compiling SWBTaskExecution Task.swift
[1806/1954] Compiling SWBTaskExecution TaskActionExtensionPoint.swift
[1807/1954] Compiling SWBTaskExecution AuxiliaryFileTaskAction.swift
[1808/1954] Compiling SWBTaskExecution ClangCachingKeyQueryTaskAction.swift
[1809/1954] Compiling SWBTaskExecution ClangCachingMaterializeKeyTaskAction.swift
[1810/1954] Compiling SWBTaskExecution ClangCachingOutputMaterializerTaskAction.swift
[1811/1954] Compiling SWBTaskExecution ClangCompileTaskAction.swift
[1812/1954] Compiling SWBTaskExecution ClangModuleVerifierInputGeneratorTaskAction.swift
[1813/1954] Compiling SWBTaskExecution ClangScanTaskAction.swift
[1814/1954] Compiling SWBTaskExecution CodeSignTaskAction.swift
[1815/1954] Compiling SWBTaskExecution ConcatenateTaskAction.swift
[1816/1954] Compiling SWBTaskExecution ConstructStubExecutorInputFileListTaskAction.swift
[1817/1954] Compiling SWBTaskExecution CopyPlistTaskAction.swift
[1818/1954] Compiling SWBTaskExecution LinkAssetCatalogTaskAction.swift
[1819/1954] Compiling SWBTaskExecution MergeInfoPlistTaskAction.swift
[1820/1954] Compiling SWBTaskExecution ODRAssetPackManifestTaskAction.swift
[1821/1954] Compiling SWBTaskExecution PrecompileClangModuleTaskAction.swift
[1822/1954] Compiling SWBTaskExecution ProcessProductEntitlementsTaskAction.swift
[1823/1955] Compiling SWBTaskExecution ClangCachingOutputMaterializerDynamicTaskSpec.swift
[1824/1955] Compiling SWBTaskExecution ClangCachingTaskCacheKey.swift
[1825/1955] Compiling SWBTaskExecution ClangModuleDependencyGraph.swift
[1826/1955] Compiling SWBTaskExecution SwiftDriverPlanningDynamicTaskSpec.swift
[1827/1955] Compiling SWBTaskExecution ProjectPlanner.swift
[1835/1955] Compiling SWBTaskExecution ClangCachingKeyQueryDynamicTaskSpec.swift
[1836/1955] Compiling SWBTaskExecution ClangCachingMaterializeKeyDynamicTaskSpec.swift
[1838/1955] Emitting module SWBTaskExecution
[1839/1963] Compiling SWBTaskExecution RegisterExecutionPolicyExceptionTaskAction.swift
[1840/1963] Compiling SWBTaskExecution SignatureCollectionTaskAction.swift
[1841/1963] Compiling SWBTaskExecution SwiftCachingKeyQueryTaskAction.swift
[1842/1963] Compiling SWBTaskExecution SwiftCachingMaterializeKeyTaskAction.swift
[1843/1963] Compiling SWBTaskExecution SwiftCachingOutputMaterializerTaskAction.swift
[1844/1963] Compiling SWBTaskExecution SwiftCompilationTaskAction.swift
[1845/1963] Compiling SWBTaskExecution SwiftDriverCompilationRequirementTaskAction.swift
[1846/1963] Compiling SWBTaskExecution SwiftDriverJobSchedulingTaskAction.swift
[1847/1963] Compiling SWBApplePlatform StubBinaryTaskProducer.swift
[1848/1963] Compiling SWBApplePlatform XCStringsCompiler.swift
[1849/1963] Compiling SWBApplePlatform XCStringsInputFileGroupingStrategy.swift
[1850/1963] Compiling SWBApplePlatform resource_bundle_accessor.swift
[1850/1963] Wrapping AST for SwiftParser for debugging
[1860/1984] Compiling SwiftIDEUtils SwiftIDEUtilsCompatibility.swift
[1861/1985] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[1862/1986] Compiling SwiftIDEUtils Utils.swift
[1863/1986] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[1864/1986] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[1865/1986] Compiling SwiftParserDiagnostics MissingNodesError.swift
[1866/1986] Compiling SwiftParserDiagnostics MissingTokenError.swift
[1867/1986] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[1868/1986] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[1869/1986] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[1870/1986] Compiling SwiftParserDiagnostics PresenceUtils.swift
[1871/1986] Emitting module SwiftIDEUtils
[1872/1986] Compiling SwiftIDEUtils DeclNameLocation.swift
[1873/1986] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[1879/1986] Compiling SWBTaskExecution ProcessProductProvisioningProfileTaskAction.swift
[1880/1986] Compiling SWBTaskExecution ProcessSDKImportsTaskAction.swift
[1881/1986] Compiling SWBTaskExecution ProcessXCFrameworkTaskAction.swift
[1882/1986] Compiling SwiftIDEUtils SyntaxClassification.swift
[1883/1986] Compiling SwiftIDEUtils SyntaxClassifier.swift
[1884/1986] Compiling SwiftIDEUtils Syntax+Classifications.swift
[1885/1986] Compiling SwiftIDEUtils FixItApplier.swift
[1886/1986] Compiling SwiftIDEUtils NameMatcher.swift
[1887/1987] Emitting module SwiftParserDiagnostics
[1890/1987] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[1891/1987] Compiling SwiftParserDiagnostics Utils.swift
[1892/1987] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[1899/1988] Wrapping AST for SwiftIDEUtils for debugging
[1904/1990] Wrapping AST for SWBApplePlatform for debugging
[1906/1990] Compiling SWBTaskExecution SwiftDriverJobTaskAction.swift
[1907/1990] Compiling SWBTaskExecution SwiftDriverTaskAction.swift
[1908/1990] Compiling SWBTaskExecution SwiftHeaderToolTaskAction.swift
[1909/1990] Compiling SWBTaskExecution TaskAction.swift
[1910/1990] Compiling SWBTaskExecution ValidateDevelopmentAssetsTaskAction.swift
[1911/1990] Compiling SWBTaskExecution ValidateProductTaskAction.swift
[1912/1990] Compiling SWBTaskExecution TaskResult.swift
[1913/1990] Compiling SWBTaskExecution TaskStore.swift
[1914/1990] Emitting module SwiftFixIt
[1915/1990] Compiling SwiftFixIt SwiftFixIt.swift
[1927/1991] Compiling SWBTaskExecution EmbedSwiftStdLibTaskAction.swift
[1928/1991] Compiling SWBTaskExecution FileCopyTaskAction.swift
[1929/1991] Compiling SWBTaskExecution GenericCachingTaskAction.swift
[1930/1991] Compiling SWBTaskExecution InfoPlistProcessorTaskAction.swift
[1931/1991] Compiling SWBTaskExecution LSRegisterURLTaskAction.swift
[1932/1991] Wrapping AST for SwiftFixIt for debugging
[1936/1992] Wrapping AST for SwiftParserDiagnostics for debugging
[1938/2007] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[1939/2007] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[1940/2007] Compiling SwiftSyntaxBuilder Indenter.swift
[1941/2007] Compiling SwiftSyntaxBuilder ListBuilder.swift
[1942/2007] Emitting module SwiftSyntaxBuilder
[1943/2008] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[1944/2008] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[1945/2008] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[1946/2008] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[1947/2008] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[1948/2008] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[1949/2008] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[1950/2008] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[1959/2009] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[1960/2009] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[1963/2009] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[1963/2010] Wrapping AST for SWBTaskExecution for debugging
[1965/2029] Wrapping AST for SwiftSyntaxBuilder for debugging
[1967/2029] Compiling SWBBuildSystem SandboxViolations.swift
[1968/2041] Compiling SWBUniversalPlatform TestEntryPointGenerationTool.swift
[1969/2042] Compiling SWBUniversalPlatform TestEntryPointGenerationTaskAction.swift
[1970/2042] Compiling SWBUniversalPlatform TestEntryPointTaskProducer.swift
[1971/2042] Compiling SWBUniversalPlatform YaccCompiler.swift
[1972/2042] Emitting module SWBUniversalPlatform
[1973/2042] Compiling PackageModelSyntax AddPackageDependency.swift
[1974/2042] Compiling PackageModelSyntax AddProduct.swift
[1975/2042] Compiling PackageModelSyntax AddSwiftSetting.swift
[1976/2042] Compiling PackageModelSyntax AddTarget.swift
[1977/2042] Compiling PackageModelSyntax AddTargetDependency.swift
[1978/2042] Compiling PackageModelSyntax ManifestEditError.swift
[1979/2042] Compiling SWBUniversalPlatform resource_bundle_accessor.swift
[1980/2042] Compiling SWBBuildSystem CleanOperation.swift
[1983/2044] Compiling PackageModelSyntax PackageEditResult.swift
[1984/2044] Compiling PackageModelSyntax ManifestSyntaxRepresentable.swift
[1985/2044] Compiling PackageModelSyntax PackageDependency+Syntax.swift
[1987/2044] Emitting module PackageModelSyntax
[1988/2044] Compiling PackageModelSyntax TargetDescription+Syntax.swift
[1988/2044] Wrapping AST for SWBUniversalPlatform for debugging
[1990/2044] Compiling SWBBuildSystem BuildSystemCache.swift
[1991/2044] Compiling SWBBuildSystem DependencyCycleFormatter.swift
[1996/2044] Compiling PackageModelSyntax ProductDescription+Syntax.swift
[1997/2044] Compiling PackageModelSyntax SyntaxEditUtils.swift
[1998/2045] Wrapping AST for PackageModelSyntax for debugging
[1999/2045] Write Objects.LinkFileList
[2001/2045] Emitting module SWBBuildSystem
[2002/2045] Compiling SWBBuildSystem BuildOperationExtension.swift
[2003/2045] Compiling SWBBuildSystem BuildManager.swift
[2004/2045] Compiling SWBBuildSystem BuildOperation.swift
[2005/2046] Wrapping AST for SWBBuildSystem for debugging
error: link command failed with exit code 1 (use -v to see invocation)
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/asn1/a_time.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_ASN1_TIME_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/asn1/tasn_typ.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_ASN1_OCTET_STRING_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/curve25519/curve25519.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_k25519Precomp' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/evp/p_dsa_asn1.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_dsa_asn1_meth' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/evp/p_ec_asn1.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_ec_asn1_meth' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/evp/p_ed25519_asn1.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_ed25519_asn1_meth' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/evp/p_rsa_asn1.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_rsa_asn1_meth' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/evp/p_x25519_asn1.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_x25519_asn1_meth' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/fipsmodule/ec/ec_montgomery.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_ec_GFp_mont_add' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/fipsmodule/md4/md4.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_md4_block_data_order' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/fipsmodule/rsa/rsa_impl.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_kBoringSSLRSASqrtTwo' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/mem.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_OPENSSL_malloc' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/pem/pem_lib.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_PEM_def_callback' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/pkcs8/pkcs8_x509.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_PKCS8_PRIV_KEY_INFO_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/trust_token/trust_token.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_TRUST_TOKEN_PRETOKEN_free' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/rsa_pss.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_RSA_PSS_PARAMS_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_algor.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_ALGOR_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_attrib.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_ATTRIBUTE_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_crl.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_REVOKED_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_exten.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_EXTENSION_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_name.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_NAME_ENTRY_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_pubkey.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_PUBKEY_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_req.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_REQ_INFO_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_sig.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_SIG_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_spki.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_NETSCAPE_SPKAC_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_val.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_VAL_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_x509.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_CINF_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509/x_x509a.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_CERT_AUX_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_akeya.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_AUTHORITY_KEYID_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_bcons.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_BASIC_CONSTRAINTS_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_cpols.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_POLICYINFO_free' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_crld.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_DIST_POINT_free' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_extku.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_EXTENDED_KEY_USAGE_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_genn.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_OTHERNAME_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_info.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_ACCESS_DESCRIPTION_free' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_ncons.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_GENERAL_SUBTREE_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_pcons.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_POLICY_CONSTRAINTS_it' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_pmaps.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_POLICY_MAPPING_free' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/x509v3/v3_utl.c.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509V3_conf_free' which may overflow at runtime; recompile with -fPIC
clang: error: linker command failed with exit code 1 (use -v to see invocation)
[2006/2060] Linking libSwiftPMDataModel.so
BUILD FAILURE 6.1 linux