The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build SwiftPM, reference main (ec2a62), with Swift 6.2 (beta) for Linux on 12 Sep 2025 03:31:24 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

 388 |     }
 389 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1309/1667] Compiling Crypto SubjectPublicKeyInfo.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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 388 |     }
 389 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1310/1667] Compiling Crypto CryptoKitErrors.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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 388 |     }
 389 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1311/1667] Compiling Crypto Digest_boring.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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 388 |     }
 389 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1312/1667] Compiling Crypto Digest.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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 388 |     }
 389 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1313/1667] Compiling Crypto Digests.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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 388 |     }
 389 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 388 |     }
 389 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
     |                        |- 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 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. [#DeprecatedDeclaration]
 388 |     }
 389 |
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:870:36: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 868 |             self.state = .complete(executionResult)
 869 |             self.completionQueue.async {
 870 |                 self.waitUntilExit(completion)
     |                                    |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 871 |             }
 872 |         }
/host/spi-builder-workspace/Sources/Basics/Concurrency/AsyncProcess.swift:1114:17: warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
1112 |         } catch {
1113 |             completionQueue.async {
1114 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-Sendable type '(Result<AsyncProcessResult, any Error>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1115 |             }
1116 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1316/1667] Emitting module SwiftSyntax
[1317/1667] Compiling ArgumentParser CollectionExtensions.swift
[1318/1667] Compiling ArgumentParser Platform.swift
[1319/1667] Compiling ArgumentParser SequenceExtensions.swift
[1320/1667] Compiling ArgumentParser StringExtensions.swift
[1321/1667] Compiling ArgumentParser Tree.swift
[1358/1681] Emitting module Crypto
[1378/1681] Wrapping AST for ArgumentParser for debugging
[1380/1769] Compiling SWBUtil PluginManagerCommon.swift
[1381/1769] Compiling SWBUtil Process+Async.swift
[1382/1769] Compiling SWBUtil Process.swift
[1383/1769] Compiling SWBUtil ProcessInfo.swift
[1384/1769] Compiling SWBUtil Promise.swift
[1385/1769] Compiling SWBUtil PropertyList.swift
[1386/1769] Compiling SWBUtil Queue.swift
[1387/1769] Compiling SWBUtil RateLimiter.swift
[1388/1769] Compiling SWBUtil Ref.swift
[1390/1833] Compiling SWBUtil String.swift
[1391/1833] Compiling SWBUtil TAPIFileList.swift
[1392/1833] Compiling SWBUtil URL.swift
[1393/1833] Compiling SwiftDriver GenericUnixToolchain.swift
[1394/1833] Compiling SwiftDriver Toolchain.swift
[1395/1833] Compiling SwiftDriver WebAssemblyToolchain.swift
[1396/1833] Compiling SwiftDriver WindowsToolchain.swift
[1397/1833] Compiling SwiftDriver SimpleExecutor.swift
[1398/1833] Compiling SwiftDriver ToolingUtil.swift
[1399/1833] Compiling SwiftDriver DOTJobGraphSerializer.swift
[1400/1833] Compiling SwiftDriver DOTModuleDependencyGraphSerializer.swift
[1401/1833] Compiling SwiftDriver DateAdditions.swift
[1402/1833] Compiling SwiftDriver Diagnostics.swift
[1403/1833] Compiling SwiftDriver FileList.swift
[1404/1833] Compiling SWBUtil OrderedDictionary.swift
[1405/1833] Compiling SWBUtil OrderedSet.swift
[1406/1833] Compiling SWBUtil OutputByteStream.swift
[1407/1833] Compiling SWBUtil POSIX.swift
[1408/1833] Compiling SWBUtil Pair.swift
[1409/1833] Compiling SWBUtil Path.swift
[1410/1833] Compiling SWBUtil PathWindows.swift
[1411/1833] Compiling SWBUtil PbxCp.swift
[1412/1833] Compiling SWBUtil PluginManager.swift
[1418/1833] Compiling LLBuildManifest Command.swift
[1419/1833] Compiling PackageModel ArtifactsArchiveMetadata.swift
[1420/1833] Compiling PackageModel BuildConfiguration.swift
[1421/1833] Compiling PackageModel BuildEnvironment.swift
[1422/1833] Compiling PackageModel BuildFlags.swift
[1423/1833] Compiling PackageModel BuildSettings.swift
[1424/1833] Compiling PackageModel DependencyMapper.swift
[1425/1833] Compiling PackageModel Diagnostics.swift
[1426/1833] Compiling PackageModel EnabledTraitsMap.swift
[1427/1833] Compiling PackageModel IdentityResolver.swift
[1428/1833] Compiling PackageModel InstalledSwiftPMConfiguration.swift
[1429/1833] Compiling PackageModel Manifest+Traits.swift
[1430/1833] Compiling PackageModel Manifest.swift
[1431/1833] Compiling PackageModel PackageConditionDescription.swift
[1432/1833] Compiling PackageModel PackageDependencyDescription.swift
[1433/1833] Compiling PackageModel PlatformDescription.swift
[1434/1833] Compiling PackageModel ProductDescription.swift
[1435/1833] Compiling PackageModel BinaryModule.swift
[1436/1833] Compiling PackageModel ClangModule.swift
[1437/1833] Compiling PackageModel Module.swift
[1438/1833] Compiling PackageModel PluginModule.swift
[1439/1833] Compiling PackageModel SwiftModule.swift
[1440/1833] Compiling PackageModel SystemLibraryModule.swift
[1441/1833] Compiling PackageModel Product.swift
[1442/1833] Compiling PackageModel Registry.swift
[1443/1833] Compiling PackageModel SupportedLanguageExtension.swift
[1444/1833] Compiling PackageModel SwiftLanguageVersion.swift
[1445/1833] Compiling PackageModel SwiftSDK.swift
[1446/1833] Compiling PackageModel SwiftSDKBundle.swift
[1447/1833] Compiling PackageModel SwiftSDKBundleStore.swift
[1448/1833] Compiling PackageModel SwiftSDKConfigurationStore.swift
[1449/1833] Compiling PackageModel Toolchain+SupportedFeatures.swift
[1450/1833] Compiling SWBUtil MsgPack.swift
[1451/1833] Compiling SWBUtil MsgPackSerialization.swift
[1452/1833] Compiling SWBUtil NamedTemporaryDirectory.swift
[1453/1833] Compiling SWBUtil OSLog.swift
[1454/1833] Compiling SWBUtil Optional.swift
[1455/1833] Emitting module dummy_swiftc
[1456/1833] Compiling dummy_swiftc main.swift
[1458/1839] Emitting module BinarySymbols
[1459/1839] Compiling BinarySymbols SymbolProvider.swift
[1464/1839] Compiling SWBUtil RegEx.swift
[1465/1839] Compiling SWBUtil Registry.swift
[1466/1839] Compiling SWBUtil ResponseFiles.swift
[1467/1839] Compiling SWBUtil Result.swift
[1468/1839] Compiling SWBUtil SWBDispatch.swift
[1469/1839] Compiling SWBUtil ScopedKeepAliveCache.swift
[1470/1839] Compiling SWBUtil Serialization.swift
[1471/1839] Compiling SWBUtil Signatures.swift
[1472/1839] Compiling SWBUtil Static.swift
[1473/1839] Compiling SWBUtil Statistics.swift
[1474/1839] Compiling BinarySymbols ReferencedSymbols.swift
[1475/1839] Compiling SPMLLBuild llbuild.swift
[1476/1839] Emitting module SPMLLBuild
[1488/1841] Wrapping AST for dummy-swiftc for debugging
[1489/1841] Wrapping AST for SPMLLBuild for debugging
[1491/1860] Compiling LLBuildManifest LLBuildManifestWriter.swift
[1492/1860] Emitting module LLBuildManifest
[1493/1860] Compiling LLBuildManifest LLBuildManifest.swift
[1494/1860] Compiling QueryEngine FileCacheRecord.swift
[1495/1860] Compiling LLBuildManifest Node.swift
[1496/1860] Compiling LLBuildManifest Target.swift
[1497/1860] Compiling LLBuildManifest Tools.swift
[1498/1861] Compiling _CryptoExtras DigestType.swift
[1499/1861] Compiling _CryptoExtras Error.swift
[1500/1861] Compiling _CryptoExtras PEMDocument.swift
[1502/1862] Compiling QueryEngine QueryEngine.swift
[1503/1862] Compiling QueryEngine CacheKey.swift
[1504/1862] Emitting module QueryEngine
/host/spi-builder-workspace/Sources/QueryEngine/Query.swift:31:14: warning: associated value 'noCacheKeyConformance' of 'Sendable'-conforming enum 'Error' has non-Sendable type 'any Encodable.Type'
 29 | final class HashEncoder<Hash: HashFunction>: Encoder {
 30 |     enum Error: Swift.Error {
 31 |         case noCacheKeyConformance(Encodable.Type)
    |              `- warning: associated value 'noCacheKeyConformance' of 'Sendable'-conforming enum 'Error' has non-Sendable type 'any Encodable.Type'
 32 |     }
 33 |
[1504/1862] Wrapping AST for Crypto for debugging
[1506/1862] Compiling _CryptoExtras BoringSSLHelpers.swift
[1507/1862] Compiling _CryptoExtras CryptoKitErrors_boring.swift
[1507/1862] Wrapping AST for LLBuildManifest for debugging
[1515/1862] Compiling PackageModel ModuleMapType.swift
[1515/1869] Wrapping AST for Basics for debugging
[1516/1869] Write Objects.LinkFileList
[1518/1869] Compiling QueryEngine Query.swift
/host/spi-builder-workspace/Sources/QueryEngine/Query.swift:31:14: warning: associated value 'noCacheKeyConformance' of 'Sendable'-conforming enum 'Error' has non-Sendable type 'any Encodable.Type'
 29 | final class HashEncoder<Hash: HashFunction>: Encoder {
 30 |     enum Error: Swift.Error {
 31 |         case noCacheKeyConformance(Encodable.Type)
    |              `- warning: associated value 'noCacheKeyConformance' of 'Sendable'-conforming enum 'Error' has non-Sendable type 'any Encodable.Type'
 32 |     }
 33 |
[1519/1869] Compiling _CryptoExtras RandomBytes.swift
[1521/1870] Compiling _CryptoExtras RSA_boring.swift
[1522/1870] Compiling _CryptoExtras RSA_security.swift
[1523/1870] Emitting module _CryptoExtras
[1524/1870] Compiling _CryptoExtras AES_GCM_SIV.swift
[1525/1870] Compiling _CryptoExtras Block Function.swift
[1525/1870] Linking dummy-swiftc
[1527/1870] Compiling _CryptoExtras AES_GCM_SIV_boring.swift
[1528/1870] Compiling _CryptoExtras ChaCha20CTR_boring.swift
[1529/1870] Compiling _CryptoExtras ChaCha20CTR.swift
[1530/1870] Compiling _CryptoExtras RSA.swift
[1531/1871] Wrapping AST for _CryptoExtras for debugging
[1533/1959] Emitting module SwiftDriver
[1534/1959] Emitting module PackageModel
/host/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1535/1959] Compiling X509 CMSIssuerAndSerialNumber.swift
[1536/1959] Compiling X509 CMSOperations.swift
[1537/1959] Compiling X509 CMSSignature.swift
[1538/1959] Compiling X509 CMSSignedData.swift
[1539/1959] Compiling X509 CMSSignerIdentifier.swift
[1540/1959] Compiling X509 CMSSignerInfo.swift
[1541/1959] Compiling X509 CMSVersion.swift
[1542/1959] Compiling X509 Digests.swift
[1543/1959] Compiling X509 DistinguishedName.swift
[1544/1959] Compiling X509 CommonName.swift
[1545/1959] Compiling X509 CountryName.swift
[1546/1959] Compiling X509 DNBuilder.swift
[1547/1959] Compiling X509 LocalityName.swift
[1548/1959] Compiling X509 OrganizationName.swift
[1549/1959] Compiling X509 CSRAttribute.swift
[1550/1959] Compiling X509 CSRAttributes.swift
[1551/1959] Compiling X509 CSRVersion.swift
[1552/1959] Compiling X509 CertificateSigningRequest.swift
[1553/1959] Compiling X509 CertificationRequestInfo.swift
[1554/1959] Compiling X509 ExtensionRequest.swift
[1555/1959] Compiling X509 Certificate.swift
[1556/1959] Compiling X509 CertificatePrivateKey.swift
[1557/1959] Compiling X509 CertificatePublicKey.swift
[1558/1959] Compiling X509 CertificateSerialNumber.swift
[1559/1959] Compiling X509 CertificateVersion.swift
[1560/1959] Compiling X509 CMSAttribute.swift
[1561/1959] Compiling X509 CMSContentInfo.swift
[1562/1959] Compiling X509 CMSEncapsulatedContentInfo.swift
[1563/1959] Compiling X509 StreetAddress.swift
[1564/1959] Compiling X509 Error.swift
[1565/1959] Compiling X509 AuthorityInformationAccess.swift
[1566/1959] Compiling X509 AuthorityKeyIdentifier.swift
[1567/1959] Compiling X509 BasicConstraints.swift
[1568/1959] Compiling X509 ExtendedKeyUsage.swift
[1569/1959] Compiling X509 ExtensionIdentifiers.swift
[1570/1959] Compiling X509 KeyUsage.swift
[1571/1959] Compiling X509 NameConstraints.swift
[1572/1959] Compiling X509 SubjectAlternativeName.swift
[1573/1959] Compiling X509 SubjectKeyIdentifier.swift
[1574/1959] Compiling X509 Extension.swift
[1575/1959] Compiling X509 Extensions.swift
[1576/1959] Compiling X509 ExtensionsBuilder.swift
[1577/1959] Compiling X509 GeneralName.swift
/host/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1578/1959] Compiling X509 LockedValueBox.swift
/host/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1579/1959] Compiling X509 BasicOCSPResponse.swift
/host/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1580/1959] Compiling X509 DirectoryString.swift
/host/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1581/1959] Compiling X509 OCSPCertID.swift
/host/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1582/1959] Compiling X509 OCSPCertStatus.swift
/host/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1583/1959] Compiling X509 OCSPExtensionID.swift
/host/spi-builder-workspace/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 72 |
 73 |     /// Create an instance of Swift language version from the given string.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1584/1959] Compiling SwiftDriver FileMetadata.swift
