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 (b60528), with Swift 6.2 for Linux on 14 Dec 2025 16:21:34 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

[1436/1766] Wrapping AST for PackageFingerprint for debugging
[1437/1766] Compiling rsa_pss.cc
[1438/1766] Wrapping AST for SwiftDriver for debugging
[1439/1769] Compiling i2d_pr.cc
[1441/1769] 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:505: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 |
    :
503 |     public struct RepositoryHandle: Sendable {
504 |         /// The manager this repository is owned by.
505 |         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
506 |
507 |         /// The repository specifier.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1442/1769] 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) {
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:112:85: warning: mutation of captured var 'stdoutBytes' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 110 |                 // Capture stdout and stderr from the Git subprocess invocation, but also pass along stderr to the
 111 |                 // handler. We count on it being line-buffered.
 112 |                 let outputHandler = AsyncProcess.OutputRedirection.stream(stdout: { stdoutBytes += $0 }, stderr: {
     |                                                                                     `- warning: mutation of captured var 'stdoutBytes' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 113 |                     stderrBytes += $0
 114 |                     gitFetchStatusFilter($0, progress: progress)
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:113:21: warning: mutation of captured var 'stderrBytes' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 111 |                 // handler. We count on it being line-buffered.
 112 |                 let outputHandler = AsyncProcess.OutputRedirection.stream(stdout: { stdoutBytes += $0 }, stderr: {
 113 |                     stderrBytes += $0
     |                     `- warning: mutation of captured var 'stderrBytes' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 114 |                     gitFetchStatusFilter($0, progress: progress)
 115 |                 })
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:450:85: warning: mutation of captured var 'stdoutBytes' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 448 |                 // Capture stdout and stderr from the Git subprocess invocation, but also pass along stderr to the
 449 |                 // handler. We count on it being line-buffered.
 450 |                 let outputHandler = AsyncProcess.OutputRedirection.stream(stdout: { stdoutBytes += $0 }, stderr: {
     |                                                                                     `- warning: mutation of captured var 'stdoutBytes' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 451 |                     stderrBytes += $0
 452 |                     gitFetchStatusFilter($0, progress: progress)
/host/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:451:21: warning: mutation of captured var 'stderrBytes' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 449 |                 // handler. We count on it being line-buffered.
 450 |                 let outputHandler = AsyncProcess.OutputRedirection.stream(stdout: { stdoutBytes += $0 }, stderr: {
 451 |                     stderrBytes += $0
     |                     `- warning: mutation of captured var 'stderrBytes' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 452 |                     gitFetchStatusFilter($0, progress: progress)
 453 |                 })
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1444/1770] 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>
[1444/1770] Compiling name_print.cc
[1445/1770] Compiling by_file.cc
[1447/1770] Emitting module DriverSupport
[1448/1770] 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>
[1448/1771] Wrapping AST for SourceControl for debugging
[1449/1778] Compiling by_dir.cc
[1451/1786] Compiling policy.cc
[1452/1786] Wrapping AST for DriverSupport for debugging
[1453/1786] Compiling asn1_gen.cc
[1454/1786] Compiling algorithm.cc
[1455/1786] Compiling voprf.cc
[1456/1786] Compiling a_verify.cc
[1457/1786] Compiling a_digest.cc
[1458/1786] Compiling a_sign.cc
[1460/1786] 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>
[1460/1787] Compiling trust_token.cc
[1462/1787] Compiling PackageLoading Platform.swift
[1463/1787] Compiling PackageLoading RegistryReleaseMetadataSerialization.swift
[1463/1787] Compiling thread_win.cc
[1464/1787] Compiling thread.cc
[1465/1787] Compiling thread_none.cc
[1466/1787] Compiling pmbtoken.cc
[1467/1787] Compiling thread_pthread.cc
[1469/1787] 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>
[1470/1787] 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>
[1470/1787] Compiling stack.cc
[1471/1787] Compiling wots.cc
[1472/1787] Compiling thash.cc
[1473/1787] Compiling fors.cc
[1474/1787] Compiling merkle.cc
[1475/1787] Compiling slhdsa.cc
[1477/1787] 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>
[1477/1787] Compiling sha512.cc
[1478/1787] Compiling sha256.cc
[1479/1787] Compiling siphash.cc
[1481/1787] Compiling PackageLoading ContextModel.swift
[1482/1787] Compiling PackageLoading Diagnostics.swift
[1483/1787] Compiling PackageLoading ManifestJSONParser.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>
[1484/1787] Compiling PackageLoading ManifestLoader+Validation.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>
[1484/1787] Compiling sha1.cc
[1485/1787] Compiling rsa_print.cc
[1486/1787] Compiling rsa_extra.cc
[1487/1787] Compiling rc4.cc
[1488/1787] Compiling refcount.cc
[1489/1787] Compiling rsa_crypt.cc
[1490/1787] Compiling rsa_asn1.cc
[1491/1787] Compiling windows.cc
[1492/1787] Compiling urandom.cc
[1493/1787] Compiling trusty.cc
[1495/1787] Compiling PackageLoading ManifestLoader.swift
[1496/1787] Compiling PackageLoading ManifestSignatureParser.swift
[1496/1787] Compiling rand_extra.cc
[1497/1787] Compiling getentropy.cc
[1498/1787] Compiling ios.cc
[1499/1787] Compiling fork_detect.cc
[1500/1787] Compiling passive.cc
[1501/1787] Compiling deterministic.cc
[1502/1787] Compiling forkunsafe.cc
[1512/1787] Compiling poly1305_arm_asm.S
[1513/1787] Compiling poly1305_vec.cc
[1514/1787] Compiling pool.cc
[1515/1787] Compiling poly1305.cc
[1516/1787] Compiling poly1305_arm.cc
[1517/1787] Compiling pkcs8_x509.cc
[1518/1787] Compiling pkcs7.cc
[1519/1787] Compiling pkcs8.cc
[1528/1787] Compiling p5_pbev2.cc
[1529/1787] Compiling pkcs7_x509.cc
[1530/1787] Compiling pem_xaux.cc
[1531/1787] Compiling pem_x509.cc
[1532/1787] Compiling pem_pkey.cc
[1533/1787] Compiling pem_pk8.cc
[1535/1787] Compiling PackageLoading PackageDescriptionSerialization.swift
[1536/1787] Compiling PackageLoading PkgConfig.swift
[1537/1787] Compiling PackageLoading ModuleMapGenerator.swift
[1538/1787] Compiling PackageLoading PackageBuilder.swift
[1538/1788] Compiling pem_info.cc
[1540/1788] Compiling pem_oth.cc
[1541/1788] Compiling pem_lib.cc
[1541/1788] Compiling obj_xref.cc
[1543/1788] Compiling pem_all.cc
[1544/1789] Compiling obj.cc
[1545/1793] Compiling mldsa.cc
[1546/1813] Compiling md5.cc
[1547/1816] Compiling mlkem.cc
[1548/1816] Wrapping AST for PackageLoading for debugging
[1549/1816] Compiling md4.cc
[1550/1816] Compiling mem.cc
[1551/1816] Compiling fips_shared_support.cc
[1552/1816] Compiling poly_rq_mul.S
[1553/1816] Compiling kyber.cc
[1554/1816] Compiling lhash.cc
[1555/1816] Compiling hpke.cc
[1557/1816] Compiling PackageGraph PackageGraphRoot.swift
[1558/1816] Compiling PackageGraph PackageModel+Extensions.swift
[1559/1816] Compiling PackageGraph PackageRequirement.swift
[1560/1816] Compiling PackageGraph DependencyResolutionNode.swift
[1560/1819] Compiling ex_data.cc
[1562/1819] Compiling PackageGraph DependencyResolverBinding.swift
[1563/1819] Compiling PackageGraph DependencyResolverDelegate.swift
[1564/1819] Compiling PackageGraph DependencyResolverError.swift
[1565/1819] Compiling PackageGraph PlatformVersionProvider.swift
[1566/1819] Emitting module PackageGraph
[1567/1819] Compiling PackageGraph BoundVersion.swift
[1568/1819] Compiling PackageGraph DependencyMirrors.swift
[1569/1819] Compiling PackageGraph Diagnostics.swift
[1570/1819] Compiling PackageGraph GraphLoadingNode.swift
[1570/1819] Compiling hrss.cc
[1571/1819] Compiling scrypt.cc
[1572/1819] Compiling sign.cc
[1573/1819] Compiling print.cc
[1574/1819] Compiling pbkdf.cc
[1575/1819] Compiling p_x25519.cc
[1577/1819] Compiling PackageGraph ResolvedModule.swift
[1578/1819] Compiling PackageGraph ResolvedPackage.swift
[1579/1819] Compiling PackageGraph ResolvedProduct.swift
[1579/1819] Compiling p_x25519_asn1.cc
[1580/1819] Compiling p_rsa.cc
[1581/1819] Compiling p_rsa_asn1.cc
[1582/1819] Compiling p_ed25519_asn1.cc
[1583/1819] Compiling p_hkdf.cc
[1584/1819] Compiling p_ed25519.cc
[1585/1819] Compiling p_dh.cc
[1586/1819] Compiling p_ec_asn1.cc
[1587/1819] Compiling p_ec.cc
[1588/1819] Compiling p_dh_asn1.cc
[1589/1819] Compiling p_dsa_asn1.cc
[1590/1819] Compiling evp.cc
[1592/1819] Compiling PackageGraph Assignment.swift
[1593/1819] Compiling PackageGraph ContainerProvider.swift
[1594/1819] Compiling PackageGraph DiagnosticReportBuilder.swift
[1595/1819] Compiling PackageGraph Incompatibility.swift
[1596/1819] Compiling PackageGraph PartialSolution.swift
[1597/1819] Compiling PackageGraph PubGrubDependencyResolver.swift
[1598/1819] Compiling PackageGraph PubGrubPackageContainer.swift
[1599/1819] Compiling PackageGraph Term.swift
[1599/1819] Compiling err.cc
[1600/1819] Compiling evp_ctx.cc
[1601/1819] Compiling evp_asn1.cc
[1602/1819] Compiling engine.cc
[1604/1819] Compiling PackageGraph ResolvedPackagesStore.swift
[1605/1819] Compiling PackageGraph Version+Extensions.swift
[1606/1819] Compiling PackageGraph VersionSetSpecifier.swift
[1606/1819] Compiling ecdh_extra.cc
[1607/1819] Compiling hash_to_curve.cc
[1608/1819] Compiling ecdsa_asn1.cc
[1609/1819] Compiling ec_derive.cc
[1611/1819] Compiling PackageGraph ModuleAliasTracker.swift
[1612/1819] Compiling PackageGraph ModulesGraph+Loading.swift
[1613/1819] Compiling PackageGraph ModulesGraph.swift
[1614/1819] Compiling PackageGraph PackageContainer.swift
[1614/1820] Compiling ec_asn1.cc
[1616/1820] Compiling dsa_asn1.cc
[1617/1820] Compiling dsa.cc
[1618/1820] Compiling bcm.cc
[1619/1820] Compiling digest_extra.cc
[1620/1820] Wrapping AST for PackageGraph for debugging
[1621/1839] Compiling params.cc
[1622/1842] Compiling x25519-asm-arm.S
[1623/1842] Compiling dh_asn1.cc
[1624/1842] Compiling des.cc
[1625/1842] Compiling spake25519.cc
[1626/1842] Compiling cpu_intel.cc
[1627/1842] Compiling cpu_arm_linux.cc
[1629/1842] Compiling SPMBuildCore BuiltTestProduct.swift
[1630/1842] Compiling SPMBuildCore CommandPluginResult.swift
[1631/1842] Compiling SPMBuildCore MainAttrDetection.swift
[1632/1842] Compiling SPMBuildCore BuildSystemCommand.swift
[1633/1842] Compiling SPMBuildCore BuildSystemDelegate.swift
[1634/1842] Compiling SPMBuildCore DiagnosticsCapturingBuildSystemDelegate.swift
[1634/1845] Compiling crypto.cc
[1635/1845] Compiling curve25519.cc
[1636/1845] Compiling cpu_arm_freebsd.cc
[1637/1845] Compiling cpu_aarch64_win.cc
[1638/1845] Compiling cpu_aarch64_sysreg.cc
[1639/1845] Compiling cpu_aarch64_openbsd.cc
[1640/1845] Compiling cpu_aarch64_linux.cc
[1642/1845] Compiling SPMBuildCore Triple+Extensions.swift
[1643/1845] Compiling SPMBuildCore XCFrameworkMetadata.swift
[1644/1845] Compiling SPMBuildCore XcodeProjectRepresentation.swift
[1644/1845] Compiling curve25519_64_adx.cc
[1645/1845] Compiling cpu_aarch64_fuchsia.cc
[1647/1845] Compiling SPMBuildCore BuildParameters+Testing.swift
[1648/1845] Compiling SPMBuildCore BuildParameters.swift
[1649/1845] Compiling SPMBuildCore BuildSystem.swift
[1650/1845] Compiling SPMBuildCore BinaryTarget+Extensions.swift
[1651/1845] Compiling SPMBuildCore BuildParameters+APIDigester.swift
[1652/1845] Compiling SPMBuildCore BuildParameters+Debugging.swift
[1653/1845] Compiling SPMBuildCore BuildParameters+Driver.swift
[1654/1845] Compiling SPMBuildCore BuildParameters+Linking.swift
[1655/1845] Compiling SPMBuildCore BuildParameters+Output.swift
[1655/1845] Compiling tls_cbc.cc
[1656/1845] Compiling cpu_aarch64_apple.cc
[1657/1845] Compiling conf.cc
[1659/1845] Emitting module SPMBuildCore
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:371:34: warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
369 |                 // Save the persisted compilation state for possible reuse next time.
370 |                 let compilationState = PersistedCompilationState(
371 |                     commandLine: commandLine,
    |                                  `- warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
372 |                     environment: toolchain.swiftCompilerEnvironment.cachable,
373 |                     inputHash: compilerInputHash,
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:387:34: warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
385 |                 let result = PluginCompilationResult(
386 |                     succeeded: compilationState.succeeded,
387 |                     commandLine: commandLine,
    |                                  `- warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
388 |                     executableFile: execFilePath,
389 |                     diagnosticsFile: diagFilePath,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1659/1845] Compiling e_des.cc
[1660/1845] Compiling e_null.cc
[1661/1845] Compiling e_rc2.cc
[1662/1845] Compiling e_rc4.cc
[1663/1845] Compiling e_tls.cc
[1664/1845] Compiling e_chacha20poly1305.cc
[1665/1845] Compiling derive_key.cc
[1666/1845] Compiling e_aesctrhmac.cc
[1667/1845] Compiling chacha.cc
[1668/1845] Compiling cipher_extra.cc
[1669/1845] Compiling e_aesgcmsiv.cc
[1670/1845] Compiling unicode.cc
[1671/1845] Compiling cbs.cc
[1672/1845] Compiling ber.cc
[1673/1845] Compiling cbb.cc
[1674/1845] Compiling buf.cc
[1675/1845] Compiling asn1_compat.cc
[1676/1845] Compiling bn_asn1.cc
[1677/1845] Compiling convert.cc
[1678/1845] Compiling printf.cc
[1679/1845] Compiling pair.cc
[1680/1845] Compiling blake2.cc
[1681/1845] Compiling hexdump.cc
[1682/1845] Compiling errno.cc
[1683/1845] Compiling fd.cc
[1683/1845] Compiling file.cc
[1685/1845] Compiling bio_mem.cc
[1687/1845] Compiling SPMBuildCore DefaultPluginScriptRunner.swift
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:371:34: warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
369 |                 // Save the persisted compilation state for possible reuse next time.
370 |                 let compilationState = PersistedCompilationState(
371 |                     commandLine: commandLine,
    |                                  `- warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
372 |                     environment: toolchain.swiftCompilerEnvironment.cachable,
373 |                     inputHash: compilerInputHash,
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:387:34: warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
385 |                 let result = PluginCompilationResult(
386 |                     succeeded: compilationState.succeeded,
387 |                     commandLine: commandLine,
    |                                  `- warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
388 |                     executableFile: execFilePath,
389 |                     diagnosticsFile: diagFilePath,
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:590:38: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
588 |                         throw DefaultPluginScriptRunnerError.invocationEndedBySignal(
589 |                             signal: process.terminationStatus,
590 |                             command: command,
    |                                      `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
591 |                             output: String(decoding: stderrData, as: UTF8.self))
592 |                     }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:591:54: warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
589 |                             signal: process.terminationStatus,
590 |                             command: command,
591 |                             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]
592 |                     }
593 |                     // Otherwise return the termination satatus.
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:605:108: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
603 |         catch {
604 |             callbackQueue.async {
605 |                 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]
606 |             }
607 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1688/1845] Compiling SPMBuildCore PluginContextSerializer.swift
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:371:34: warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
369 |                 // Save the persisted compilation state for possible reuse next time.
370 |                 let compilationState = PersistedCompilationState(
371 |                     commandLine: commandLine,
    |                                  `- warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
372 |                     environment: toolchain.swiftCompilerEnvironment.cachable,
373 |                     inputHash: compilerInputHash,
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:387:34: warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
385 |                 let result = PluginCompilationResult(
386 |                     succeeded: compilationState.succeeded,
387 |                     commandLine: commandLine,
    |                                  `- warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
388 |                     executableFile: execFilePath,
389 |                     diagnosticsFile: diagFilePath,
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:590:38: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
588 |                         throw DefaultPluginScriptRunnerError.invocationEndedBySignal(
589 |                             signal: process.terminationStatus,
590 |                             command: command,
    |                                      `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
591 |                             output: String(decoding: stderrData, as: UTF8.self))
592 |                     }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:591:54: warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
589 |                             signal: process.terminationStatus,
590 |                             command: command,
591 |                             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]
592 |                     }
593 |                     // Otherwise return the termination satatus.
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:605:108: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
603 |         catch {
604 |             callbackQueue.async {
605 |                 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]
606 |             }
607 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1689/1845] Compiling SPMBuildCore PluginInvocation.swift
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:371:34: warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
369 |                 // Save the persisted compilation state for possible reuse next time.
370 |                 let compilationState = PersistedCompilationState(
371 |                     commandLine: commandLine,
    |                                  `- warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
372 |                     environment: toolchain.swiftCompilerEnvironment.cachable,
373 |                     inputHash: compilerInputHash,
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:387:34: warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
385 |                 let result = PluginCompilationResult(
386 |                     succeeded: compilationState.succeeded,
387 |                     commandLine: commandLine,
    |                                  `- warning: reference to captured var 'commandLine' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
388 |                     executableFile: execFilePath,
389 |                     diagnosticsFile: diagFilePath,
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:590:38: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
588 |                         throw DefaultPluginScriptRunnerError.invocationEndedBySignal(
589 |                             signal: process.terminationStatus,
590 |                             command: command,
    |                                      `- warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
591 |                             output: String(decoding: stderrData, as: UTF8.self))
592 |                     }
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:591:54: warning: reference to captured var 'stderrData' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
589 |                             signal: process.terminationStatus,
590 |                             command: command,
591 |                             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]
592 |                     }
593 |                     // Otherwise return the termination satatus.
/host/spi-builder-workspace/Sources/SPMBuildCore/Plugins/DefaultPluginScriptRunner.swift:605:108: warning: reference to captured var 'command' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
603 |         catch {
604 |             callbackQueue.async {
605 |                 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]
606 |             }
607 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1689/1845] Compiling bio.cc
[1690/1845] Compiling tasn_fre.cc
[1691/1845] Compiling base64.cc
[1692/1845] Compiling tasn_typ.cc
[1693/1845] Compiling tasn_utl.cc
[1694/1845] Compiling tasn_new.cc
[1695/1845] Compiling posix_time.cc
[1696/1845] Compiling f_string.cc
[1697/1845] Compiling tasn_dec.cc
[1697/1845] Compiling tasn_enc.cc
[1699/1845] Compiling f_int.cc
[1700/1845] Compiling asn_pack.cc
[1701/1845] Compiling asn1_par.cc
[1702/1845] Compiling a_type.cc
[1703/1845] Compiling a_utctm.cc
[1704/1845] Compiling asn1_lib.cc
[1705/1845] Compiling a_time.cc
[1706/1845] Compiling a_strnid.cc
[1707/1845] Compiling a_strex.cc
[1707/1845] Write sources
[1709/1845] Compiling a_octet.cc
[1710/1845] Wrapping AST for BinarySymbols for debugging
[1711/1845] Compiling a_mbstr.cc
[1712/1845] Write sources
[1713/1845] Wrapping AST for Basics for debugging
[1714/1845] Write Objects.LinkFileList
[1715/1852] Compiling a_i2d_fp.cc
[1716/1855] Compiling a_object.cc
[1717/1867] Compiling a_int.cc
[1718/1869] Wrapping AST for AppleProductTypes for debugging
[1719/1869] Write Objects.LinkFileList
[1721/1877] Emitting module ArgumentParserToolInfo
[1722/1877] Compiling BuildServerProtocol BuildTarget.swift
[1723/1877] Compiling BuildServerProtocol MessageType.swift
[1724/1877] Compiling BuildServerProtocol MillisecondsSince1970Date.swift
[1724/1877] Linking libAppleProductTypes.so
[1726/1878] Linking dummy-swiftc
[1727/1881] Wrapping AST for SPMBuildCore for debugging
[1729/1898] Emitting module BuildServerProtocol
[1730/1899] Compiling ArgumentParserToolInfo ToolInfo.swift
[1732/1911] Compiling Build LLBuildManifestBuilder+Clang.swift
[1733/1911] Compiling Build LLBuildManifestBuilder+Product.swift
[1734/1911] Compiling Build LLBuildManifestBuilder+Resources.swift
[1734/1911] Wrapping AST for ArgumentParserToolInfo for debugging
[1736/1949] Compiling XCBuildSupport XCBuildOutputParser.swift
[1737/1949] Compiling ArgumentParser Argument.swift
[1738/1949] Compiling ArgumentParser ArgumentHelp.swift
[1739/1949] Compiling ArgumentParser ArgumentDefinition.swift
[1740/1949] Compiling ArgumentParser ArgumentSet.swift
[1741/1949] Compiling ArgumentParser CommandParser.swift
[1742/1949] Compiling ArgumentParser InputKey.swift
[1743/1949] Compiling ArgumentParser InputOrigin.swift
[1744/1949] Compiling ArgumentParser ExpressibleByArgument.swift
[1745/1949] Compiling ArgumentParser ParsableArguments.swift
[1746/1949] Compiling CryptoBoringWrapper RandomBytes.swift
[1747/1949] Compiling XCBuildSupport XCBuildDelegate.swift
[1748/1949] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[1749/1949] Compiling ArgumentParser OptionGroup.swift
[1750/1949] Compiling ArgumentParser AsyncParsableCommand.swift
[1751/1949] Compiling ArgumentParser CommandConfiguration.swift
[1752/1949] Compiling ArgumentParser CommandGroup.swift
[1753/1949] Compiling ArgumentParser EnumerableFlag.swift
[1759/1954] Compiling ArgumentParser BashCompletionsGenerator.swift
[1760/1954] Compiling ArgumentParser CompletionsGenerator.swift
[1761/1954] Compiling ArgumentParser FishCompletionsGenerator.swift
[1762/1954] Compiling ArgumentParser ZshCompletionsGenerator.swift
[1763/1956] Compiling CryptoBoringWrapper EllipticCurve.swift
[1764/1956] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[1765/1956] Emitting module CryptoBoringWrapper
[1766/1956] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[1767/1956] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[1768/1956] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[1772/1957] Wrapping AST for CryptoBoringWrapper for debugging
[1774/2011] Compiling Crypto AES-GCM.swift
[1775/2011] Compiling Crypto AES-GCM_boring.swift
[1776/2011] Compiling Crypto ChaChaPoly_boring.swift
[1777/2011] Compiling Crypto ChaChaPoly.swift
[1778/2011] Compiling Crypto Cipher.swift
[1779/2011] Compiling Crypto Nonces.swift
[1780/2029] 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 {
/host/spi-builder-workspace/Sources/XCBuildSupport/XcodeBuildSystem.swift:209:13: warning: mutation of captured var 'hasStdout' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
207 |         var stderrBuffer: [UInt8] = []
208 |         let redirection: AsyncProcess.OutputRedirection = .stream(stdout: { bytes in
209 |             hasStdout = hasStdout || !bytes.isEmpty
    |             `- warning: mutation of captured var 'hasStdout' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
210 |             delegate.parse(bytes: bytes)
211 |
/host/spi-builder-workspace/Sources/XCBuildSupport/XcodeBuildSystem.swift:209:25: warning: reference to captured var 'hasStdout' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
207 |         var stderrBuffer: [UInt8] = []
208 |         let redirection: AsyncProcess.OutputRedirection = .stream(stdout: { bytes in
209 |             hasStdout = hasStdout || !bytes.isEmpty
    |                         `- warning: reference to captured var 'hasStdout' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
210 |             delegate.parse(bytes: bytes)
211 |
/host/spi-builder-workspace/Sources/XCBuildSupport/XcodeBuildSystem.swift:213:17: warning: mutation of captured var 'stdoutBuffer' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
211 |
212 |             if !delegate.didParseAnyOutput {
213 |                 stdoutBuffer.append(contentsOf: bytes)
    |                 `- warning: mutation of captured var 'stdoutBuffer' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
214 |             }
215 |         }, stderr: { bytes in
/host/spi-builder-workspace/Sources/XCBuildSupport/XcodeBuildSystem.swift:216:13: warning: mutation of captured var 'stderrBuffer' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
214 |             }
215 |         }, stderr: { bytes in
216 |             stderrBuffer.append(contentsOf: bytes)
    |             `- warning: mutation of captured var 'stderrBuffer' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
217 |         })
218 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1781/2029] Wrapping AST for BuildServerProtocol for debugging
[1783/2040] Compiling Crypto SEC1PrivateKey.swift
[1784/2040] Compiling Crypto SubjectPublicKeyInfo.swift
[1785/2040] Compiling XCBuildSupport XCBuildMessage.swift
[1786/2040] Compiling LanguageServerProtocolTransport RequestAndReply.swift
[1787/2041] Compiling LanguageServerProtocolTransport BuildServerMessageDependencyTracker.swift
[1788/2041] Compiling LanguageServerProtocolTransport DisableSigpipe.swift
[1789/2041] Compiling LanguageServerProtocolTransport DocumentURI+CustomLogStringConvertible.swift
[1790/2041] Compiling LanguageServerProtocolTransport JSONRPCConnection.swift
[1791/2041] Compiling LanguageServerProtocolTransport LocalConnection.swift
[1792/2041] Compiling LanguageServerProtocolTransport LoggableMessageTypes.swift
[1796/2041] Emitting module Build
[1800/2041] Compiling LanguageServerProtocolTransport ResponseError+Init.swift
[1801/2041] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[1802/2041] Compiling Crypto HPKE-KEM.swift
[1803/2041] Compiling Crypto HPKE-Errors.swift
[1804/2041] Compiling Crypto HPKE.swift
[1805/2041] Compiling Crypto HPKE-Context.swift
[1806/2041] Emitting module ArgumentParser
[1807/2041] Compiling Crypto ASN1Integer.swift
[1808/2041] Compiling Crypto ASN1Null.swift
[1809/2041] Compiling Crypto ASN1OctetString.swift
[1810/2041] Compiling Crypto ASN1Strings.swift
[1811/2041] Compiling Crypto ArraySliceBigint.swift
[1812/2041] Compiling Crypto GeneralizedTime.swift
[1815/2041] Compiling LanguageServerProtocolTransport MessageCoding.swift
[1816/2041] Compiling LanguageServerProtocolTransport MessageSplitting.swift
[1817/2041] Compiling LanguageServerProtocolTransport QueueBasedMessageHandler.swift
[1818/2041] Compiling Crypto ECDSASignature.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>
[1819/2041] Compiling Crypto PEMDocument.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>
[1820/2041] Compiling Crypto PKCS8PrivateKey.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>
[1821/2041] Compiling XCBuildSupport PIFBuilder.swift
[1822/2041] Compiling Crypto HashFunctions.swift
[1823/2041] Compiling Crypto HashFunctions_SHA2.swift
[1824/2041] Compiling Crypto HPKE-AEAD.swift
[1825/2041] Compiling Crypto HPKE-Ciphersuite.swift
[1826/2041] Compiling Crypto HPKE-KDF.swift
[1827/2041] Compiling Crypto HPKE-KexKeyDerivation.swift
[1828/2041] Compiling Crypto HPKE-LabeledExtract.swift
[1829/2041] Compiling Crypto HPKE-Utils.swift
[1830/2041] Compiling Crypto DHKEM.swift
[1831/2041] Compiling Crypto HPKE-KEM-Curve25519.swift
[1834/2041] Compiling Crypto ObjectIdentifier.swift
[1839/2041] Emitting module LanguageServerProtocolTransport
[1841/2041] Compiling Crypto CryptoKitErrors.swift
[1842/2041] Compiling Crypto Digest_boring.swift
[1843/2041] Compiling Crypto Digest.swift
[1844/2041] Compiling Crypto Digests.swift
[1852/2043] Compiling Crypto ASN1Boolean.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:906:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 904 |
 905 |         // Check for cases involving modules that cannot be found.
 906 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 907 |             // 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.
 908 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1853/2043] Compiling Crypto ASN1Identifier.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:906:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 904 |
 905 |         // Check for cases involving modules that cannot be found.
 906 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 907 |             // 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.
 908 |
[#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:906:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 904 |
 905 |         // Check for cases involving modules that cannot be found.
 906 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration]
 907 |             // 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.
 908 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1855/2043] Compiling Crypto SymmetricKeys.swift
[1856/2043] Compiling Crypto HMAC.swift
[1857/2043] Compiling Crypto MACFunctions.swift
[1858/2043] Compiling Crypto MessageAuthenticationCode.swift
[1859/2043] Compiling Crypto AES.swift
[1860/2043] Compiling Crypto ECDSASignature_boring.swift
[1861/2043] Compiling Crypto ECDSA_boring.swift
[1862/2043] Compiling Crypto EdDSA_boring.swift
[1863/2043] Compiling Crypto ECDSA.swift
[1864/2043] Compiling Crypto Ed25519.swift
[1864/2053] Wrapping AST for LanguageServerProtocolTransport for debugging
[1866/2053] Wrapping AST for ArgumentParser for debugging
[1868/2053] Compiling XCBuildSupport PIF.swift
[1869/2053] Emitting module XCBuildSupport
[1880/2054] Compiling Crypto HKDF.swift
[1881/2054] Compiling Crypto AESWrap.swift
[1882/2054] Compiling Crypto AESWrap_boring.swift
[1883/2054] Compiling Crypto Ed25519_boring.swift
[1884/2054] Compiling Crypto NISTCurvesKeys_boring.swift
[1885/2054] Compiling Crypto X25519Keys_boring.swift
[1886/2054] Compiling Crypto Curve25519.swift
[1887/2054] Compiling Crypto Ed25519Keys.swift
[1888/2054] Compiling Crypto NISTCurvesKeys.swift
[1889/2054] Compiling Crypto X25519Keys.swift
[1890/2093] Wrapping AST for Build for debugging
[1891/2147] Wrapping AST for XCBuildSupport for debugging
[1893/2147] Compiling SourceKitLSPAPI PluginTargetBuildDescription.swift
[1894/2147] Compiling SWBUtil InterningArena.swift
[1895/2147] Compiling SWBUtil JSONEncoder.swift
[1896/2147] Compiling SWBUtil KeyValueStorage.swift
[1897/2147] Compiling SWBUtil LLVMTriple.swift
[1898/2147] Compiling SWBUtil LazyCache.swift
[1899/2147] Compiling SWBUtil Library.swift
[1900/2147] Compiling SWBUtil LineReader.swift
[1901/2147] Compiling SWBUtil Lock.swift
[1902/2147] Compiling SWBUtil MachO.swift
[1903/2147] Compiling SWBUtil Math.swift
[1904/2147] Compiling SWBUtil Debugger.swift
[1905/2147] Compiling SWBUtil DependencyInfo.swift
[1906/2147] Compiling SWBUtil DiagnosticsEngine.swift
[1907/2147] Compiling SWBUtil Dictionary.swift
[1908/2147] Compiling SWBUtil Diff.swift
[1909/2147] Compiling SWBUtil Dispatch+Async.swift
[1910/2147] Compiling SWBUtil Duration.swift
[1911/2147] Compiling SWBUtil ElapsedTimer.swift
[1912/2147] Compiling SWBUtil EmptyState.swift
[1913/2147] Compiling SWBUtil Int.swift
[1914/2147] Compiling SourceKitLSPAPI BuildDescription.swift
[1915/2147] Emitting module SourceKitLSPAPI
[1925/2148] Compiling SWBUtil Cache.swift
[1926/2148] Compiling SWBUtil Collection.swift
[1927/2148] Compiling SWBUtil CountedSet.swift
[1935/2148] Compiling SWBUtil Environment.swift
[1936/2148] Compiling SWBUtil EnvironmentHelpers.swift
[1937/2148] Compiling SWBUtil EnvironmentKey.swift
[1938/2148] Compiling SWBUtil Error.swift
[1939/2148] Compiling SWBUtil FSProxy.swift
[1940/2148] Compiling SWBUtil FileHandle+Async.swift
[1941/2148] Compiling SWBUtil FilesSignature.swift
[1942/2148] Compiling SWBUtil GraphAlgorithms.swift
[1943/2148] Compiling SWBUtil HashContext.swift
[1944/2148] Compiling SWBUtil Headermap.swift
[1945/2148] Emitting module Crypto
[1946/2148] Compiling SWBUtil HeavyCache.swift
[1947/2148] Compiling SWBUtil IO.swift
[1948/2148] Compiling SWBUtil IndexStore.swift
[1949/2148] Compiling SWBUtil Architecture.swift
[1950/2148] Compiling SWBUtil ArgumentSplitting.swift
[1951/2148] Compiling SWBUtil Array.swift
[1952/2148] Compiling SWBUtil ArtifactInfo.swift
[1953/2148] Compiling SWBUtil AsyncCache.swift
[1954/2148] Compiling SWBUtil AsyncFlatteningSequence.swift
[1955/2148] Compiling SWBUtil AsyncIteratorProtocol.swift
[1955/2148] Wrapping AST for SourceKitLSPAPI for debugging
[1957/2148] Compiling SWBUtil Promise.swift
[1958/2148] Compiling SWBUtil PropertyList.swift
[1959/2148] Compiling SWBUtil Queue.swift
[1960/2148] Compiling SWBUtil RateLimiter.swift
[1961/2148] Compiling SWBUtil Ref.swift
[1962/2148] Compiling SWBUtil RegEx.swift
[1963/2148] Compiling SWBUtil Registry.swift
[1964/2148] Compiling SWBUtil ResponseFiles.swift
[1965/2148] Compiling SWBUtil Result.swift
[1966/2149] Wrapping AST for Crypto for debugging
[1968/2200] Emitting module SWBUtil
[1969/2212] Compiling QueryEngine CacheKey.swift
[1970/2212] 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 |
[1971/2212] Compiling QueryEngine QueryEngine.swift
[1972/2212] Compiling QueryEngine FileCacheRecord.swift
[1973/2212] 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 |
[1975/2213] Compiling _CryptoExtras CryptoKitErrors_boring.swift
[1976/2213] Compiling _CryptoExtras DigestType.swift
[1977/2213] Compiling _CryptoExtras Error.swift
[1978/2213] Compiling _CryptoExtras I2OSP.swift
[1979/2213] Compiling _CryptoExtras IntegerEncoding.swift
[1980/2213] Compiling _CryptoExtras PEMDocument.swift
[1981/2219] Compiling _CryptoExtras ARCRequest.swift
[1982/2219] Compiling _CryptoExtras ARCResponse.swift
[1983/2219] Compiling _CryptoExtras ARCServer.swift
[1984/2219] Compiling _CryptoExtras ChaCha20CTR_boring.swift
[1985/2219] Compiling _CryptoExtras ChaCha20CTR.swift
[1986/2219] Compiling _CryptoExtras ECToolbox_boring.swift
[1987/2219] Compiling _CryptoExtras ECToolbox.swift
[1988/2219] Compiling _CryptoExtras AES_CBC.swift
[1989/2219] Compiling _CryptoExtras AES_CFB.swift
[1990/2219] Compiling _CryptoExtras AES_CTR.swift
[1991/2219] Compiling _CryptoExtras AES_GCM_SIV.swift
[1992/2219] Compiling _CryptoExtras Block Function.swift
[1993/2219] Compiling _CryptoExtras AES_CFB_boring.swift
[1994/2219] Compiling _CryptoExtras AES_CTR_boring.swift
[1995/2219] Compiling _CryptoExtras AES_GCM_SIV_boring.swift
[1996/2219] Compiling _CryptoExtras ARC+API.swift
[1997/2219] Compiling _CryptoExtras ARC.swift
[1998/2219] Compiling _CryptoExtras ARCCredential.swift
[1999/2219] Compiling _CryptoExtras ARCEncoding.swift
[2000/2219] Compiling _CryptoExtras ARCPrecredential.swift
[2001/2219] Compiling _CryptoExtras ARCPresentation.swift
[2002/2219] Emitting module _CryptoExtras
[2003/2219] Compiling _CryptoExtras PrettyBytes.swift
[2004/2219] Compiling _CryptoExtras SubjectPublicKeyInfo.swift
[2005/2219] Compiling _CryptoExtras DLEQ.swift
[2006/2219] Compiling _CryptoExtras Prover.swift
[2007/2219] Compiling _CryptoExtras Verifier.swift
[2008/2219] Compiling _CryptoExtras ZKPToolbox.swift
[2009/2219] Compiling _CryptoExtras VOPRFServer.swift
[2010/2219] Compiling _CryptoExtras RSA+BlindSigning.swift
[2011/2219] Compiling _CryptoExtras RSA.swift
[2012/2219] Compiling _CryptoExtras RSA_boring.swift
[2013/2219] Compiling _CryptoExtras RSA_security.swift
[2014/2219] Compiling _CryptoExtras BoringSSLHelpers.swift
[2015/2219] Compiling SWBUtil UniqueSerialization.swift
[2016/2219] Compiling SWBUtil UnsafeSendableDelayedInitializationWrapper.swift
[2017/2219] Compiling SWBUtil UserDefaults.swift
[2018/2219] Compiling SWBUtil VFS.swift
[2019/2219] Compiling SWBUtil Version.swift
[2020/2219] Compiling SWBUtil WaitCondition.swift
[2021/2219] Compiling SWBUtil WeakRef.swift
[2022/2219] Compiling SWBUtil Win32.swift
[2023/2219] Compiling SWBUtil Win32Error.swift
[2024/2219] Compiling SWBUtil XCBuildDataArchive.swift
[2025/2219] Compiling SWBUtil Xcode.swift
[2026/2219] Compiling SWBUtil fnmatch.swift
[2039/2219] Compiling SWBUtil Misc.swift
[2040/2219] Compiling _CryptoExtras Scrypt_boring.swift
[2041/2219] Compiling _CryptoExtras Scrypt.swift
[2042/2219] Compiling _CryptoExtras OPRF.swift
[2043/2219] Compiling _CryptoExtras OPRFClient.swift
[2044/2219] Compiling _CryptoExtras OPRFServer.swift
[2045/2219] Compiling _CryptoExtras VOPRF+API.swift
[2046/2219] Compiling _CryptoExtras VOPRFClient.swift
[2061/2219] Compiling _CryptoExtras HashToField.swift
[2062/2219] Compiling _CryptoExtras KDF.swift
[2063/2219] Compiling _CryptoExtras PBKDF2_boring.swift
[2064/2219] Compiling _CryptoExtras PBKDF2_commoncrypto.swift
[2065/2219] Compiling _CryptoExtras PBKDF2.swift
[2079/2219] Compiling SWBUtil PluginManager.swift
[2080/2219] Compiling SWBUtil PluginManagerCommon.swift
[2081/2219] Compiling SWBUtil Process+Async.swift
[2082/2219] Compiling SWBUtil Process.swift
[2083/2219] Compiling SWBUtil ProcessInfo.swift
[2093/2219] Compiling SWBUtil SWBDispatch.swift
[2094/2219] Compiling SWBUtil ScopedKeepAliveCache.swift
[2095/2219] Compiling SWBUtil Serialization.swift
[2096/2219] Compiling SWBUtil Signatures.swift
[2097/2219] Compiling SWBUtil Static.swift
[2098/2219] Compiling SWBUtil Statistics.swift
[2099/2219] Compiling SWBUtil String.swift
[2100/2219] Compiling SWBUtil SwiftDriverTripleExtensions.swift
[2101/2219] Compiling SWBUtil TAPIFileList.swift
[2102/2219] Compiling SWBUtil URL.swift
[2103/2219] Compiling SWBUtil MsgPack.swift
[2104/2219] Compiling SWBUtil MsgPackSerialization.swift
[2105/2219] Compiling SWBUtil NamedTemporaryDirectory.swift
[2106/2219] Compiling SWBUtil OSLog.swift
[2107/2219] Compiling SWBUtil Optional.swift
[2108/2219] Compiling SWBUtil OrderedDictionary.swift
[2109/2219] Compiling SWBUtil OrderedSet.swift
[2110/2219] Compiling SWBUtil OutputByteStream.swift
[2111/2219] Compiling SWBUtil POSIX.swift
[2112/2219] Compiling SWBUtil Pair.swift
[2113/2219] Compiling SWBUtil Path.swift
[2114/2219] Compiling SWBUtil PathWindows.swift
[2115/2219] Compiling SWBUtil PbxCp.swift
[2116/2222] Wrapping AST for SWBUtil for debugging
[2118/2276] Emitting module SWBCAS
[2119/2276] Compiling SWBCAS CASProtocol.swift
[2120/2276] Compiling SWBCAS Errors.swift
[2121/2276] Compiling SWBCAS plugin_api_t.swift
[2122/2276] Emitting module SWBLLBuild
[2123/2276] Compiling SWBLLBuild LowLevelBuildSystem.swift
[2124/2277] Wrapping AST for SWBLLBuild for debugging
[2126/2277] Compiling SWBCAS ToolchainCASPlugin.swift
[2127/2277] Compiling SWBCAS CASFSNode.swift
[2129/2278] Compiling SWBMacro MacroNamespace.swift
[2130/2278] Compiling SWBMacro MacroType.swift
[2130/2279] Wrapping AST for SWBCAS for debugging
[2132/2279] Compiling SWBProtocol DependencyInfo.swift
[2133/2279] Compiling SWBProtocol ImpartedBuildProperties.swift
[2134/2279] Compiling SWBProtocol MacroExpressionSource.swift
[2135/2279] Compiling SWBProtocol PIFObject.swift
[2136/2279] Compiling SWBProtocol PlatformFilter.swift
[2137/2279] Compiling SWBProtocol Project.swift
[2138/2279] Compiling SWBProtocol ProvisioningSourceData.swift
[2139/2279] Compiling SWBProtocol Reference.swift
[2140/2283] Compiling SWBProtocol BuildDescriptionMessages.swift
[2141/2283] Compiling SWBProtocol BuildOperationMessages.swift
[2142/2283] Compiling SWBProtocol BuildSettingsInfoMessageTypes.swift
[2143/2283] Compiling SWBProtocol ClientExchangeMessages.swift
[2144/2283] Compiling SWBMacro MacroEvaluationScope.swift
[2145/2283] Compiling SWBMacro MacroExpression.swift
[2146/2283] Compiling SWBProtocol DependencyClosureMessages.swift
[2147/2283] Compiling SWBProtocol DependencyGraphMessages.swift
[2148/2283] Compiling SWBProtocol LocalizationMessages.swift
[2149/2283] Compiling SWBProtocol MacroEvaluationMessages.swift
[2150/2283] Emitting module SWBMacro
[2151/2283] Compiling SWBProtocol AsyncSequence.swift
[2152/2283] Compiling SWBProtocol BuildAction.swift
[2153/2283] Compiling SWBMacro MacroValueAssignmentTable.swift
[2155/2284] Compiling SWBProtocol SourceTree.swift
[2156/2284] Compiling SWBProtocol Target.swift
[2157/2284] Compiling SWBProtocol TargetDependency.swift
[2158/2284] Compiling SWBProtocol Workspace.swift
[2158/2284] Wrapping AST for SWBMacro for debugging
[2160/2284] Compiling SWBProtocol BuildFile.swift
[2161/2284] Compiling SWBProtocol BuildPhase.swift
[2162/2284] Compiling SWBProtocol BuildRule.swift
[2163/2284] Compiling SWBProtocol CustomTask.swift
[2172/2287] Wrapping AST for SwiftSyntax for debugging
[2174/2344] Emitting module SwiftDiagnostics
[2175/2345] Compiling SwiftDiagnostics Note.swift
[2176/2345] Compiling SwiftBasicFormat Syntax+Extensions.swift
[2177/2345] Compiling SwiftDiagnostics Message.swift
[2178/2345] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[2179/2345] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[2180/2345] Emitting module SwiftBasicFormat
[2181/2345] Compiling SwiftParser Attributes.swift
[2182/2345] Compiling SwiftParser Availability.swift
[2183/2345] Compiling SwiftParser Nominals.swift
[2184/2345] Compiling SwiftParser Parameters.swift
[2185/2345] Compiling SwiftParser ParseSourceFile.swift
[2186/2345] Compiling SwiftParser Parser.swift
[2187/2345] Compiling SwiftParser Patterns.swift
[2188/2345] Compiling SwiftDiagnostics FixIt.swift
[2189/2345] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[2190/2345] Compiling SwiftBasicFormat Indenter.swift
[2191/2345] Compiling SwiftBasicFormat InferIndentation.swift
[2192/2345] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[2193/2345] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[2194/2345] Compiling SwiftParser CharacterInfo.swift
[2195/2345] Compiling SwiftParser CollectionNodes+Parsable.swift
[2196/2346] Wrapping AST for SwiftDiagnostics for debugging
[2198/2346] Compiling SwiftBasicFormat BasicFormat.swift
[2199/2347] Wrapping AST for SwiftBasicFormat for debugging
[2201/2347] Emitting module SWBProtocol
[2206/2347] Compiling SwiftParser CompilerFiles.swift
[2207/2347] Compiling SwiftParser Specifiers.swift
[2208/2347] Compiling SwiftParser Statements.swift
[2209/2347] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[2210/2347] Compiling SwiftParser StringLiterals.swift
[2211/2347] Compiling SwiftParser SwiftParserCompatibility.swift
[2212/2347] Compiling SwiftParser SwiftVersion.swift
[2213/2347] Compiling SwiftParser SyntaxUtils.swift
[2214/2347] Compiling SwiftParser TokenConsumer.swift
[2215/2347] Compiling SwiftParser TokenPrecedence.swift
[2216/2347] Compiling SwiftParser Lexeme.swift
[2217/2347] Compiling SwiftParser LexemeSequence.swift
[2218/2347] Compiling SwiftParser Lexer.swift
[2219/2348] Wrapping AST for _CryptoExtras for debugging
[2221/2440] Compiling X509 CommonName.swift
[2222/2440] Compiling X509 CountryName.swift
[2223/2440] Compiling X509 DNBuilder.swift
[2224/2440] Compiling X509 DomainComponent.swift
[2225/2440] Compiling X509 EmailAddress.swift
[2226/2440] Compiling X509 LocalityName.swift
[2227/2440] Compiling X509 AuthorityKeyIdentifier.swift
[2228/2440] Compiling X509 BasicConstraints.swift
[2229/2440] Compiling X509 ExtendedKeyUsage.swift
[2230/2440] Compiling X509 ExtensionIdentifiers.swift
[2231/2440] Compiling X509 KeyUsage.swift
[2232/2445] Compiling X509 CMSContentInfo.swift
[2233/2445] Compiling X509 CMSEncapsulatedContentInfo.swift
[2234/2445] Compiling X509 CMSIssuerAndSerialNumber.swift
[2235/2445] Compiling X509 CMSOperations.swift
[2236/2445] Compiling X509 CMSSignature.swift
[2237/2445] Compiling X509 CMSSignedData.swift
[2238/2445] Compiling X509 OrganizationName.swift
[2239/2445] Compiling X509 OrganizationalUnitName.swift
[2240/2445] Compiling X509 StateOrProvinceName.swift
[2241/2445] Compiling X509 StreetAddress.swift
[2242/2445] Compiling X509 Error.swift
[2243/2445] Compiling X509 AuthorityInformationAccess.swift
[2244/2445] Compiling X509 CMSSignerIdentifier.swift
[2245/2445] Compiling X509 CMSSignerInfo.swift
[2246/2445] Compiling X509 CMSVersion.swift
[2247/2445] Compiling X509 Curve25519+DER.swift
[2248/2445] Compiling X509 Digests.swift
[2249/2445] Compiling X509 DistinguishedName.swift
[2250/2445] Compiling X509 CSRAttribute.swift
[2251/2445] Compiling X509 CSRAttributes.swift
[2252/2445] Compiling X509 CSRVersion.swift
[2253/2445] Compiling X509 CertificateSigningRequest.swift
[2254/2445] Compiling X509 CertificationRequestInfo.swift
[2255/2445] Compiling X509 ExtensionRequest.swift
[2257/2445] Compiling X509 Certificate.swift
[2258/2445] Compiling X509 CertificatePrivateKey.swift
[2259/2445] Compiling X509 CertificatePublicKey.swift
[2260/2445] Compiling X509 CertificateSerialNumber.swift
[2261/2445] Compiling X509 CertificateVersion.swift
[2262/2445] Compiling X509 CMSAttribute.swift
[2266/2446] Wrapping AST for SWBProtocol for debugging
[2268/2460] Emitting module SwiftParser
[2275/2460] Compiling SWBProjectModel IDEPIFObject.swift
[2276/2460] Compiling SWBProjectModel IDEPIFGenerating.swift
[2277/2460] Compiling SWBProjectModel IDEPIFObjectInfo.swift
[2278/2460] Compiling SWBProjectModel IDEPIFGUID.swift
[2279/2460] Compiling SWBServiceCore ServiceEntryPoint.swift
[2280/2460] Emitting module SWBServiceCore
[2281/2460] Emitting module SWBProjectModel
[2282/2460] Compiling SWBServiceCore Request.swift
[2283/2460] Compiling SWBServiceCore Service.swift
[2284/2460] Compiling SWBServiceCore ServiceExtensionPoint.swift
[2285/2460] Compiling SWBServiceCore ServiceHostConnection.swift
[2286/2461] Wrapping AST for SWBServiceCore for debugging
[2288/2610] Compiling SWBCore FeatureAvailabilityExtension.swift
[2289/2610] Compiling SWBCore InputFileGroupingStrategyExtension.swift
[2290/2610] Compiling SWBCore PlatformInfoExtension.swift
[2291/2610] Compiling SWBCore SDKRegistryExtension.swift
[2292/2610] Compiling SWBCore SDKVariantInfoExtension.swift
[2293/2610] Compiling SWBCore SettingsBuilderExtension.swift
[2294/2610] Compiling SWBCore SpecificationsExtension.swift
[2295/2610] Compiling SWBCore ToolchainRegistryExtension.swift
[2296/2610] Compiling SWBCore ActivityReporting.swift
[2297/2610] Compiling SWBCore DeviceFamily.swift
[2298/2610] Compiling SWBCore InterfaceBuilderShared.swift
[2299/2610] Compiling SWBCore ArtifactBundleMetadata.swift
[2300/2610] Compiling SWBCore BuildDependencyInfo.swift
[2301/2623] Compiling SWBCore FileToBuild.swift
[2302/2623] Compiling SWBCore LibSwiftDriver.swift
[2303/2623] Compiling SWBCore PlannedBuild.swift
[2304/2623] Compiling SWBCore ArrayExtensions.swift
[2305/2623] Compiling SWBCore CStringArray.swift
[2306/2623] Compiling SWBCore Libclang.swift
[2307/2623] Compiling SWBCore LinkageDependencyResolver.swift
[2308/2623] Compiling SWBCore MacCatalystInfo.swift
[2309/2623] Compiling SWBCore MacroConfigFileLoader.swift
[2310/2623] Compiling SWBCore MacroEvaluationExtensions.swift
[2311/2623] Compiling SWBCore MacroExpressionSourceExtensions.swift
[2312/2623] Compiling SWBCore OnDemandResources.swift
[2313/2623] Compiling SWBCore OptimizationRemarks.swift
[2314/2623] Compiling SWBCore CommandLineArgument.swift
[2315/2623] Compiling SWBCore ConfiguredTarget.swift
[2316/2623] Compiling SWBCore Core.swift
[2317/2623] Compiling SWBCore CustomTaskTypeDescription.swift
[2318/2623] Compiling SWBCore Dependencies.swift
[2319/2623] Compiling SWBCore DependencyInfoEditPayload.swift
[2320/2623] Compiling SWBCore DependencyResolution.swift
[2321/2623] Compiling SWBCore DiagnosticSupport.swift
[2322/2623] Compiling SWBCore EnvironmentBindings.swift
[2323/2623] Compiling SWBCore ExecutableTask.swift
[2324/2623] Compiling SWBCore DeveloperDirectoryExtension.swift
[2325/2623] Compiling SWBCore DiagnosticToolingExtension.swift
[2326/2623] Compiling SWBCore EnvironmentExtension.swift
[2327/2623] Compiling SWBProjectModel IDEPIFSerializer.swift
[2328/2623] Compiling SWBProjectModel PIFGenerationModel.swift
[2329/2623] Compiling SWBProjectModel IDESwiftPackageExtensions.swift
[2331/2624] Compiling SWBCore PlannedNode.swift
[2332/2624] Compiling SWBCore PlannedTask.swift
[2333/2624] Compiling SWBCore PlannedTaskAction.swift
[2334/2624] Compiling SWBCore PlatformEnvironment.swift
[2335/2624] Compiling SWBCore PlatformFiltering.swift
[2336/2624] Compiling SWBCore PlatformRegistry.swift
[2337/2624] Compiling SWBCore Process.swift
[2338/2624] Compiling SWBCore SDKRegistry.swift
[2339/2624] Compiling SWBCore SWBFeatureFlag.swift
[2340/2624] Compiling SWBCore BuildRuleFile.swift
[2341/2624] Compiling SWBCore BuiltinMacros.swift
[2342/2624] Compiling SWBCore CASOptions.swift
[2343/2624] Compiling SWBCore RecursiveSearchPathResolver.swift
[2343/2624] Wrapping AST for SWBProjectModel for debugging
[2345/2624] Compiling SWBCore BuildFileFilteringContext.swift
[2346/2624] Compiling SWBCore BuildFileResolution.swift
[2347/2624] Compiling SWBCore BuildParameters.swift
[2348/2624] Compiling SWBCore BuildRequest.swift
[2349/2624] Compiling SWBCore BuildRequestContext.swift
[2350/2624] Compiling SWBCore BuildRuleAction.swift
[2351/2624] Compiling SWBCore BuildRuleCondition.swift
[2352/2624] Compiling SWBCore BuildRuleSet.swift
[2353/2624] Compiling SWBCore ModuleVerifierFilenameMap.swift
[2354/2624] Compiling SWBCore ModuleVerifierFramework.swift
[2355/2624] Compiling SWBCore ModuleVerifierHeader.swift
[2356/2624] Compiling SWBCore ModuleVerifierLanguage.swift
[2357/2624] Compiling SWBCore ModuleVerifierModuleMap.swift
[2358/2624] Compiling SWBCore ModuleVerifierModuleMapFileVerifier.swift
[2359/2624] Compiling SWBCore ModuleVerifierTarget.swift
[2360/2624] Compiling SWBCore ClangModuleVerifierOutputParser.swift
[2361/2624] Compiling SWBCore ClangSerializedDiagnostics.swift
[2362/2624] Compiling SWBCore ProcessExecutionCache.swift
[2363/2624] Compiling SWBCore ProductTypeIdentifier.swift
[2364/2624] Compiling SWBCore BuildConfiguration.swift
[2365/2624] Compiling SWBCore BuildFile.swift
[2366/2624] Compiling SWBCore BuildPhase.swift
[2367/2624] Compiling SWBCore BuildRule.swift
[2368/2624] Compiling SWBCore DependencyInfoFormat.swift
[2369/2624] Compiling SWBCore FilePathResolver.swift
[2370/2624] Compiling SWBCore FileTextEncoding.swift
[2371/2624] Compiling SWBCore ImpartedBuildProperties.swift
[2372/2624] Compiling SWBCore PIFLoader.swift
[2373/2624] Compiling SWBCore PlatformFilter.swift
[2374/2624] Compiling SWBCore Project.swift
[2375/2624] Compiling SWBCore ProjectModelItem.swift
[2376/2624] Compiling SWBCore Reference.swift
[2377/2624] Compiling SWBCore ReferenceLookupContext.swift
[2378/2624] Compiling SWBCore Target.swift
[2379/2624] Compiling SWBCore Workspace.swift
[2380/2624] Compiling SWBCore WorkspaceHeaderIndex.swift
[2381/2624] Compiling SWBCore Provisioning.swift
[2382/2624] Compiling SWBCore ProvisioningTaskInputs.swift
[2383/2624] Compiling SWBCore FileSystemSignatureBasedCache.swift
[2389/2625] Wrapping AST for SwiftParser for debugging
[2391/2627] Emitting module X509
[2392/2646] Compiling SwiftIDEUtils SwiftIDEUtilsCompatibility.swift
[2393/2647] Compiling SwiftIDEUtils Syntax+Classifications.swift
[2394/2647] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[2395/2648] Compiling SwiftIDEUtils Utils.swift
[2396/2648] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[2397/2648] Emitting module SwiftIDEUtils
[2398/2648] Compiling SwiftIDEUtils DeclNameLocation.swift
[2399/2648] Compiling SwiftIDEUtils SyntaxClassifier.swift
[2400/2648] Compiling SwiftIDEUtils SyntaxClassification.swift
[2401/2648] Compiling SwiftIDEUtils NameMatcher.swift
[2402/2648] Compiling SwiftIDEUtils FixItApplier.swift
[2404/2649] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[2405/2649] Compiling SwiftParserDiagnostics Utils.swift
[2406/2649] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[2407/2649] Compiling SwiftParserDiagnostics MissingNodesError.swift
[2408/2649] Compiling SwiftParserDiagnostics MissingTokenError.swift
[2409/2649] Emitting module SwiftParserDiagnostics
[2410/2649] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[2411/2649] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[2411/2649] Wrapping AST for SwiftIDEUtils for debugging
[2413/2651] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[2414/2651] Compiling SwiftParserDiagnostics PresenceUtils.swift
[2415/2651] Emitting module SwiftFixIt
[2416/2651] Compiling SwiftFixIt SwiftFixIt.swift
[2418/2652] Compiling X509 TrustRootLoading.swift
[2419/2652] Compiling X509 UnverifiedChain.swift
[2420/2652] Compiling X509 VerificationDiagnostic.swift
[2421/2652] Compiling X509 Verifier.swift
[2422/2652] Compiling X509 VerifierPolicy.swift
[2423/2652] Compiling X509 AlgorithmIdentifier.swift
[2424/2652] Compiling X509 ECDSASignature.swift
[2425/2652] Compiling X509 RSAPKCS1PublicKey.swift
[2426/2652] Compiling X509 SubjectPublicKeyInfo.swift
[2427/2652] Compiling X509 TBSCertificate.swift
[2428/2652] Compiling X509 Time.swift
[2429/2652] Compiling X509 TimeCalculations.swift
[2430/2652] Compiling X509 Validity.swift
[2431/2653] Wrapping AST for SwiftFixIt for debugging
[2433/2653] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[2434/2653] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[2435/2654] Wrapping AST for X509 for debugging
[2436/2671] Wrapping AST for SwiftParserDiagnostics for debugging
[2438/2678] Compiling PackageSigning SigningIdentity.swift
[2439/2685] Compiling PackageCollectionsSigning Utilities.swift
[2440/2687] Compiling PackageCollectionsSigning Base64URL.swift
[2441/2687] Compiling PackageSigning X509Extensions.swift
[2442/2687] Compiling PackageSigning FilePackageSigningEntityStorage.swift
[2443/2687] Emitting module PackageSigning
[2444/2687] Compiling PackageSigning VerifierPolicies.swift
[2445/2687] Compiling PackageSigning SigningEntity.swift
[2446/2687] Compiling PackageCollectionsSigning Signature.swift
[2447/2687] Compiling PackageCollectionsSigning PackageCollectionSigning.swift
[2448/2687] Compiling PackageSigning PackageSigningEntityStorage.swift
[2449/2687] Compiling SwiftSyntaxBuilder Indenter.swift
[2450/2687] Compiling SwiftSyntaxBuilder ListBuilder.swift
[2451/2687] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[2452/2687] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[2453/2688] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[2454/2688] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[2455/2688] Compiling PackageCollectionsSigning X509Extensions.swift
[2456/2688] Compiling PackageCollectionsSigning embedded_resources.swift
[2459/2688] Emitting module SwiftSyntaxBuilder
[2460/2688] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[2461/2688] Compiling PackageCollectionsSigning CertificatePolicy.swift
[2462/2688] Emitting module PackageCollectionsSigning
[2463/2688] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[2464/2688] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[2465/2688] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[2466/2688] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[2468/2689] Compiling PackageSigning embedded_resources.swift
[2470/2690] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[2471/2690] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[2471/2690] Wrapping AST for PackageCollectionsSigning for debugging
[2472/2714] Wrapping AST for PackageSigning for debugging
[2474/2721] Compiling PackageCollections PackageIndexAndCollections.swift
[2475/2721] Compiling PackageCollections GitHubPackageMetadataProvider.swift
[2476/2722] Wrapping AST for SwiftSyntaxBuilder for debugging
[2478/2748] Compiling SwiftRefactor FormatRawStringLiteral.swift
[2479/2748] Compiling SwiftRefactor IntegerLiteralUtilities.swift
[2480/2748] Compiling SwiftRefactor MigrateToNewIfLetSyntax.swift
[2481/2751] Emitting module SWBCore
[2482/2751] Compiling SwiftRefactor AddSeparatorsToIntegerLiteral.swift
[2483/2751] Compiling SwiftRefactor CallLikeSyntax.swift
[2484/2751] Compiling SwiftRefactor CallToTrailingClosures.swift
[2485/2751] Compiling SwiftRefactor ConvertComputedPropertyToStored.swift
[2486/2751] Compiling SwiftRefactor ConvertComputedPropertyToZeroParameterFunction.swift
[2487/2751] Compiling SwiftRefactor ConvertStoredPropertyToComputed.swift
[2488/2751] Compiling SwiftRefactor ConvertZeroParameterFunctionToComputedProperty.swift
[2489/2751] Compiling SwiftRefactor ExpandEditorPlaceholder.swift
[2493/2751] Compiling SwiftRefactor OpaqueParameterToGeneric.swift
[2494/2751] Compiling SwiftRefactor AddPackageDependency.swift
[2495/2751] Compiling SwiftRefactor AddPackageTarget.swift
[2496/2751] Compiling SwiftRefactor AddPluginUsage.swift
[2497/2751] Compiling SwiftRefactor AddProduct.swift
[2498/2751] Compiling SwiftRefactor ManifestSyntaxRepresentable.swift
[2499/2751] Compiling SwiftRefactor PackageDependency.swift
[2500/2751] Compiling SwiftRefactor PackageTarget.swift
[2501/2751] Compiling SwiftRefactor AddSwiftSetting.swift
[2502/2751] Compiling SwiftRefactor AddTargetDependency.swift
[2503/2772] Compiling PackageRegistry SigningEntityTOFU.swift
[2504/2772] Emitting module PackageRegistry
[2505/2772] Emitting module PackageCollections
[2507/2772] Compiling SwiftRefactor ManifestEditError.swift
[2508/2772] Compiling SwiftRefactor ProductDescription.swift
[2509/2772] Emitting module SwiftRefactor
[2522/2775] Compiling SwiftRefactor RefactoringProvider.swift
[2523/2775] Compiling SwiftRefactor RemoveSeparatorsFromIntegerLiteral.swift
[2524/2775] Compiling SwiftRefactor SyntaxUtils.swift
[2525/2775] Compiling PackageRegistry RegistryDownloadsManager.swift
[2526/2775] Compiling PackageRegistry SignatureValidation.swift
[2542/2775] Compiling PackageRegistry RegistryConfiguration.swift
[2550/2775] Compiling PackageCollections SQLitePackageCollectionsStorage.swift
[2551/2775] Compiling PackageCollections Trie.swift
[2552/2776] Wrapping AST for SwiftRefactor for debugging
/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>
[2585/2777] Wrapping AST for PackageCollections for debugging
[2587/2777] Compiling PackageRegistry ChecksumTOFU.swift
[2588/2777] Compiling PackageRegistry RegistryClient.swift
[2589/2778] Wrapping AST for PackageRegistry for debugging
[2591/2812] Emitting module PackageMetadata
[2592/2812] Compiling PackageMetadata PackageMetadata.swift
[2593/2813] Wrapping AST for PackageMetadata for debugging
[2595/2813] Compiling Workspace Workspace+Prebuilts.swift
[2596/2813] Compiling Workspace Workspace+Registry.swift
[2597/2813] Compiling Workspace Workspace+ResolvedPackages.swift
[2598/2813] Compiling Workspace Workspace+Signing.swift
[2599/2817] Compiling Workspace CheckoutState.swift
[2600/2817] Compiling Workspace Diagnostics.swift
[2601/2817] Compiling Workspace InitPackage.swift
[2602/2817] Compiling Workspace LoadableResult.swift
[2603/2817] Compiling Workspace ManagedArtifact.swift
[2604/2817] Compiling Workspace ManagedDependency.swift
[2605/2817] Compiling Workspace ManagedPrebuilt.swift
[2606/2817] Compiling Workspace Base64URL.swift
[2607/2817] Compiling Workspace CertificatePolicy.swift
[2608/2817] Compiling Workspace ManifestSigning.swift
[2609/2817] Compiling Workspace RegistryPackageContainer.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>
[2610/2817] Compiling Workspace SourceControlPackageContainer.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>
[2611/2817] Compiling Workspace ResolvedFileWatcher.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>
[2612/2817] Compiling Workspace ResolverPrecomputationProvider.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>
[2613/2817] Compiling Workspace Signature.swift
[2614/2817] Compiling Workspace Utilities.swift
[2615/2817] Compiling Workspace X509Extensions.swift
[2616/2817] Compiling Workspace embedded_resources.swift
[2617/2817] Compiling Workspace FileSystemPackageContainer.swift
[2618/2817] Emitting module Workspace
[2619/2817] Compiling Workspace ToolsVersionSpecificationRewriter.swift
[2620/2817] Compiling Workspace Workspace+BinaryArtifacts.swift
[2621/2817] Compiling Workspace Workspace+Configuration.swift
[2622/2817] Compiling Workspace Workspace+Delegation.swift
[2623/2817] Compiling Workspace Workspace+Dependencies.swift
[2624/2817] Compiling Workspace Workspace+Editing.swift
[2625/2817] Compiling Workspace Workspace+Manifests.swift
[2626/2817] Compiling Workspace Workspace+PackageContainer.swift
[2627/2817] Compiling SWBCore ModulesVerifierTool.swift
[2628/2817] Compiling SWBCore ObjectLibraryAssembler.swift
[2629/2817] Compiling SWBCore PLUtilTool.swift
[2630/2817] Compiling SWBCore PrelinkedObjectLink.swift
[2631/2817] Compiling SWBCore ProcessSDKImports.swift
[2632/2817] Compiling SWBCore ProcessXCFrameworkLibrary.swift
[2633/2817] Compiling SWBCore ProductPackaging.swift
[2634/2817] Compiling SWBCore RegisterExecutionPolicyException.swift
[2635/2817] Compiling SWBCore SetAttributes.swift
[2636/2817] Compiling SWBCore ShellScriptTool.swift
[2637/2817] Compiling SWBCore SignatureCollection.swift
[2638/2817] Compiling SWBCore StripTool.swift
[2639/2817] Compiling SWBCore SwiftABICheckerTool.swift
[2640/2817] Compiling SWBCore SwiftABIGenerationTool.swift
[2641/2817] Compiling SWBCore SwiftCompiler.swift
[2642/2817] Compiling SWBCore SwiftHeaderTool.swift
[2643/2817] Compiling SWBCore SwiftStdLibTool.swift
[2644/2817] Compiling SWBCore SwiftSymbolExtractor.swift
[2645/2817] Compiling SWBCore SymlinkTool.swift
[2646/2817] Compiling SWBCore TAPISymbolExtractor.swift
[2647/2817] Compiling SWBCore TAPITools.swift
[2648/2817] Compiling SWBCore BuildDependencyInfoSpec.swift
[2649/2817] Compiling SWBCore CCompiler.swift
[2650/2817] Compiling SWBCore ClangModuleVerifierInputGenerator.swift
[2651/2817] Compiling SWBCore ClangStatCache.swift
[2652/2817] Compiling SWBCore CodeSign.swift
[2653/2817] Compiling SWBCore ConcatenateTool.swift
[2654/2817] Compiling SWBCore ConstructStubExecutorFileListTool.swift
[2655/2817] Compiling SWBCore CopyTool.swift
[2656/2817] Compiling SWBCore CreateAssetPackManifestTool.swift
[2657/2817] Compiling SWBCore CreateBuildDirectory.swift
[2658/2817] Compiling SWBCore DocumentationCompiler.swift
[2659/2817] Compiling SWBCore DsymutilTool.swift
[2660/2817] Compiling SWBCore GCCCompatibleCompilerSupport.swift
[2661/2817] Compiling SWBCore Gate.swift
[2662/2817] Compiling SWBCore GenerateAppPlaygroundAssetCatalog.swift
[2663/2817] Compiling SWBCore InfoPlistTool.swift
[2664/2817] Compiling SWBCore LaunchServicesRegisterTool.swift
[2665/2817] Compiling SWBCore LinkerTools.swift
[2666/2817] Compiling SWBCore Lipo.swift
[2667/2817] Compiling SWBCore MergeInfoPlist.swift
[2668/2817] Compiling SWBCore MkdirTool.swift
[2669/2817] Compiling SWBCore TiffUtilTool.swift
[2670/2817] Compiling SWBCore TouchTool.swift
[2671/2817] Compiling SWBCore UnifdefTool.swift
[2672/2817] Compiling SWBCore ValidateDependencies.swift
[2673/2817] Compiling SWBCore ValidateDevelopmentAssets.swift
[2674/2817] Compiling SWBCore ValidateEmbeddedBinaryTool.swift
[2675/2817] Compiling SWBCore ValidateProductTool.swift
[2676/2817] Compiling SWBCore WriteFile.swift
[2677/2817] Compiling SWBCore SwiftSDK.swift
[2678/2817] Compiling SWBCore TargetDependencyResolver.swift
[2679/2817] Compiling SWBCore TargetPlatformDiagnostics.swift
[2680/2817] Compiling SWBCore TaskGeneration.swift
[2681/2817] Compiling SWBCore TaskResult.swift
[2682/2817] Compiling SWBCore TaskValidityCriteria.swift
[2683/2817] Compiling SWBCore ClangToolInfo.swift
[2684/2817] Compiling SWBCore ToolchainRegistry.swift
[2685/2817] Compiling SWBCore Tuning.swift
[2686/2817] Compiling SWBCore WorkspaceContext.swift
[2687/2817] Compiling SWBCore WorkspaceSettingsCache.swift
[2688/2817] Compiling SWBCore XCFramework.swift
[2689/2817] Compiling SWBCore resource_bundle_accessor.swift
[2690/2817] Compiling Workspace Workspace+SourceControl.swift
[2691/2817] Compiling Workspace Workspace+State.swift
[2692/2817] Compiling Workspace Workspace+Traits.swift
[2693/2817] Compiling Workspace Workspace.swift
[2694/2818] Wrapping AST for Workspace for debugging
[2695/2818] Write Objects.LinkFileList
[2698/2860] Emitting module package_info
[2699/2860] Compiling package_info example.swift
[2700/2861] Wrapping AST for package-info for debugging
[2701/2861] Write Objects.LinkFileList
[2764/2861] Compiling SWBCore Specs.swift
[2765/2861] Compiling SWBCore AppShortcutStringsMetadataCompiler.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_strnid.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z52CCryptoBoringSSL_lh_ASN1_STRING_TABLE_call_hash_funcPFjPKvES0_' 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/a_strnid.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z52CCryptoBoringSSL_lh_ASN1_STRING_TABLE_call_hash_funcPFjPKvES0_' 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/a_time.cc.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.cc.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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_SECTION_call_doall_arg' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_VALUE_call_doall_arg' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_VALUE_call_hash_func' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_SECTION_call_hash_func' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_SECTION_call_hash_func' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_VALUE_call_hash_func' 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.cc.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_dh_asn1.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_dh_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_dsa_asn1.cc.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.cc.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.cc.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.cc.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.cc.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/bcm.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_aes_nohw_ctr32_encrypt_blocks' 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/bcm.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z41CCryptoBoringSSL_sk_BIGNUM_call_free_funcPFvPvES_' 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.cc.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/obj/obj.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_OBJ_cmp' 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/obj/obj.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z46CCryptoBoringSSL_lh_ASN1_OBJECT_call_hash_funcPFjPKvES0_' 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/obj/obj.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z46CCryptoBoringSSL_lh_ASN1_OBJECT_call_hash_funcPFjPKvES0_' 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.cc.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/pkcs7/pkcs7_x509.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_CRYPTO_BUFFER_call_free_func' 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/pkcs7/pkcs7_x509.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_call_free_func' 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/pkcs7/pkcs7_x509.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_CRL_call_free_func' 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/pool/pool.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CRYPTO_BUFFER_call_hash_func' 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/pool/pool.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CRYPTO_BUFFER_call_hash_func' 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/pool/pool.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CRYPTO_BUFFER_call_hash_func' 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/pmbtoken.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_TRUST_TOKEN_PRETOKEN_call_free_func' 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/pmbtoken.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_TRUST_TOKEN_call_free_func' 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.cc.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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z47CCryptoBoringSSL_sk_BY_DIR_ENTRY_call_free_funcPFvPvES_' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z46CCryptoBoringSSL_sk_BY_DIR_HASH_call_free_funcPFvPvES_' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z45CCryptoBoringSSL_sk_BY_DIR_HASH_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_OBJECT_call_cmp_func' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_OBJECT_call_cmp_func' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z45CCryptoBoringSSL_sk_BY_DIR_HASH_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/by_file.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_INFO_call_free_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ASN1_OBJECT_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z52CCryptoBoringSSL_sk_X509_POLICY_LEVEL_call_free_funcPFvPvES_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICYINFO_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z39sk_X509_POLICY_NODE_call_delete_if_funcPFiPvS_ES_S_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z51CCryptoBoringSSL_sk_X509_POLICY_NODE_call_free_funcPFvPvES_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICYINFO_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z50CCryptoBoringSSL_sk_X509_POLICY_NODE_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ASN1_OBJECT_call_free_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z50CCryptoBoringSSL_sk_X509_POLICY_NODE_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICY_MAPPING_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICY_MAPPING_call_free_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICY_MAPPING_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ASN1_OBJECT_call_cmp_func' 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.cc.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/t_req.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_EXTENSION_call_free_func' 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/v3_akey.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_CONF_VALUE_call_free_func' 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/v3_akeya.cc.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/x509/v3_alt.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_GENERAL_NAME_call_free_func' 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/v3_bcons.cc.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/x509/v3_cpols.cc.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/x509/v3_cpols.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICYINFO_call_free_func' 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/v3_crld.cc.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/x509/v3_crld.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_DIST_POINT_call_free_func' 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/v3_crld.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_NAME_ENTRY_call_free_func' 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/v3_extku.cc.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/x509/v3_genn.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_GENERAL_NAME_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/v3_info.cc.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/x509/v3_info.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ACCESS_DESCRIPTION_call_free_func' 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/v3_lib.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z51CCryptoBoringSSL_sk_X509V3_EXT_METHOD_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/v3_lib.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z51CCryptoBoringSSL_sk_X509V3_EXT_METHOD_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/v3_ncons.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_NAME_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/x509/v3_pcons.cc.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/x509/v3_pmaps.cc.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/x509/v3_utl.cc.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/CCryptoBoringSSL.build/crypto/x509/v3_utl.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_OPENSSL_STRING_call_free_func' 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/v3_utl.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_OPENSSL_STRING_call_cmp_func' 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/v3_utl.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_OPENSSL_STRING_call_cmp_func' 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/x509_lu.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_LOOKUP_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/x509_lu.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_LOOKUP_call_free_func' 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/x509_lu.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_OBJECT_call_free_func' 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/x509_lu.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_OBJECT_call_copy_func' 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/x509_vpm.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ASN1_OBJECT_call_copy_func' 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/x509_vpm.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_OPENSSL_STRING_call_copy_func' 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/x509cset.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_REVOKED_call_cmp_func' 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.cc.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.cc.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.cc.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_crl.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_REVOKED_call_cmp_func' 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.cc.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.cc.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_name.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z59CCryptoBoringSSL_sk_STACK_OF_X509_NAME_ENTRY_call_free_funcPFvPvES_' 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.cc.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.cc.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_spki.cc.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.cc.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.cc.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.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_CERT_AUX_it' which may overflow at runtime; recompile with -fPIC
clang: error: linker command failed with exit code 1 (use -v to see invocation)
[2766/2862] Linking libSwiftPMDataModel.so
[2767/2862] Emitting module swift_build_prebuilts
[2768/2862] Compiling _InternalTestSupport MockDependencyGraph.swift
[2769/2862] Compiling _InternalTestSupport MockHTTPClient.swift
[2770/2862] Compiling _InternalTestSupport MockHashAlgorithm.swift
[2771/2862] Compiling _InternalTestSupport MockManifestLoader.swift
[2772/2862] Compiling _InternalTestSupport MockPackage.swift
[2772/2862] Linking package-info
/usr/bin/ld.gold: error: /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/CCryptoBoringSSL.build/crypto/asn1/a_strnid.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z52CCryptoBoringSSL_lh_ASN1_STRING_TABLE_call_hash_funcPFjPKvES0_' 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/a_strnid.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z52CCryptoBoringSSL_lh_ASN1_STRING_TABLE_call_hash_funcPFjPKvES0_' 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/a_time.cc.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.cc.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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_SECTION_call_doall_arg' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_VALUE_call_doall_arg' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_VALUE_call_hash_func' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_SECTION_call_hash_func' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_SECTION_call_hash_func' 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/conf/conf.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CONF_VALUE_call_hash_func' 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.cc.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_dh_asn1.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_dh_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_dsa_asn1.cc.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.cc.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.cc.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.cc.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.cc.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/bcm.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_aes_nohw_ctr32_encrypt_blocks' 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/bcm.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z41CCryptoBoringSSL_sk_BIGNUM_call_free_funcPFvPvES_' 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.cc.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/obj/obj.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_OBJ_cmp' 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/obj/obj.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z46CCryptoBoringSSL_lh_ASN1_OBJECT_call_hash_funcPFjPKvES0_' 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/obj/obj.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z46CCryptoBoringSSL_lh_ASN1_OBJECT_call_hash_funcPFjPKvES0_' 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.cc.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/pkcs7/pkcs7_x509.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_CRYPTO_BUFFER_call_free_func' 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/pkcs7/pkcs7_x509.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_call_free_func' 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/pkcs7/pkcs7_x509.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_CRL_call_free_func' 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/pool/pool.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CRYPTO_BUFFER_call_hash_func' 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/pool/pool.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CRYPTO_BUFFER_call_hash_func' 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/pool/pool.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_lh_CRYPTO_BUFFER_call_hash_func' 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/pmbtoken.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_TRUST_TOKEN_PRETOKEN_call_free_func' 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/pmbtoken.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_TRUST_TOKEN_call_free_func' 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.cc.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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z47CCryptoBoringSSL_sk_BY_DIR_ENTRY_call_free_funcPFvPvES_' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z46CCryptoBoringSSL_sk_BY_DIR_HASH_call_free_funcPFvPvES_' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z45CCryptoBoringSSL_sk_BY_DIR_HASH_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_OBJECT_call_cmp_func' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_OBJECT_call_cmp_func' 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/by_dir.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z45CCryptoBoringSSL_sk_BY_DIR_HASH_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/by_file.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_INFO_call_free_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ASN1_OBJECT_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z52CCryptoBoringSSL_sk_X509_POLICY_LEVEL_call_free_funcPFvPvES_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICYINFO_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z39sk_X509_POLICY_NODE_call_delete_if_funcPFiPvS_ES_S_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z51CCryptoBoringSSL_sk_X509_POLICY_NODE_call_free_funcPFvPvES_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICYINFO_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z50CCryptoBoringSSL_sk_X509_POLICY_NODE_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ASN1_OBJECT_call_free_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z50CCryptoBoringSSL_sk_X509_POLICY_NODE_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICY_MAPPING_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICY_MAPPING_call_free_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICY_MAPPING_call_cmp_func' 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/policy.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ASN1_OBJECT_call_cmp_func' 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.cc.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/t_req.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_EXTENSION_call_free_func' 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/v3_akey.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_CONF_VALUE_call_free_func' 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/v3_akeya.cc.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/x509/v3_alt.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_GENERAL_NAME_call_free_func' 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/v3_bcons.cc.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/x509/v3_cpols.cc.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/x509/v3_cpols.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_POLICYINFO_call_free_func' 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/v3_crld.cc.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/x509/v3_crld.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_DIST_POINT_call_free_func' 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/v3_crld.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_NAME_ENTRY_call_free_func' 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/v3_extku.cc.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/x509/v3_genn.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_GENERAL_NAME_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/v3_info.cc.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/x509/v3_info.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ACCESS_DESCRIPTION_call_free_func' 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/v3_lib.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z51CCryptoBoringSSL_sk_X509V3_EXT_METHOD_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/v3_lib.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z51CCryptoBoringSSL_sk_X509V3_EXT_METHOD_call_cmp_funcPFiPKPKvS2_ES0_S0_' 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/v3_ncons.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_NAME_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/x509/v3_pcons.cc.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/x509/v3_pmaps.cc.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/x509/v3_utl.cc.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/CCryptoBoringSSL.build/crypto/x509/v3_utl.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_OPENSSL_STRING_call_free_func' 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/v3_utl.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_OPENSSL_STRING_call_cmp_func' 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/v3_utl.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_OPENSSL_STRING_call_cmp_func' 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/x509_lu.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_X509_LOOKUP_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/x509_lu.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_LOOKUP_call_free_func' 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/x509_lu.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_OBJECT_call_free_func' 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/x509_lu.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_OBJECT_call_copy_func' 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/x509_vpm.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_ASN1_OBJECT_call_copy_func' 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/x509_vpm.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_OPENSSL_STRING_call_copy_func' 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/x509cset.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_REVOKED_call_cmp_func' 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.cc.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.cc.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.cc.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_crl.cc.o: requires dynamic R_X86_64_PC32 reloc against 'CCryptoBoringSSL_sk_X509_REVOKED_call_cmp_func' 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.cc.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.cc.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_name.cc.o: requires dynamic R_X86_64_PC32 reloc against '_Z59CCryptoBoringSSL_sk_STACK_OF_X509_NAME_ENTRY_call_free_funcPFvPvES_' 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.cc.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.cc.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_spki.cc.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.cc.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.cc.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.cc.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/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
[2772/2862] Linking libSwiftPM.so
BUILD FAILURE 6.2 linux