[1585/1959] Compiling SwiftDriver FileType.swift
[1586/1959] Compiling SwiftDriver PredictableRandomNumberGenerator.swift
[1587/1959] Compiling SwiftDriver PythonArchitecture.swift
[1588/1959] Compiling SwiftDriver RelativePathAdditions.swift
[1589/1959] Compiling SwiftDriver Sanitizer.swift
[1590/1959] Compiling SwiftDriver StringAdditions.swift
[1591/1959] Compiling SwiftDriver System.swift
[1592/1959] Compiling SwiftDriver Triple+Platforms.swift
[1593/1959] Compiling SwiftDriver Triple.swift
[1594/1959] Compiling SwiftDriver TypedVirtualPath.swift
[1595/1959] Compiling SwiftDriver Version.swift
[1596/1959] Compiling SwiftDriver VirtualPath.swift
[1597/1960] Wrapping AST for SwiftDriver for debugging
[1599/1960] Compiling X509 OCSPNonce.swift
[1600/1960] Compiling X509 OCSPPolicy.swift
[1601/1960] Compiling X509 OCSPRequest.swift
[1602/1960] Compiling X509 OCSPResponse.swift
[1603/1960] Compiling X509 OCSPResponseBytes.swift
[1604/1960] Compiling X509 OCSPResponseData.swift
[1605/1960] Compiling X509 OCSPResponseStatus.swift
[1614/1960] Emitting module SWBUtil
[1628/1972] Compiling X509 OrganizationalUnitName.swift
[1629/1972] Compiling X509 StateOrProvinceName.swift
[1631/1973] Compiling BinarySymbols LLVMObjdumpSymbolProvider.swift
[1632/1973] Compiling BinarySymbols ClangHostDefaultObjectsDetector.swift
[1633/1981] Wrapping AST for PackageModel for debugging
[1634/1985] Wrapping AST for BinarySymbols for debugging
[1636/1985] Compiling PackageFingerprint PackageFingerprintStorage.swift
[1637/1985] Compiling PackageFingerprint Model.swift
[1638/1985] Compiling DriverSupport SPMSwiftDriverExecutor.swift
/host/spi-builder-workspace/Sources/DriverSupport/SPMSwiftDriverExecutor.swift:61:28: warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock [#DeprecatedDeclaration]
59 |
60 |         var childEnv = [String: String](env)
61 |         childEnv.merge(job.extraEnvironment, uniquingKeysWith: { (_, new) in new })
   |                            `- warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock [#DeprecatedDeclaration]
62 |
63 |         let process = try Process.launchProcess(arguments: arguments, env: childEnv)
/host/spi-builder-workspace/Sources/DriverSupport/SPMSwiftDriverExecutor.swift:63:35: warning: 'launchProcess(arguments:env:)' is deprecated: use launchProcess(arguments:envBlock:) instead [#DeprecatedDeclaration]
61 |         childEnv.merge(job.extraEnvironment, uniquingKeysWith: { (_, new) in new })
62 |
63 |         let process = try Process.launchProcess(arguments: arguments, env: childEnv)
   |                                   `- warning: 'launchProcess(arguments:env:)' is deprecated: use launchProcess(arguments:envBlock:) instead [#DeprecatedDeclaration]
64 |         return try process.waitUntilExit()
65 |     }
/host/spi-builder-workspace/Sources/DriverSupport/SPMSwiftDriverExecutor.swift:89:17: warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock [#DeprecatedDeclaration]
87 |         }
88 |
89 |         if !job.extraEnvironment.isEmpty {
   |                 `- warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock [#DeprecatedDeclaration]
90 |             result += " #"
91 |             for (envVar, val) in job.extraEnvironment {
/host/spi-builder-workspace/Sources/DriverSupport/SPMSwiftDriverExecutor.swift:91:38: warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock [#DeprecatedDeclaration]
89 |         if !job.extraEnvironment.isEmpty {
90 |             result += " #"
91 |             for (envVar, val) in job.extraEnvironment {
   |                                      `- warning: 'extraEnvironment' is deprecated: use extraEnvironmentBlock [#DeprecatedDeclaration]
92 |                 result += " \(envVar)=\(val)"
93 |             }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1639/1985] Emitting module DriverSupport
[1640/1985] Compiling DriverSupport DriverSupportUtils.swift
/host/spi-builder-workspace/Sources/DriverSupport/DriverSupportUtils.swift:71:48: warning: 'launchProcess(arguments:env:)' is deprecated: use launchProcess(arguments:envBlock:) instead [#DeprecatedDeclaration]
69 |         }
70 |         do {
71 |             let helpJob = try TSCBasic.Process.launchProcess(
   |                                                `- warning: 'launchProcess(arguments:env:)' is deprecated: use launchProcess(arguments:envBlock:) instead [#DeprecatedDeclaration]
72 |                 arguments: [swiftcPathString, "-h"],
73 |                 env: .init(Environment.current)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1641/1986] Wrapping AST for DriverSupport for debugging
[1671/1998] Compiling X509 OCSPSignature.swift
[1672/1998] Compiling X509 OCSPSingleRequest.swift
[1673/1998] Compiling X509 OCSPSingleResponse.swift
[1674/1998] Compiling X509 OCSPTBSRequest.swift
[1675/1998] Compiling X509 OCSPVersion.swift
[1676/1998] Compiling SourceControl Repository.swift
[1677/1998] 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.
[1678/1998] Emitting module SourceControl
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:410:17: warning: stored property 'cachedHashes' of 'Sendable'-conforming class 'GitRepository' is mutable; this is an error in the Swift 6 language mode
 408 |
 409 |     /// Dictionary for memoizing results of git calls that are not expected to change.
 410 |     private var cachedHashes = ThreadSafeKeyValueStore<String, Hash>()
     |                 `- warning: stored property 'cachedHashes' of 'Sendable'-conforming class 'GitRepository' is mutable; this is an error in the Swift 6 language mode
 411 |     private var cachedBlobs = ThreadSafeKeyValueStore<Hash, ByteString>()
 412 |     private var cachedTrees = ThreadSafeKeyValueStore<String, Tree>()
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:1265:29: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
1263 |     )
1264 |     """#
1265 |     static let regex = try? RegEx(pattern: pattern)
     |                             `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1679/1998] Compiling SourceControl GitRepository.swift
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:410:17: warning: stored property 'cachedHashes' of 'Sendable'-conforming class 'GitRepository' is mutable; this is an error in the Swift 6 language mode
 408 |
 409 |     /// Dictionary for memoizing results of git calls that are not expected to change.
 410 |     private var cachedHashes = ThreadSafeKeyValueStore<String, Hash>()
     |                 `- warning: stored property 'cachedHashes' of 'Sendable'-conforming class 'GitRepository' is mutable; this is an error in the Swift 6 language mode
 411 |     private var cachedBlobs = ThreadSafeKeyValueStore<Hash, ByteString>()
 412 |     private var cachedTrees = ThreadSafeKeyValueStore<String, Tree>()
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:1265:29: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
1263 |     )
1264 |     """#
1265 |     static let regex = try? RegEx(pattern: pattern)
     |                             `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
1266 |
1267 |     init?(from string: String) {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1681/1999] Compiling X509 PKCS8PrivateKey.swift
[1682/1999] Compiling X509 PromiseAndFuture.swift
[1683/1999] Compiling X509 RDNAttribute.swift
[1684/1999] Compiling X509 RandomNumberGenerator+bytes.swift
[1685/1999] Compiling X509 RelativeDistinguishedName.swift
[1686/1999] Compiling X509 SEC1PrivateKey.swift
[1687/1999] Compiling X509 Signature.swift
[1688/1999] Compiling X509 SignatureAlgorithm.swift
[1689/1999] Compiling X509 AllOfPolicies.swift
[1690/1999] Compiling X509 AnyPolicy.swift
[1691/1999] Compiling X509 CertificateStore.swift
[1692/1999] Compiling X509 OneOfPolicies.swift
[1693/1999] Compiling X509 PolicyBuilder.swift
[1694/1999] Compiling X509 BasicConstraintsPolicy.swift
[1695/1999] Compiling X509 DNSNames.swift
[1696/1999] Compiling X509 DirectoryNames.swift
[1697/1999] Compiling X509 ExpiryPolicy.swift
[1698/1999] Compiling X509 IPConstraints.swift
[1699/1999] Compiling X509 NameConstraintsPolicy.swift
[1700/1999] Compiling X509 RFC5280Policy.swift
[1701/1999] Compiling X509 URIConstraints.swift
[1702/1999] Compiling X509 VersionPolicy.swift
[1703/1999] Compiling X509 ServerIdentityPolicy.swift
[1704/1999] Compiling X509 TrustRootLoading.swift
[1704/2001] Wrapping AST for SourceControl for debugging
[1706/2014] Emitting module PackageFingerprint
[1707/2014] Compiling PackageFingerprint FilePackageFingerprintStorage.swift
[1708/2015] Wrapping AST for PackageFingerprint for debugging
[1734/2015] Compiling PackageLoading RegistryReleaseMetadataSerialization.swift
[1760/2015] Compiling PackageLoading ContextModel.swift
[1761/2015] Compiling PackageLoading Diagnostics.swift
[1762/2016] Compiling X509 UnverifiedChain.swift
[1763/2016] Compiling X509 VerificationDiagnostic.swift
[1764/2016] Compiling X509 Verifier.swift
[1765/2016] Compiling X509 VerifierPolicy.swift
[1766/2016] Compiling X509 AlgorithmIdentifier.swift
[1767/2016] Compiling X509 ECDSASignature.swift
[1768/2016] Compiling X509 RSAPKCS1PublicKey.swift
[1769/2016] Compiling X509 SubjectPublicKeyInfo.swift
[1770/2016] Compiling X509 TBSCertificate.swift
[1771/2016] Compiling X509 Time.swift
[1772/2016] Compiling X509 TimeCalculations.swift
[1773/2016] Compiling X509 Validity.swift
[1774/2016] Compiling PackageLoading Platform.swift
[1776/2016] Compiling PackageLoading Target+PkgConfig.swift
/host/spi-builder-workspace/Sources/PackageLoading/Target+PkgConfig.swift:330:25: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
331 |
332 |     return try ["-I", "-L"].reduce(flags) { (flags, flag) in
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1777/2016] Compiling PackageLoading TargetSourcesBuilder.swift
/host/spi-builder-workspace/Sources/PackageLoading/Target+PkgConfig.swift:330:25: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
331 |
332 |     return try ["-I", "-L"].reduce(flags) { (flags, flag) in
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1790/2016] Compiling PackageLoading ToolsVersionParser.swift
/host/spi-builder-workspace/Sources/PackageLoading/ToolsVersionParser.swift:624:26: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
625 |
626 |         // Collect all version-specific manifests at the given package path.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1806/2016] Compiling PackageLoading ModuleMapGenerator.swift
[1807/2016] Compiling PackageLoading PackageBuilder.swift
[1808/2016] Compiling PackageLoading ManifestJSONParser.swift
[1809/2016] Compiling PackageLoading ManifestLoader+Validation.swift
[1810/2016] Compiling PackageLoading ManifestLoader.swift
[1811/2016] Compiling PackageLoading ManifestSignatureParser.swift
[1812/2016] Compiling PackageLoading PackageDescriptionSerialization.swift
[1813/2016] Compiling PackageLoading PkgConfig.swift
[1854/2017] Emitting module X509
[1855/2073] Wrapping AST for SWBUtil for debugging
[1857/2073] Compiling SWBCAS plugin_api_t.swift
[1858/2073] Compiling SWBCAS CASProtocol.swift
[1868/2073] Compiling SWBLLBuild LowLevelBuildSystem.swift
[1869/2073] Emitting module SWBLLBuild
[1871/2074] Compiling SWBMacro MacroConfigFileDiagnostic.swift
[1872/2074] Compiling SWBMacro MacroConfigFileParser.swift
[1873/2074] Compiling SWBMacro MacroConditionParameter.swift
[1874/2074] Compiling SWBMacro MacroConditionSet.swift
[1874/2075] Wrapping AST for SWBLLBuild for debugging
[1888/2076] Compiling SWBMacro MacroEvaluationScope.swift
[1889/2076] Compiling SWBMacro MacroExpression.swift
[1890/2076] Compiling SWBMacro MacroDeclaration.swift
[1891/2076] Compiling SWBMacro MacroEvaluationProgram.swift
[1892/2084] Wrapping AST for X509 for debugging
[1894/2093] Compiling SWBProtocol DependencyInfo.swift
[1895/2093] Compiling SWBProtocol ImpartedBuildProperties.swift
[1896/2093] Compiling SWBProtocol MacroExpressionSource.swift
[1897/2093] Compiling SWBProtocol PIFObject.swift
[1898/2093] Compiling SWBProtocol PlatformFilter.swift
[1899/2093] Compiling SWBProtocol Project.swift
[1900/2093] Compiling SWBProtocol ProvisioningSourceData.swift
[1901/2093] Compiling SWBProtocol Reference.swift
[1902/2097] Compiling SWBCAS ToolchainCASPlugin.swift
[1903/2097] Compiling SWBCAS Errors.swift
[1904/2097] Compiling SWBMacro MacroNamespace.swift
[1905/2097] Compiling SWBMacro MacroType.swift
[1906/2097] Compiling SWBCAS CASFSNode.swift
[1907/2097] Emitting module SWBCAS
[1908/2098] Compiling PackageCollectionsSigning Base64URL.swift
[1909/2098] Wrapping AST for SWBCAS for debugging
[1911/2098] Compiling PackageCollectionsSigning Utilities.swift
[1912/2098] Compiling PackageSigning X509Extensions.swift
[1913/2099] Compiling SWBMacro MacroExpressionDiagnostic.swift
[1914/2099] Compiling SWBMacro MacroExpressionParsing.swift
[1915/2099] Compiling SWBMacro MacroValueAssignmentTable.swift
[1916/2099] Compiling PackageCollectionsSigning Signature.swift
[1917/2099] Compiling PackageSigning CertificateStores.swift
[1918/2099] Compiling PackageSigning SignatureProvider.swift
[1919/2099] Emitting module SWBMacro
[1920/2100] Compiling PackageCollectionsSigning PackageCollectionSigning.swift
[1922/2100] Compiling PackageSigning VerifierPolicies.swift
[1923/2100] Compiling PackageSigning SigningIdentity.swift
[1923/2100] Wrapping AST for SWBMacro for debugging
[1925/2100] Compiling PackageSigning PackageSigningEntityStorage.swift
[1926/2100] Compiling PackageSigning SigningEntity.swift
[1927/2100] Compiling PackageSigning FilePackageSigningEntityStorage.swift
[1930/2100] Compiling SWBProtocol SourceTree.swift
[1931/2100] Compiling SWBProtocol Target.swift
[1932/2100] Compiling SWBProtocol TargetDependency.swift
[1933/2100] Compiling SWBProtocol Workspace.swift
[1934/2100] Emitting module PackageSigning
[1935/2100] Compiling SWBProtocol BuildFile.swift
[1936/2100] Compiling SWBProtocol BuildPhase.swift
[1937/2100] Compiling SWBProtocol BuildRule.swift
[1938/2100] Compiling SWBProtocol CustomTask.swift
[1939/2100] Emitting module PackageCollectionsSigning
[1940/2100] Compiling PackageCollectionsSigning CertificatePolicy.swift
[1941/2100] Compiling PackageCollectionsSigning X509Extensions.swift
[1942/2100] Compiling PackageCollectionsSigning embedded_resources.swift
[1943/2101] Wrapping AST for PackageCollectionsSigning for debugging
[1945/2125] Compiling PackageSigning embedded_resources.swift
[1946/2126] Wrapping AST for PackageSigning for debugging
[1948/2126] Compiling PackageCollections PackageList.swift
/host/spi-builder-workspace/Sources/PackageLoading/ManifestJSONParser.swift:257:53: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
258 | }
259 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1949/2126] Compiling PackageCollections PackageTypes.swift
/host/spi-builder-workspace/Sources/PackageLoading/ManifestJSONParser.swift:257:53: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
258 | }
259 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1950/2126] Emitting module PackageLoading
/host/spi-builder-workspace/Sources/PackageLoading/ManifestJSONParser.swift:257:53: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
258 | }
259 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1951/2126] Compiling PackageCollections Search.swift
[1952/2126] Compiling PackageCollections TargetListResult.swift
[1953/2126] Compiling PackageCollections Collection.swift
[1954/2126] Compiling PackageCollections License.swift
[1955/2126] Compiling PackageCollections PackageCollections+CertificatePolicy.swift
[1956/2126] Compiling PackageCollections PackageCollections+Configuration.swift
[1958/2127] Compiling PackageCollections FilePackageCollectionsSourcesStorage.swift
[1959/2127] Compiling PackageCollections PackageCollectionsSourcesStorage.swift
[1960/2127] Compiling PackageCollections PackageCollectionsStorage.swift
[1960/2130] Wrapping AST for PackageLoading for debugging
[1962/2165] Emitting module PackageCollections
[1963/2165] Compiling PackageGraph Incompatibility.swift
[1964/2165] Compiling PackageGraph PartialSolution.swift
[1965/2165] Compiling PackageGraph PubGrubDependencyResolver.swift
[1966/2165] Compiling PackageGraph PubGrubPackageContainer.swift
[1967/2165] Compiling PackageGraph Term.swift
[1968/2165] Compiling PackageRegistry SigningEntityTOFU.swift
[1969/2165] Compiling PackageGraph DependencyResolverBinding.swift
[1970/2165] Compiling PackageGraph DependencyResolverDelegate.swift
[1971/2165] Compiling PackageGraph DependencyResolverError.swift
[1972/2165] Compiling PackageGraph PlatformVersionProvider.swift
[1973/2168] Emitting module PackageRegistry
[1974/2168] Emitting module PackageGraph
[1975/2168] Compiling PackageGraph BoundVersion.swift
[1976/2168] Compiling PackageGraph DependencyMirrors.swift
[1977/2168] Compiling PackageGraph Diagnostics.swift
[1978/2168] Compiling PackageGraph GraphLoadingNode.swift
[1979/2168] Compiling PackageGraph PackageGraphRoot.swift
[1980/2168] Compiling PackageGraph PackageModel+Extensions.swift
[1981/2168] Compiling PackageGraph PackageRequirement.swift
[1982/2168] Compiling PackageGraph DependencyResolutionNode.swift
[1983/2168] Compiling PackageRegistry RegistryDownloadsManager.swift
[1984/2168] Compiling PackageGraph ContainerProvider.swift
[1985/2168] Compiling PackageGraph DiagnosticReportBuilder.swift
[1991/2168] Compiling PackageGraph ModuleAliasTracker.swift
[1992/2168] Compiling PackageGraph ModulesGraph+Loading.swift
[1993/2168] Compiling PackageGraph ModulesGraph.swift
[1994/2168] Compiling PackageGraph PackageContainer.swift
[1995/2168] Compiling PackageRegistry SignatureValidation.swift
[1996/2168] Compiling PackageGraph ResolvedModule.swift
[1997/2168] Compiling PackageGraph ResolvedPackage.swift
[1998/2168] Compiling PackageGraph ResolvedProduct.swift
[2002/2168] Compiling PackageRegistry RegistryConfiguration.swift
[2003/2168] Compiling PackageGraph Assignment.swift
[2012/2168] Emitting module SWBProtocol
/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 [#SendableClosureCaptures]
 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 [#SendableClosureCaptures]
 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
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/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 [#SendableClosureCaptures]
 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 [#SendableClosureCaptures]
 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
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/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 [#SendableClosureCaptures]
 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 [#SendableClosureCaptures]
 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
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[2020/2168] Compiling PackageGraph ResolvedPackagesStore.swift
[2021/2168] Compiling PackageGraph Version+Extensions.swift
[2022/2168] Compiling PackageGraph VersionSetSpecifier.swift
[2029/2169] Wrapping AST for PackageCollections for debugging
/host/spi-builder-workspace/Sources/PackageGraph/PackageContainer.swift:211:23: warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
209 |     ) {
210 |         queue.asyncResult(completion) {
211 |             try await self.getContainer(
    |                       `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
212 |                 for: package,
213 |                 updateStrategy: updateStrategy,
/host/spi-builder-workspace/Sources/PackageGraph/PackageContainer.swift:203:10: warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
201 | public extension PackageContainerProvider {
202 |     @available(*, noasync, message: "Use the async alternative")
203 |     func getContainer(
    |          `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
204 |         for package: PackageReference,
205 |         updateStrategy: ContainerUpdateStrategy,
/host/spi-builder-workspace/Sources/PackageGraph/PackageContainer.swift:211:23: warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
209 |     ) {
210 |         queue.asyncResult(completion) {
211 |             try await self.getContainer(
    |                       `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
212 |                 for: package,
213 |                 updateStrategy: updateStrategy,
/host/spi-builder-workspace/Sources/PackageGraph/PackageContainer.swift:203:10: warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
201 | public extension PackageContainerProvider {
202 |     @available(*, noasync, message: "Use the async alternative")
203 |     func getContainer(
    |          `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
204 |         for package: PackageReference,
205 |         updateStrategy: ContainerUpdateStrategy,
/host/spi-builder-workspace/Sources/PackageGraph/PackageContainer.swift:211:23: warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
209 |     ) {
210 |         queue.asyncResult(completion) {
211 |             try await self.getContainer(
    |                       `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
212 |                 for: package,
213 |                 updateStrategy: updateStrategy,
/host/spi-builder-workspace/Sources/PackageGraph/PackageContainer.swift:203:10: warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
201 | public extension PackageContainerProvider {
202 |     @available(*, noasync, message: "Use the async alternative")
203 |     func getContainer(
    |          `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
204 |         for package: PackageReference,
205 |         updateStrategy: ContainerUpdateStrategy,
/host/spi-builder-workspace/Sources/PackageGraph/PackageContainer.swift:211:23: warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
209 |     ) {
210 |         queue.asyncResult(completion) {
211 |             try await self.getContainer(
    |                       `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
212 |                 for: package,
213 |                 updateStrategy: updateStrategy,
/host/spi-builder-workspace/Sources/PackageGraph/PackageContainer.swift:203:10: warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
201 | public extension PackageContainerProvider {
202 |     @available(*, noasync, message: "Use the async alternative")
203 |     func getContainer(
    |          `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
204 |         for package: PackageReference,
205 |         updateStrategy: ContainerUpdateStrategy,
[2035/2170] Wrapping AST for PackageGraph for debugging
[2037/2192] Compiling SPMBuildCore PluginScriptRunner.swift
[2038/2192] Compiling SPMBuildCore ResolvedPackage+Extensions.swift
[2039/2192] Compiling SPMBuildCore Triple+Extensions.swift
[2040/2194] Compiling SPMBuildCore BuildParameters+Output.swift
[2041/2194] Compiling SPMBuildCore BuildParameters+Testing.swift
[2042/2194] Compiling SPMBuildCore BuildParameters.swift
[2043/2194] Compiling SPMBuildCore BuildSystem.swift
[2044/2194] Compiling SPMBuildCore BuiltTestProduct.swift
[2045/2194] Compiling SPMBuildCore CommandPluginResult.swift
[2046/2194] Compiling SPMBuildCore DefaultPluginScriptRunner.swift
[2047/2194] Compiling SPMBuildCore PluginContextSerializer.swift
[2048/2194] Compiling SPMBuildCore PluginInvocation.swift
[2049/2194] Compiling SPMBuildCore PluginMessages.swift
[2050/2195] Compiling PackageRegistry ChecksumTOFU.swift
[2052/2195] Compiling PackageRegistry RegistryClient.swift
[2053/2196] Wrapping AST for SWBProtocol for debugging
[2054/2201] Wrapping AST for PackageRegistry for debugging
[2056/2212] Compiling SWBProjectModel IDEPIFGenerating.swift
[2057/2212] Compiling SWBProjectModel IDEPIFObject.swift
[2058/2212] Compiling SWBProjectModel IDEPIFGUID.swift
[2059/2212] Compiling SPMBuildCore XCFrameworkMetadata.swift
[2060/2212] Compiling SPMBuildCore XcodeProjectRepresentation.swift
[2061/2212] Compiling SWBServiceCore ServiceEntryPoint.swift
[2062/2212] Emitting module SWBServiceCore
[2063/2212] Compiling SWBServiceCore Service.swift
[2064/2212] Compiling SWBServiceCore Request.swift
[2065/2212] Emitting module SWBProjectModel
[2066/2212] Emitting module SPMBuildCore
[2067/2212] Compiling SWBProjectModel IDEPIFObjectInfo.swift
[2068/2212] Compiling SWBProjectModel IDEPIFSerializer.swift
[2069/2212] Compiling SWBServiceCore ServiceExtensionPoint.swift
[2070/2212] Compiling SWBServiceCore ServiceHostConnection.swift
[2072/2213] Compiling SPMBuildCore BuildParameters+Driver.swift
[2073/2213] Compiling SPMBuildCore BuildParameters+Linking.swift
[2075/2213] Compiling SPMBuildCore BinaryTarget+Extensions.swift
[2076/2213] Compiling SPMBuildCore BuildParameters+APIDigester.swift
[2077/2213] Compiling SPMBuildCore BuildParameters+Debugging.swift
[2081/2213] Compiling PackageMetadata PackageMetadata.swift
[2082/2213] Emitting module PackageMetadata
[2082/2213] Wrapping AST for SWBServiceCore for debugging
[2084/2362] Wrapping AST for PackageMetadata for debugging
[2086/2362] Compiling SWBProjectModel IDESwiftPackageExtensions.swift
[2087/2362] Compiling SWBProjectModel PIFGenerationModel.swift
[2088/2363] Wrapping AST for SWBProjectModel for debugging
[2090/2363] Compiling SWBCore ActivityReporting.swift
[2091/2363] Compiling SWBCore DeviceFamily.swift
[2092/2363] Compiling SWBCore InterfaceBuilderShared.swift
[2093/2363] Compiling SWBCore BuildFileFilteringContext.swift
[2094/2363] Compiling SWBCore BuildFileResolution.swift
[2095/2363] Compiling SWBCore BuildParameters.swift
[2096/2363] Compiling SWBCore BuildRequest.swift
[2097/2363] Compiling SWBCore BuildRequestContext.swift
[2098/2363] Compiling SWBCore BuildRuleAction.swift
[2099/2363] Compiling SWBCore BuildRuleCondition.swift
[2100/2363] Compiling SWBCore BuildRuleSet.swift
[2101/2363] Compiling SWBCore CapturedBuildInfo.swift
[2102/2363] Compiling SWBCore ModuleVerifierFilenameMap.swift
[2103/2363] Compiling SWBCore ModuleVerifierFramework.swift
[2104/2363] Compiling SWBCore ModuleVerifierHeader.swift
[2105/2363] Compiling SWBCore ModuleVerifierLanguage.swift
[2106/2363] Compiling SWBCore ModuleVerifierModuleMap.swift
[2107/2363] Compiling SWBCore ModuleVerifierModuleMapFileVerifier.swift
[2108/2363] Compiling SWBCore ModuleVerifierTarget.swift
[2109/2363] Compiling SWBCore ClangModuleVerifierOutputParser.swift
[2110/2363] Compiling SWBCore ClangSerializedDiagnostics.swift
[2120/2383] Compiling SWBCore Libclang.swift
[2121/2383] Compiling SWBCore LinkageDependencyResolver.swift
[2122/2383] Compiling SWBCore MacCatalystInfo.swift
[2123/2383] Compiling SWBCore MacroConfigFileLoader.swift
[2124/2383] Compiling SWBCore MacroEvaluationExtensions.swift
[2125/2383] Compiling SWBCore MacroExpressionSourceExtensions.swift
[2126/2383] Compiling SWBCore OnDemandResources.swift
[2127/2383] Compiling SWBCore OptimizationRemarks.swift
[2128/2383] Compiling SWBCore PlannedNode.swift
[2132/2383] Compiling SWBCore FileSystemSignatureBasedCache.swift
[2133/2383] Compiling SWBCore FileToBuild.swift
[2134/2383] Compiling SWBCore LibSwiftDriver.swift
[2135/2383] Compiling SWBCore PlannedBuild.swift
[2136/2383] Compiling SWBCore ArrayExtensions.swift
[2137/2383] Compiling SWBCore CStringArray.swift
[2138/2383] Compiling SWBCore PlannedTask.swift
[2139/2383] Compiling SWBCore PlannedTaskAction.swift
[2140/2383] Compiling SWBCore PlatformEnvironment.swift
[2141/2383] Compiling SWBCore PlatformFiltering.swift
[2142/2383] Compiling SWBCore PlatformRegistry.swift
[2143/2383] Compiling SWBCore Process.swift
[2144/2383] Compiling SWBCore CommandLineArgument.swift
[2145/2383] Compiling SWBCore ConfiguredTarget.swift
[2146/2383] Compiling SWBCore Core.swift
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:579:38: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
577 |                         throw DefaultPluginScriptRunnerError.invocationEndedBySignal(
578 |                             signal: process.terminationStatus,
579 |                             command: command,
    |                                      `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
580 |                             output: String(decoding: stderrData, as: UTF8.self))
581 |                     }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:580:54: warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
578 |                             signal: process.terminationStatus,
579 |                             command: command,
580 |                             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 [#SendableClosureCaptures]
581 |                     }
582 |                     // Otherwise return the termination satatus.
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:594:108: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
592 |         catch {
593 |             callbackQueue.async {
594 |                 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 [#SendableClosureCaptures]
595 |             }
596 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:579:38: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
577 |                         throw DefaultPluginScriptRunnerError.invocationEndedBySignal(
578 |                             signal: process.terminationStatus,
579 |                             command: command,
    |                                      `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
580 |                             output: String(decoding: stderrData, as: UTF8.self))
581 |                     }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:580:54: warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
578 |                             signal: process.terminationStatus,
579 |                             command: command,
580 |                             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 [#SendableClosureCaptures]
581 |                     }
582 |                     // Otherwise return the termination satatus.
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:594:108: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
592 |         catch {
593 |             callbackQueue.async {
594 |                 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 [#SendableClosureCaptures]
595 |             }
596 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:579:38: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
577 |                         throw DefaultPluginScriptRunnerError.invocationEndedBySignal(
578 |                             signal: process.terminationStatus,
579 |                             command: command,
    |                                      `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
580 |                             output: String(decoding: stderrData, as: UTF8.self))
581 |                     }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:580:54: warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
578 |                             signal: process.terminationStatus,
579 |                             command: command,
580 |                             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 [#SendableClosureCaptures]
581 |                     }
582 |                     // Otherwise return the termination satatus.
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:594:108: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
592 |         catch {
593 |             callbackQueue.async {
594 |                 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 [#SendableClosureCaptures]
595 |             }
596 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[2156/2388] Wrapping AST for SPMBuildCore for debugging
[2158/2444] Emitting module Build
[2159/2446] Compiling XCBuildSupport XCBuildOutputParser.swift
[2160/2446] Compiling XCBuildSupport XcodeBuildSystem.swift
/host/spi-builder-workspace/Sources/XCBuildSupport/XcodeBuildSystem.swift:137:29: warning: 'init(contentsOfFile:)' is deprecated [#DeprecatedDeclaration]
135 |             }
136 |
137 |             let swiftSpec = NSArray(contentsOfFile: swiftSpecPath.pathString)
    |                             `- warning: 'init(contentsOfFile:)' is deprecated [#DeprecatedDeclaration]
138 |             let compilerSpec = swiftSpec?.compactMap { $0 as? NSDictionary }.first {
139 |                 if let identifier = $0["Identifier"] as? String {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2161/2446] Compiling XCBuildSupport XCBuildMessage.swift
[2162/2446] Compiling XCBuildSupport XCBuildDelegate.swift
[2163/2446] Compiling Build ClangModuleBuildDescription.swift
[2164/2446] Compiling Build ModuleBuildDescription.swift
[2165/2446] Compiling Build PluginBuildDescription.swift
[2166/2446] Compiling Build SwiftCompilerOutputParser.swift
[2167/2446] Compiling Build TestObservation.swift
[2168/2446] Emitting module SWBCore
[2169/2446] Compiling Build LLBuildManifestBuilder.swift
[2170/2446] Compiling Build BuildOperation.swift
[2171/2446] Compiling Build BuildPlan+Clang.swift
[2172/2446] Compiling Build BuildPlan+Product.swift
[2173/2450] Compiling Build LLBuildCommands.swift
/host/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:462:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
460 |                 // will be very slow), so they can later be passed to the advice provider in case of failure.
461 |                 if output.utf8.count < 1024 * 10 {
462 |                     let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
    |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
463 |                     for match in regex.matchGroups(in: output) {
464 |                         self.errorMessagesByTarget[parser.targetName] = (
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2174/2450] Compiling Build LLBuildDescription.swift
/host/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:462:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
460 |                 // will be very slow), so they can later be passed to the advice provider in case of failure.
461 |                 if output.utf8.count < 1024 * 10 {
462 |                     let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
    |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
463 |                     for match in regex.matchGroups(in: output) {
464 |                         self.errorMessagesByTarget[parser.targetName] = (
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2175/2450] Compiling Build LLBuildProgressTracker.swift
/host/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:462:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
460 |                 // will be very slow), so they can later be passed to the advice provider in case of failure.
461 |                 if output.utf8.count < 1024 * 10 {
462 |                     let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
    |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
463 |                     for match in regex.matchGroups(in: output) {
464 |                         self.errorMessagesByTarget[parser.targetName] = (
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2176/2450] Emitting module Workspace
[2177/2450] Compiling Build SwiftModuleBuildDescription.swift
[2178/2450] Compiling Build LLBuildManifestBuilder+Clang.swift
[2179/2450] Compiling Build LLBuildManifestBuilder+Product.swift
[2180/2450] Compiling Build LLBuildManifestBuilder+Resources.swift
[2181/2450] Compiling Build LLBuildManifestBuilder+Swift.swift
[2185/2450] Compiling Build ProductBuildDescription.swift
[2186/2450] Compiling Build ResolvedModule+BuildDescription.swift
[2187/2450] Compiling XCBuildSupport PIFBuilder.swift
[2188/2450] Compiling Build BuildPlan+Test.swift
[2189/2450] Compiling Build BuildPlan.swift
[2190/2450] Compiling Build ClangSupport.swift
[2193/2450] Compiling Build BuildPlan+Swift.swift
/host/spi-builder-workspace/Sources/Build/BuildManifest/LLBuildManifestBuilder+Swift.swift:86:65: warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 87 |             fileSystem: self.fileSystem,
 88 |             executor: executor,
/host/spi-builder-workspace/Sources/Build/BuildOperation.swift:874:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 872 |
 873 |         // Check for cases involving modules that cannot be found.
 874 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 875 |             // A target is importing a module that can't be found.  We take a look at the build plan and see if can offer any advice.
 876 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Build/BuildManifest/LLBuildManifestBuilder+Swift.swift:86:65: warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 87 |             fileSystem: self.fileSystem,
 88 |             executor: executor,
/host/spi-builder-workspace/Sources/Build/BuildOperation.swift:874:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 872 |
 873 |         // Check for cases involving modules that cannot be found.
 874 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 875 |             // A target is importing a module that can't be found.  We take a look at the build plan and see if can offer any advice.
 876 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Build/BuildManifest/LLBuildManifestBuilder+Swift.swift:86:65: warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 87 |             fileSystem: self.fileSystem,
 88 |             executor: executor,
/host/spi-builder-workspace/Sources/Build/BuildOperation.swift:874:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 872 |
 873 |         // Check for cases involving modules that cannot be found.
 874 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 875 |             // A target is importing a module that can't be found.  We take a look at the build plan and see if can offer any advice.
 876 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2203/2451] Wrapping AST for Build for debugging
[2205/2454] Compiling Workspace Workspace+PackageContainer.swift
[2206/2454] Compiling Workspace Workspace+Prebuilts.swift
[2207/2454] Compiling Workspace Workspace+Registry.swift
[2208/2454] Compiling Workspace Workspace+ResolvedPackages.swift
[2209/2454] Emitting module XCBuildSupport
[2210/2454] Compiling XCBuildSupport PIF.swift
[2211/2455] Compiling SourceKitLSPAPI PluginTargetBuildDescription.swift
/host/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
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 [#DeprecatedDeclaration]
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2216/2455] Wrapping AST for XCBuildSupport for debugging
[2218/2455] Compiling SourceKitLSPAPI BuildDescription.swift
[2219/2455] Emitting module SourceKitLSPAPI
[2220/2456] Wrapping AST for SourceKitLSPAPI for debugging
[2227/2456] Compiling Workspace Workspace+Dependencies.swift
[2228/2456] Compiling Workspace Workspace+Editing.swift
[2229/2456] Compiling Workspace Workspace+Manifests.swift
[2239/2456] Compiling Workspace Workspace+Signing.swift
[2240/2456] Compiling Workspace Workspace+SourceControl.swift
[2241/2456] Compiling Workspace Workspace+State.swift
[2242/2456] Compiling Workspace Workspace.swift
[2255/2457] Wrapping AST for Workspace for debugging
[2256/2457] Write Objects.LinkFileList
[2259/2497] Emitting module swift_build_prebuilts
[2260/2497] Compiling package_info example.swift
[2261/2497] Emitting module package_info
[2262/2498] Wrapping AST for package-info for debugging
[2263/2498] Write Objects.LinkFileList
[2265/2498] Compiling SWBCore ToolchainRegistryExtension.swift
[2266/2498] Compiling SWBCore ProcessExecutionCache.swift
[2267/2498] Compiling SWBCore ProductTypeIdentifier.swift
[2268/2498] Compiling SWBCore BuildConfiguration.swift
[2269/2498] Compiling SWBCore BuildFile.swift
[2270/2498] Compiling SWBCore BuildPhase.swift
[2271/2498] Compiling SWBCore BuildRule.swift
[2272/2498] Compiling SWBCore DependencyInfoFormat.swift
[2274/2499] Compiling SWBCore ModulesVerifierTool.swift
[2275/2499] Compiling SWBCore ObjectLibraryAssembler.swift
[2276/2499] Compiling SWBCore PLUtilTool.swift
[2277/2499] Compiling SWBCore PrelinkedObjectLink.swift
[2278/2499] Compiling SWBCore ProcessSDKImports.swift
[2279/2499] Compiling SWBCore ProcessXCFrameworkLibrary.swift
[2280/2499] Compiling SWBCore ProductPackaging.swift
[2281/2499] Compiling SWBCore RegisterExecutionPolicyException.swift
[2282/2499] Compiling SWBCore SetAttributes.swift
[2283/2499] Compiling SWBCore ShellScriptTool.swift
[2284/2499] Compiling SWBCore SignatureCollection.swift
[2285/2499] Compiling SWBCore StripTool.swift
[2286/2499] Compiling SWBCore SwiftABICheckerTool.swift
[2287/2499] Compiling SWBCore SwiftABIGenerationTool.swift
[2288/2499] Compiling SWBCore SwiftCompiler.swift
[2289/2499] Compiling SWBCore SwiftHeaderTool.swift
[2290/2499] Compiling SWBCore SwiftStdLibTool.swift
[2291/2499] Compiling SWBCore SwiftSymbolExtractor.swift
[2292/2499] Compiling SWBCore SymlinkTool.swift
[2293/2499] Compiling SWBCore TAPISymbolExtractor.swift
[2294/2499] Compiling SWBCore TAPITools.swift
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)
[2294/2551] Linking libSwiftPMDataModel.so
[2294/2551] Linking package-info
/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
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildDB-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZZNSt8__detail18__to_chars_10_implImEEvPcjT_E8__digits' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZGVZN4llvm7hashing6detail18get_execution_seedEvE4seed' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVNSt13__future_base7_ResultIN7llbuild5basic13ProcessResultEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVSt23_Sp_counted_ptr_inplaceINSt13__future_base13_State_baseV2ESaIS1_ELN9__gnu_cxx12_Lock_policyE2EE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTISt19_Sp_make_shared_tag' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVNSt13__future_base13_State_baseV2E' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVNSt13__future_base13_State_baseV2E' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVNSt13__future_base7_ResultIN7llbuild5basic13ProcessResultEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt15__exception_ptr12__dest_thunkISt12future_errorEEvPv' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt13__future_base13_State_baseV29_M_do_setEPSt8functionIFSt10unique_ptrINS_12_Result_baseENS3_8_DeleterEEvEEPb' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt17_Function_handlerIFSt10unique_ptrINSt13__future_base12_Result_baseENS2_8_DeleterEEvENS1_13_State_baseV27_SetterIN7llbuild5basic13ProcessResultERKSA_EEE9_M_invokeERKSt9_Any_data' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZZNSt9once_flag18_Prepare_executionC1IZSt9call_onceIMNSt13__future_base13_State_baseV2EFvPSt8functionIFSt10unique_ptrINS3_12_Result_baseENS7_8_DeleterEEvEEPbEJPS4_SC_SD_EEvRS_OT_DpOT0_EUlvE_EERSI_ENUlvE_8__invokeEv' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTINSt13__future_base13_State_baseV27_SetterIN7llbuild5basic13ProcessResultERKS4_EE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/libllbuild.build/BuildSystem-C-API.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTINSt13__future_base13_State_baseV27_SetterIN7llbuild5basic13ProcessResultERKS4_EE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/ExecutionQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5basic14ExecutionQueueE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/ExecutionQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVNSt13__future_base7_ResultIN7llbuild5basic13ProcessStatusEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/ExecutionQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVNSt13__future_base7_ResultIN7llbuild5basic13ProcessStatusEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/ExecutionQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt17_Function_handlerIFSt10unique_ptrINSt13__future_base12_Result_baseENS2_8_DeleterEEvENS1_13_State_baseV27_SetterIN7llbuild5basic13ProcessStatusERKSA_EEE9_M_invokeERKSt9_Any_data' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/ExecutionQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTINSt13__future_base13_State_baseV27_SetterIN7llbuild5basic13ProcessStatusERKS4_EE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/ExecutionQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTINSt13__future_base13_State_baseV27_SetterIN7llbuild5basic13ProcessStatusERKS4_EE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/FileInfo.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5basic21FileChecksumHasherMD5E' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/FileInfo.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5basic18FileChecksumHasherE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/FileSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5basic24DeviceAgnosticFileSystemE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/FileSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5basic22ChecksumOnlyFileSystemE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/FileSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVSt23_Sp_counted_ptr_inplaceIN4llvm3sys2fs6detail12DirIterStateESaIS4_ELN9__gnu_cxx12_Lock_policyE2EE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/FileSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTISt19_Sp_make_shared_tag' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/FileSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5basic24DeviceAgnosticFileSystemE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/FileSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5basic22ChecksumOnlyFileSystemE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTV20SerialExecutionQueue' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTV20SerialExecutionQueue' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN20SerialExecutionQueue16killAfterTimeoutEv' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt17_Function_handlerIFvvEZN20SerialExecutionQueue6addJobEN7llbuild5basic8QueueJobENS3_16QueueJobPriorityEEUlvE_E9_M_invokeERKSt9_Any_data' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN20SerialExecutionQueue6addJobEN7llbuild5basic8QueueJobENS1_16QueueJobPriorityEEUlvE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN20SerialExecutionQueue13SerialContextE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN20SerialExecutionQueue6addJobEN7llbuild5basic8QueueJobENS1_16QueueJobPriorityEEUlvE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVNSt6thread11_State_implINS_8_InvokerISt5tupleIJM20SerialExecutionQueueFvvEPS3_EEEEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt17_Function_handlerIFvOSt8functionIFvvEEEZN20SerialExecutionQueue14executeProcessEPN7llbuild5basic15QueueJobContextEN4llvm8ArrayRefINSA_9StringRefEEENSB_ISt4pairISC_SC_EEENS7_17ProcessAttributesENSA_8OptionalIS0_IFvNS7_13ProcessResultEEEEEPNS7_15ProcessDelegateEEUlS3_E_E9_M_invokeERKSt9_Any_dataS3_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt17_Function_handlerIFvN7llbuild5basic13ProcessResultEEZN20SerialExecutionQueue14executeProcessEPNS1_15QueueJobContextEN4llvm8ArrayRefINS7_9StringRefEEENS8_ISt4pairIS9_S9_EEENS1_17ProcessAttributesENS7_8OptionalISt8functionIS3_EEEPNS1_15ProcessDelegateEEUlS2_E_E9_M_invokeERKSt9_Any_dataOS2_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN20SerialExecutionQueue14executeProcessEPN7llbuild5basic15QueueJobContextEN4llvm8ArrayRefINS4_9StringRefEEENS5_ISt4pairIS6_S6_EEENS1_17ProcessAttributesENS4_8OptionalISt8functionIFvNS1_13ProcessResultEEEEEPNS1_15ProcessDelegateEEUlOSD_IFvvEEE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN20SerialExecutionQueue14executeProcessEPN7llbuild5basic15QueueJobContextEN4llvm8ArrayRefINS4_9StringRefEEENS5_ISt4pairIS6_S6_EEENS1_17ProcessAttributesENS4_8OptionalISt8functionIFvNS1_13ProcessResultEEEEEPNS1_15ProcessDelegateEEUlOSD_IFvvEEE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN20SerialExecutionQueue14executeProcessEPN7llbuild5basic15QueueJobContextEN4llvm8ArrayRefINS4_9StringRefEEENS5_ISt4pairIS6_S6_EEENS1_17ProcessAttributesENS4_8OptionalISt8functionIFvNS1_13ProcessResultEEEEEPNS1_15ProcessDelegateEEUlSE_E_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/SerialQueue.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN20SerialExecutionQueue14executeProcessEPN7llbuild5basic15QueueJobContextEN4llvm8ArrayRefINS4_9StringRefEEENS5_ISt4pairIS6_S6_EEENS1_17ProcessAttributesENS4_8OptionalISt8functionIFvNS1_13ProcessResultEEEEEPNS1_15ProcessDelegateEEUlSE_E_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/Subprocess.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVSt23_Sp_counted_ptr_inplaceI17ManagedDescriptorSaIS0_ELN9__gnu_cxx12_Lock_policyE2EE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBasic.build/Subprocess.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTISt19_Sp_make_shared_tag' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBuildSystem.build/BuildDescription.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild11buildsystem4NodeE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBuildSystem.build/BuildNode.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild11buildsystem9BuildNodeE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBuildSystem.build/BuildSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild11buildsystem19BuildSystemDelegateE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBuildSystem.build/BuildSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN7llbuild11buildsystem27BuildSystemExtensionManagerD2Ev' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBuildSystem.build/BuildSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZSt3hexRSt8ios_base' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBuildSystem.build/BuildSystem.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZSt3hexRSt8ios_base' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBuildSystem.build/BuildSystemFrontend.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild11buildsystem27BuildSystemFrontendDelegateE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBuildSystem.build/BuildSystemFrontend.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm13format_objectIJiPKcEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildBuildSystem.build/ShellCommand.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild11buildsystem12ShellCommandE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildCore.build/BuildEngine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild4core4RuleE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildCore.build/SQLiteBuildDB.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZZNSt8__detail18__to_chars_10_implIjEEvPcjT_E8__digits' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5ninja14ManifestLoader18ManifestLoaderImplE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5ninja14ManifestLoader18ManifestLoaderImplE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt17_Function_handlerIFvPvN4llvm9StringRefERNS1_11raw_ostreamEEZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl10evalStringERKNS7_5TokenERKNS7_5ScopeERNS1_15SmallVectorImplIcEEEUlS0_S2_S4_E_E9_M_invokeERKSt9_Any_dataOS0_OS2_S4_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt17_Function_handlerIFvRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl10evalStringERKNSA_5TokenERKNSA_5ScopeERN4llvm15SmallVectorImplIcEEEUlS7_E_E9_M_invokeERKSt9_Any_dataS7_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl10evalStringERKNS0_5TokenERKNS0_5ScopeERN4llvm15SmallVectorImplIcEEEUlPvNS9_9StringRefERNS9_11raw_ostreamEE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl10evalStringERKNS0_5TokenERKNS0_5ScopeERN4llvm15SmallVectorImplIcEEEUlPvNS9_9StringRefERNS9_11raw_ostreamEE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl10evalStringERKNS0_5TokenERKNS0_5ScopeERN4llvm15SmallVectorImplIcEEEUlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl10evalStringERKNS0_5TokenERKNS0_5ScopeERN4llvm15SmallVectorImplIcEEEUlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5ninja7CommandE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN7llbuild5ninja7CommandE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl20lookupBuildParameterEPvN4llvm9StringRefERNS4_11raw_ostreamE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt17_Function_handlerIFvPvN4llvm9StringRefERNS1_11raw_ostreamEEPS5_E9_M_invokeERKSt9_Any_dataOS0_OS2_S4_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZNSt17_Function_handlerIFvRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl24lookupBuildParameterImplEPNSC_13LookupContextEN4llvm9StringRefERNSF_11raw_ostreamEEUlS7_E_E9_M_invokeERKSt9_Any_dataS7_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIPFvPvN4llvm9StringRefERNS0_11raw_ostreamEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIPFvPvN4llvm9StringRefERNS0_11raw_ostreamEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl24lookupBuildParameterImplEPNS2_13LookupContextEN4llvm9StringRefERNS5_11raw_ostreamEEUlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llbuildNinja.build/ManifestLoader.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTIZN7llbuild5ninja14ManifestLoader18ManifestLoaderImpl24lookupBuildParameterImplEPNS2_13LookupContextEN4llvm9StringRefERNS5_11raw_ostreamEEUlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE_' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Chrono.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm13format_objectIJlEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm2cl18TopLevelSubCommandE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl12basic_parserIbEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl17basic_parser_implE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl12basic_parserINS0_13boolOrDefaultEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl12basic_parserIiEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl12basic_parserIjEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl12basic_parserIyEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl12basic_parserIdEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl12basic_parserIfEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl12basic_parserINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl12basic_parserIcEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm2cl15GeneralCategoryE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm14object_creatorINS_2cl10SubCommandEE4callEv' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl3optIbLb0ENS0_6parserIbEEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl3optIbLb0ENS0_6parserIbEEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl6OptionE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm2cl14AllSubCommandsE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueCopyINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl11OptionValueIjEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueBaseIjLb0EEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueCopyIjEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl18GenericOptionValueE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl11OptionValueIiEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueBaseIiLb0EEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueCopyIiEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl11OptionValueIcEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueBaseIcLb0EEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueCopyIcEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl11OptionValueIbEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueBaseIbLb0EEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueCopyIbEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl6OptionE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl6parserIbEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl18GenericOptionValueE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl11OptionValueIbEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueBaseIbLb0EEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/CommandLine.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm2cl15OptionValueCopyIbEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Debug.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm14object_creatorISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EEE4callEv' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm11StringErrorE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm7ECErrorE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm9ErrorInfoINS_11StringErrorENS_13ErrorInfoBaseEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm9ErrorList2IDE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm11StringErrorE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm11StringError2IDE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm9ErrorInfoINS_7ECErrorENS_13ErrorInfoBaseEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm7ECError2IDE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm13ErrorInfoBaseE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm7ECError2IDE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm13ErrorInfoBase2IDE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm9ErrorList2IDE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm9ErrorListE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm9ErrorInfoINS_9ErrorListENS_13ErrorInfoBaseEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm7ECErrorE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm9ErrorInfoINS_7ECErrorENS_13ErrorInfoBaseEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm13ErrorInfoBaseE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Error.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm11StringError2IDE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/FoldingSet.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm14FoldingSetBaseE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/FormatVariadic.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm12function_refIFbcEE11callback_fnIZNKS_9StringRef11find_if_notES2_mEUlcE_EEblc' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Hashing.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm7hashing6detail19fixed_seed_overrideE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/MD5.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm13format_objectIJhEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/ManagedStatic.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZZNSt9once_flag18_Prepare_executionC1IZSt9call_onceIRFvvEJEEvRS_OT_DpOT0_EUlvE_EERS6_ENUlvE_8__invokeEv' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/MemoryBuffer.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm23SmallVectorMemoryBufferE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/MemoryBuffer.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm24WriteThroughMemoryBufferE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/MemoryBuffer.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm12MemoryBufferE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/MemoryBuffer.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm20WritableMemoryBufferE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/NativeFormatting.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm13format_objectIJdEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Options.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm14object_creatorINS_14OptionRegistryEE4callEv' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Process.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm14object_creatorINS_3sys10SmartMutexILb0EEEE4callEv' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Signals.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm14object_creatorINS_3sys10SmartMutexILb1EEEE4callEv' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Signals.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm13format_objectIJiEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Signals.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm13format_objectIJimEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/Signals.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm13format_objectIJjEEE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/YAMLParser.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZN4llvm4yaml7Scanner12skip_ns_charEPKc' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/YAMLParser.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm4yaml8NullNodeE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/YAMLParser.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm4yaml12KeyValueNodeE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/YAMLParser.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm4yaml9AliasNodeE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/YAMLParser.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm4yaml12SequenceNodeE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/YAMLParser.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm4yaml11MappingNodeE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/YAMLParser.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm4yaml10ScalarNodeE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/YAMLParser.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm4yaml15BlockScalarNodeE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/circular_raw_ostream.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm20circular_raw_ostreamE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/raw_ostream.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm11raw_ostreamE' which may overflow at runtime; recompile with -fPIC
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/llvmSupport.build/raw_ostream.cpp.o: requires dynamic R_X86_64_PC32 reloc against '_ZTVN4llvm16raw_null_ostreamE' which may overflow at runtime; recompile with -fPIC
[2294/2551] Linking libSwiftPM.so
BUILD FAILURE 6.2 linux