From 25b1685b9e3c14c6ece7307ce774591f96665327 Mon Sep 17 00:00:00 2001 From: Bri Peticca Date: Fri, 5 Sep 2025 16:31:09 -0400 Subject: [PATCH 1/2] Initial investigation into logging/diagnostics for swiftbuild --- Sources/SwiftBuildSupport/SwiftBuildSystem.swift | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Sources/SwiftBuildSupport/SwiftBuildSystem.swift b/Sources/SwiftBuildSupport/SwiftBuildSystem.swift index f6831e440c3..6a5ae92edc8 100644 --- a/Sources/SwiftBuildSupport/SwiftBuildSystem.swift +++ b/Sources/SwiftBuildSupport/SwiftBuildSystem.swift @@ -533,13 +533,20 @@ public final class SwiftBuildSystem: SPMBuildCore.BuildSystem { case .targetStarted(let info): try buildState.started(target: info) case .planningOperationStarted, .planningOperationCompleted, .reportBuildDescription, .reportPathMap, .preparedForIndex, .backtraceFrame, .buildStarted, .preparationComplete, .targetUpToDate, .targetComplete, .taskUpToDate: + // TODO bp print out every message here for investigation (--vv) + self.observabilityScope.emit(error: "Unhandled message: \(message)") break case .buildDiagnostic, .targetDiagnostic, .taskDiagnostic: break // deprecated case .buildOutput, .targetOutput, .taskOutput: break // deprecated - @unknown default: - break + +// default: +// self.outputStream.send(<#T##value: ArraySlice##ArraySlice#>) +// self.observabilityScope.emit(info: "\(message)") +// @unknown default: +// break + // TODO bp print(message) instead of switch } } From b66d5ea6b384c04d8ecb655d5da5268203914f7d Mon Sep 17 00:00:00 2001 From: Bri Peticca Date: Mon, 15 Sep 2025 11:25:46 -0400 Subject: [PATCH 2/2] to rest --- .swift-version | 2 +- Sources/Build/BuildOperation.swift | 2 +- Sources/PackageModel/Platform.swift | 2 - .../SwiftBuildSupport/SwiftBuildSystem.swift | 58 +++- err_output.txt | 3 + output.txt | 6 + outputswb.txt | 284 ++++++++++++++++++ 7 files changed, 351 insertions(+), 6 deletions(-) create mode 100644 err_output.txt create mode 100644 output.txt create mode 100644 outputswb.txt diff --git a/.swift-version b/.swift-version index 358e78e6074..eb399ff3e20 100644 --- a/.swift-version +++ b/.swift-version @@ -1 +1 @@ -6.1.0 \ No newline at end of file +6.2-snapshot-2025-08-14 \ No newline at end of file diff --git a/Sources/Build/BuildOperation.swift b/Sources/Build/BuildOperation.swift index f162c921030..254da7052d2 100644 --- a/Sources/Build/BuildOperation.swift +++ b/Sources/Build/BuildOperation.swift @@ -438,7 +438,7 @@ public final class BuildOperation: PackageStructureDelegate, SPMBuildCore.BuildS // Perform the build. let llbuildTarget = try await computeLLBuildTargetName(for: subset) let success = buildSystem.build(target: llbuildTarget) - + let duration = buildStartTime.distance(to: .now()) let subsetDescriptor: String? diff --git a/Sources/PackageModel/Platform.swift b/Sources/PackageModel/Platform.swift index 4f808aae187..9b15c06560b 100644 --- a/Sources/PackageModel/Platform.swift +++ b/Sources/PackageModel/Platform.swift @@ -50,8 +50,6 @@ public struct Platform: Equatable, Hashable, Codable, Sendable { public static let wasi: Platform = Platform(name: "wasi", oldestSupportedVersion: .unknown) public static let openbsd: Platform = Platform(name: "openbsd", oldestSupportedVersion: .unknown) public static let freebsd: Platform = Platform(name: "freebsd", oldestSupportedVersion: .unknown) - - } /// Represents a platform supported by a target. diff --git a/Sources/SwiftBuildSupport/SwiftBuildSystem.swift b/Sources/SwiftBuildSupport/SwiftBuildSystem.swift index 6a5ae92edc8..9e15804d9da 100644 --- a/Sources/SwiftBuildSupport/SwiftBuildSystem.swift +++ b/Sources/SwiftBuildSupport/SwiftBuildSystem.swift @@ -378,6 +378,7 @@ public final class SwiftBuildSystem: SPMBuildCore.BuildSystem { var serializedDiagnosticPathsByTargetName: [String: [Basics.AbsolutePath]] = [:] do { try await withSession(service: service, name: self.buildParameters.pifManifest.pathString, toolchainPath: self.buildParameters.toolchain.toolchainDir, packageManagerResourcesDirectory: self.packageManagerResourcesDirectory) { session, _ in + // TODO bp possible duplication of this message being sent to stdout self.outputStream.send("Building for \(self.buildParameters.configuration == .debug ? "debugging" : "production")...\n") // Load the workspace, and set the system information to the default @@ -417,6 +418,7 @@ public final class SwiftBuildSystem: SPMBuildCore.BuildSystem { struct BuildState { private var targetsByID: [Int: SwiftBuild.SwiftBuildMessage.TargetStartedInfo] = [:] + private var targetsByGUID: [SWBProjectModel.PIF.GUID: SwiftBuild.SwiftBuildMessage.TargetStartedInfo] = [:] private var activeTasks: [Int: SwiftBuild.SwiftBuildMessage.TaskStartedInfo] = [:] mutating func started(task: SwiftBuild.SwiftBuildMessage.TaskStartedInfo) throws { @@ -437,7 +439,19 @@ public final class SwiftBuildSystem: SPMBuildCore.BuildSystem { if targetsByID[target.targetID] != nil { throw Diagnostics.fatalError } + if targetsByGUID[target.targetGUID] != nil { + throw Diagnostics.fatalError + } targetsByID[target.targetID] = target + targetsByGUID[target.targetGUID] = target + } + + mutating func completed(target: SwiftBuild.SwiftBuildMessage.TargetCompleteInfo) throws -> SwiftBuild.SwiftBuildMessage.TargetStartedInfo { + guard let target = targetsByID[target.targetID] else { + // TODO bp better error here? + throw Diagnostics.fatalError + } + return target } mutating func target(for task: SwiftBuild.SwiftBuildMessage.TaskStartedInfo) throws -> SwiftBuild.SwiftBuildMessage.TargetStartedInfo? { @@ -449,6 +463,27 @@ public final class SwiftBuildSystem: SPMBuildCore.BuildSystem { } return target } + + mutating func target(for guid: SWBProjectModel.PIF.GUID) throws -> SwiftBuild.SwiftBuildMessage.TargetStartedInfo? { + guard let target = targetsByGUID[guid] else { +// throw Diagnostics.fatalError + return nil + } + + return target + } + + mutating func task(for target: SwiftBuild.SwiftBuildMessage.TargetStartedInfo) throws -> SwiftBuild.SwiftBuildMessage.TaskStartedInfo { + + guard let task = activeTasks.values.first(where: { $0.targetID == target.targetID }) else { + // TODO bp: better error message here + throw Diagnostics.fatalError + } + + // TODO bp should check if targetsByID has entry for this target? + + return task + } } func emitEvent(_ message: SwiftBuild.SwiftBuildMessage, buildState: inout BuildState) throws { @@ -498,7 +533,9 @@ public final class SwiftBuildSystem: SPMBuildCore.BuildSystem { emitInfoAsDiagnostic(info: info) case .output(let info): - self.observabilityScope.emit(info: "\(String(decoding: info.data, as: UTF8.self))") + // TODO bp error code block being emitted under info severity here + let message = "\(String(decoding: info.data, as: UTF8.self))" + self.observabilityScope.emit(info: message) case .taskStarted(let info): try buildState.started(task: info) @@ -532,7 +569,24 @@ public final class SwiftBuildSystem: SPMBuildCore.BuildSystem { } case .targetStarted(let info): try buildState.started(target: info) - case .planningOperationStarted, .planningOperationCompleted, .reportBuildDescription, .reportPathMap, .preparedForIndex, .backtraceFrame, .buildStarted, .preparationComplete, .targetUpToDate, .targetComplete, .taskUpToDate: + case .targetComplete(let info): + let startedTargetInfo = try buildState.completed(target: info) + let taskInfo = try buildState.task(for: startedTargetInfo) // TODO bp can simplify to passing just targetID + // TODO bp: get task associated with the target id? +// if info.result != .success { +// +// } + let targetName = startedTargetInfo.targetName + self.delegate?.buildSystem(self, didFinishCommand: BuildSystemCommand(taskInfo, targetInfo: startedTargetInfo)) + serializedDiagnosticPathsByTargetName[targetName, default: []].append(contentsOf: taskInfo.serializedDiagnosticsPaths.compactMap { + try? Basics.AbsolutePath(validating: $0.pathString) + }) + self.observabilityScope.emit(error: "TARGET COMPLETE: \(message)") + case .targetUpToDate(let info): + let targetInfo = try buildState.target(for: info.guid) + self.observabilityScope.emit(error: "TARGET UP TO DATE \(targetInfo?.targetName ?? "")") + + case .planningOperationStarted, .planningOperationCompleted, .reportBuildDescription, .reportPathMap, .preparedForIndex, .backtraceFrame, .buildStarted, .preparationComplete, /*.targetUpToDate,*/ /*.targetComplete,*/ .taskUpToDate: // TODO bp print out every message here for investigation (--vv) self.observabilityScope.emit(error: "Unhandled message: \(message)") break diff --git a/err_output.txt b/err_output.txt new file mode 100644 index 00000000000..2011217703f --- /dev/null +++ b/err_output.txt @@ -0,0 +1,3 @@ +Building for debugging... +[0/3] Write swift-version-4C9A2395E9159513.txt +Build of product 'swift-build' complete! (0.31s) diff --git a/output.txt b/output.txt new file mode 100644 index 00000000000..8d37c22e462 --- /dev/null +++ b/output.txt @@ -0,0 +1,6 @@ +Building for debugging... +[0/3] Write swift-version-4C9A2395E9159513.txt +Build of product 'swift-build' complete! (0.29s) +Building for debugging... +Write auxiliary file /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/debug/swift-version-61A6B76668897818.txt +Build complete! (0.29s) diff --git a/outputswb.txt b/outputswb.txt new file mode 100644 index 00000000000..4dff3cd469e --- /dev/null +++ b/outputswb.txt @@ -0,0 +1,284 @@ +Building for debugging... +/Users/bripeticca/dev/swift-tooling/swift-package-manager/Sources/PackageModel/SwiftLanguageVersion.swift:71:37: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration] + 69 | + 70 | /// Regex for parsing the Swift language version. + 71 | private static let regex = try! RegEx(pattern: #"^(\d+)(?:\.(\d+))?(?:\.(\d+))?$"#) + | `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead [#DeprecatedDeclaration] + 72 | + 73 | /// Create an instance of Swift language version from the given string. + +[#DeprecatedDeclaration]: +/Users/bripeticca/dev/swift-tooling/swift-package-manager/Sources/SwiftBuildSupport/SwiftBuildSystem.swift:368:71: warning: converting non-Sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races + 366 | let buildStartTime = ContinuousClock.Instant.now + 367 | var replArguments: CLIArguments? + 368 | return try await withService(connectionMode: .inProcessStatic(swiftbuildServiceEntryPoint)) { service in + | `- warning: converting non-Sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races + 369 | let derivedDataPath = self.buildParameters.dataPath + 370 | + +/Users/bripeticca/dev/swift-tooling/swift-package-manager/Sources/SwiftBuildSupport/SwiftBuildSystem.swift:781:13: warning: variable 'settings' was never mutated; consider changing to 'let' constant + 779 | + 780 | private static func constructDebuggingSettingsOverrides(from parameters: BuildParameters.Debugging) -> [String: String] { + 781 | var settings: [String: String] = [:] + | `- warning: variable 'settings' was never mutated; consider changing to 'let' constant + 782 | // TODO: debugInfoFormat: https://github.com/swiftlang/swift-build/issues/560 + 783 | // TODO: shouldEnableDebuggingEntitlement: Enable/Disable get-task-allow +/Users/bripeticca/dev/swift-tooling/swift-package-manager/Sources/SwiftBuildSupport/SwiftBuildSystem.swift:368:71: warning: converting non-Sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races + 366 | let buildStartTime = ContinuousClock.Instant.now + 367 | var replArguments: CLIArguments? + 368 | return try await withService(connectionMode: .inProcessStatic(swiftbuildServiceEntryPoint)) { service in + | `- warning: converting non-Sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races + 369 | let derivedDataPath = self.buildParameters.dataPath + 370 | +[10/10] Applying swift-build +Build of product 'swift-build' complete! (8.19s) +error: Unhandled message: planningOperationStarted(SwiftBuild.SwiftBuildMessage.PlanningOperationStartedInfo(planningOperationID: "C4B12CDF-B789-43C7-92A4-EA5290F23BA9")) +Building for debugging... + + 0% [-------------------------------------------------------------------------------------------------------------------------------] +error: Unhandled message: planningOperationCompleted(SwiftBuild.SwiftBuildMessage.PlanningOperationCompletedInfo(planningOperationID: "C4B12CDF-B 0% [-------------------------------------------------------------------------------------------------------------------------------] +error: Unhandled message: reportBuildDescription(SwiftBuild.SwiftBuildMessage.ReportBuildDescriptionInfo(buildDescriptionID: "95ddbea25629cbb988d643929987f053")) +error: Unhandled message: preparationComplete(SwiftBuild.SwiftBuildMessage.PreparationCompleteInfo()) +error: Unhandled message: buildStarted(SwiftBuild.SwiftBuildMessage.BuildStartedInfo(baseDirectory: SwiftBuild.AbsolutePath(pathString: "/"), derivedDataPath: nil)) +error: Unhandled message: reportPathMap(SwiftBuild.SwiftBuildMessage.ReportPathMapInfo(copiedPathMap: [:], generatedFilesPathMap: [:])) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::CreateBuildDirectory /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::CreateBuildDirectory /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::CreateBuildDirectory /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/PackageFrameworks", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::CreateBuildDirectory /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::CreateBuildDirectory /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/SwiftExplicitPrecompiledModules", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::CreateBuildDirectory /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::CreateBuildDirectory /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/EagerLinkingTBDs/Debug", parentTask 1% [=------------------------------------------------------------------------------------------------------------------------------] +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(2), taskSignature: "\0P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-asn1.build/Debug/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(2), taskSignature: "\0P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-asn1.build/Debug/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(2), taskSignature: "\0P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-asn1.build/Debug/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(2), taskSignature: "\0P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-asn1.build/Debug/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(2), taskSignature: "\0P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-asn1.build/Debug/SwiftASN1.build/SwiftASN1.modulemap", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(8), taskSignature: "\0P0:target-swift-crypto__CryptoExtrasTests-PACKAGE-RESOURCE:_CryptoExtrasTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtrasTests.bundle/Contents", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(8), taskSignature: "\0P0:target-swift-crypto__CryptoExtrasTests-PACKAGE-RESOURCE:_CryptoExtrasTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtrasTests.bundle/Contents/Resources", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(8), taskSignature: "\0P0:target-swift-crypto__CryptoExtrasTests-PACKAGE-RESOURCE:_CryptoExtrasTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtrasTests.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(12), taskSignature: "\0P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_Crypto.bundle/Contents", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(12), taskSignature: "\0P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_Crypto.bundle/Contents/Resources", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(12), taskSignature: "\0P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_Crypto.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(9), taskSignature: "\0P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtras.bundle/Contents", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(9), taskSignature: "\0P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtras.bundle/Contents/Resources", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(9), taskSignature: "\0P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtras.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(14), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSL.bundle/Contents", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(14), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSL.bundle/Contents/Resources", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(14), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSL.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(11), taskSignature: "\0P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoBoringWrapper.bundle/Contents", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(11), taskSignature: "\0P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoBoringWrapper.bundle/Contents/Resources", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(11), taskSignature: "\0P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoBoringWrapper.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(13), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSLShims.bundle/Contents", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(13), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSLShims.bundle/Contents/Resources", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(13), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSLShims.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(3), taskSignature: "\0P2:target-crypto-shasum-PACKAGE-TARGET:crypto-shasum-57092A5AD6DF766C-testable-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum-57092A5AD6DF766C-testable.build/Objects-normal/arm64/crypto-shasum-57092A5AD6DF766C-testable.LinkFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(3), taskSignature: "\0P2:target-crypto-shasum-PACKAGE-TARGET:crypto-shasum-57092A5AD6DF766C-testable-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum-57092A5AD6DF766C-testable.build/Objects-normal/arm64/crypto-shasum-57092A5AD6DF766C-testable_const_extract_protocols.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(3), taskSignature: "\0P2:target-crypto-shasum-PACKAGE-TARGET:crypto-shasum-57092A5AD6DF766C-testable-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum-57092A5AD6DF766C-testable.build/Objects-normal/arm64/crypto-shasum-57092A5AD6DF766C-testable-OutputFileMap.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(3), taskSignature: "\0P2:target-crypto-shasum-PACKAGE-TARGET:crypto-shasum-57092A5AD6DF766C-testable-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum-57092A5AD6DF766C-testable.build/Objects-normal/arm64/crypto-shasum-57092A5AD6DF766C-testable.SwiftFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(3), taskSignature: "\0P2:target-crypto-shasum-PACKAGE-TARGET:crypto-shasum-57092A5AD6DF766C-testable-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum-57092A5AD6DF766C-testable.build/crypto-shasum.modulemap", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(1), taskSignature: "\0P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(1), taskSignature: "\0P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(1), taskSignature: "\0P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(1), taskSignature: "\0P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(1), taskSignature: "\0P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(1), taskSignature: "\0P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/_CryptoExtras.build/_CryptoExtras.modulemap", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(4), taskSignature: "\0P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(4), taskSignature: "\0P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(4), taskSignature: "\0P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(4), taskSignature: "\0P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(4), taskSignature: "\0P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(4), taskSignature: "\0P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CryptoBoringWrapper.build/CryptoBoringWrapper.modu 4% [=====--------------------------------------------------------------------------------------------------------------------------] +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(5), taskSignature: "\0P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(5), taskSignature: "\0P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(5), taskSignature: "\0P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(5), taskSignature: "\0P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(5), taskSignature: "\0P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/DerivedSources/resource_bundle_accessor.swift", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(5), taskSignature: "\0P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Crypto.modulemap", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(13), taskSignature: "\0P2:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(12), taskSignature: "\0P2:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(9), taskSignature: "\0P2:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(8), taskSignature: "\0P2:target-swift-crypto__CryptoExtrasTests-PACKAGE-RESOURCE:_CryptoExtrasTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/swift-crypto__CryptoExtrasTests.build/empty-swift-crypto__CryptoExtrasTests.plist", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(11), taskSignature: "\0P2:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(14), taskSignature: "\0P2:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(12), taskSignature: "\0P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:RegisterExecutionPolicyException /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_Crypto.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(12), taskSignature: "\0P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:macosx:SDK_VARIANT:macos:Debug:Touch /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_Crypto.bundle", parentTaskID: nil)) +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 12)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(14), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:RegisterExecutionPolicyException /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSL.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(14), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:Touch /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSL.bundle", parentTaskID: nil)) +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 14)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(11), taskSignature: "\0P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:RegisterExecutionPolicyException /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoBoringWrapper.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(11), taskSignature: "\0P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:macosx:SDK_VARIANT:macos:Debug:Touch /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoBoringWrapper.bundle", parentTaskID: nil)) +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 11)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(8), taskSignature: "\0P0:target-swift-crypto__CryptoExtrasTests-PACKAGE-RESOURCE:_CryptoExtrasTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:RegisterExecutionPolicyException /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtrasTests.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(8), taskSignature: "\0P0:target-swift-crypto__CryptoExtrasTests-PACKAGE-RESOURCE:_CryptoExtrasTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:Touch /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtrasTests.bundle", parentTaskID: nil)) +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 8)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(13), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:RegisterExecutionPolicyException /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSLShims.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(13), taskSignature: "\0P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:Touch /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CCryptoBoringSSLShims.bundle", parentTaskID: nil)) +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 13)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(9), taskSignature: "\0P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:RegisterExecutionPolicyException /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtras.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(9), taskSignature: "\0P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:macosx:SDK_VARIANT:macos:Debug:Touch /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto__CryptoExtras.bundle", parentTaskID: nil)) +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 9)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(10), taskSignature: "\0P0:target-swift-crypto_CryptoTests-PACKAGE-RESOURCE:CryptoTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoTests.bundle/Contents", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(10), taskSignature: "\0P0:target-swift-crypto_CryptoTests-PACKAGE-RESOURCE:CryptoTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoTests.bundle/Contents/Resources", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(10), taskSignature: "\0P0:target-swift-crypto_CryptoTests-PACKAGE-RESOURCE:CryptoTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:MkDir /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoTests.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(10), taskSignature: "\0P2:target-swift-crypto_CryptoTests-PACKAGE-RESOURCE:CryptoTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/swift-crypto_CryptoTests.build/empty-swift-crypto_CryptoTests.plist", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(10), taskSignature: "\0P0:target-swift-crypto_CryptoTests-PACKAGE-RESOURCE:CryptoTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:RegisterExecutionPolicyException /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoTests.bundle", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(10), taskSignature: "\0P0:target-swift-crypto_CryptoTests-PACKAGE-RESOURCE:CryptoTests-SDKROOT:macosx:SDK_VARIANT:macos:Debug:Touch /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Products/Debug/swift-crypto_CryptoTests.bundle", parentTaskID: nil)) + 8% [==========---------------------------------------------------------------------------------------------------------------------] +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(7), taskSignature: "\0P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(7), taskSignature: "\0P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(7), taskSignature: "\0P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(7), taskSignature: "\0P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(7), taskSignature: "\0P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(7), taskSignature: "\0P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(6), taskSignature: "\0P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(6), taskSignature: "\0P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(6), taskSignature: "\0P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(6), taskSignature: "\0P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(6), taskSignature: "\0P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CCryptoBoringSSLShims.build/Objects-normal/arm11% [=============------------------------------------------------------------------------------------------------------------------] +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-79UTISJ0DZF35WLIVF0S5WORB.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_AvailabilityInternal-1WOUKIVVRHHPP2TF6XHCMC2HB.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-A7HHK9SBOOJJ7LL7JSU8ZKTQ8.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_DarwinFoundation1-4ZJTRLO1ISTFLPX2N5EFUS4R8.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-1614QUZ1DJAWVYAZO11E9THYY.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_DarwinFoundation2-2UJLNM3A3I0LN1BJ31CML734H.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-5PHTFJ0UIO9SV22C4AV5DDE1F.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_DarwinFoundation3-C4IJZX4IL99EWYYE0XHCM6D54.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/CCryptoBoringSSL-ADWYS65VI8E6W1SJ54FY9B77W.scan", parentTaskID: nil)) +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift12% [===============----------------------------------------------------------------------------------------------------------------] +CryptoBoringWrapper 40 / 435warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.priors +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift14% [=================--------------------------------------------------------------------------------------------------------------] +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_AvailabilityInternal-5WYNH8DM82951PCHZ01APU5OZ.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-1TW1QL2KN6IUXAH3U7M2S3RC1.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_DarwinFoundation1-855A3EGKIV7VJHIL1P69JH2WU.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-E0AIFTACHQ9BGOVQ8YYJ6U95H.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-2LHLJRD5V8X4C3JLBO1PVGMC4.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_DarwinFoundation2-9726JQ5DRSYFQ5AQAQZB24ML9.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-8Z30JSUQEFGYVEM72M0MA5V2S.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-BS29E77O3MLLF6BRBCR8W1GU4.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-34OIJB2MCSA0QUA3H32GAIZ86.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_DarwinFoundation3-GP3LPZRZXKTJMTGOC3K49X8M.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-1DH4Y45YHLUOL2SZCOJQ2H84V.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-17QU72TMCDNMB2PDIYNQ0CO1V.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-BG1YLPD9BQ9JPULJ7V3JF1BEO.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-39ONQF0W9EB5LFWZYH7G4RKD0.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/MachO-CH8LHJIVD48HP9V2VTKG3XIYD.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-5C17O84I9EW7PZX311VVSD87H.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/os_object-7GOOZO0DWKAV256R307RCRSTX.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-7W0J2COH158VH5Z7FA2RGB8B0.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-MT7OY9PM5BYG9A1O6QW0Z5UK.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-9DD8E2T294N6SJ2KAW7WGPZUV.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/libkern-43G3NXCBE4DPHHNPHW8TA465S.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/IOKit-YXTR5MXO0QRHGNKJEGUQYT1J.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-3VBDF05CX81U86YHP3ZX2EPKS.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-B17UH7V61GQBRUNE3ZCQ4CQJ5.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/DiskArbitration-7R05GI4XQFRYVYUY3Z5NR58L0.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/launch-AUMC5ULCVUKOWMDF7NRUIJAWZ.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/XPC-C7QNZUING7Z8B4CUTYF7E8H34.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/libDER-5XX0OIJI4ZMF1ZTMZ9AFJ3GE5.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/Security-EUFXO4CWUXO651K8MKJDTGYQW.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/CoreServices-9KYRKBYEYT8WKMC0JGFBXLWXL.scan", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: nil, taskSignature: "\0P0:::PrecompileModule /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-C16% [====================-----------------------------------------------------------------------------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_name.cc:221:23 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_name.cc:443:20 implicit conversion loses integer precision: 'long' to 'int' +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-asn1.build/Debug/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.priors +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift19% [========================-------------------------------------------------------------------------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_crl.cc:89:21 implicit conversion loses integer precision: 'long' to 'int' +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift23% [=============================--------------------------------------------------------------------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_obj.cc:74:10 implicit conversio35% [============================================-----------------------------------------------------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_fre.cc:97:31 implicit conversion loses integer precision: 'long' to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_utl.cc:156:17 implicit conversi37% [==============================================---------------------------------------------------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_x509.cc:264:13 implicit conversion49% [==============================================================-----------------------------------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8.cc:461:59 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8_x509.cc:1057:50 implicit conv51% [================================================================---------------------------------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_lib.cc:490:10 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_lib.cc:498:7 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_lib.cc:587:11 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_lib.cc:687:7 implicit conversion 55% [=====================================================================----------------------------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ec_asn1.cc:158:10 implicit conversi58% [=========================================================================------------------------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/name_print.cc:139:18 implicit conver69% [=======================================================================================----------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_tls.cc:206:49 implicit conversio71% [==========================================================================================-------------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aeseax.cc:77:49 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'unsigned int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa.cc:314:74 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa.cc:844:10 implicit conversion los77% [=================================================================================================------------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/conf/conf.cc:176:22 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/conf/conf.cc:409:14 implicit conversion l81% [======================================================================================================-------------------------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/by_file.cc:40:14 implicit conversion93% [======================================================================================================================---------] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256-nistz.cc.inc:342:60 implicit conversion loses integer precision: 'crypto_word_t' (aka 'unsigned long long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256-nistz.cc.inc:353:48 implicit conversion loses integer precision: 'crypto_word_t' (aka 'unsigned long long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256-nistz.cc.inc:376:44 implicit conversion loses integer precision: 'crypto_word_t' (aka 'unsigned long long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256-nistz.cc.inc:430:66 implicit conversion loses integer precision: 'crypto_word_t' (aka 'unsigned long long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256-nistz.cc.inc:445:68 implicit conversion loses integer precision: 'crypto_word_t' (aka 'unsigned long long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:511:56 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:512:43 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:513:43 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:514:43 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:515:41 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:516:43 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:556:54 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:557:41 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:558:41 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:559:41 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:575:40 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:576:41 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:577:41 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/ec/p256.cc.inc:578:39 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/fors.cc.inc:101:49 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/fors.cc.inc:109:74 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/fors.cc.inc:109:69 implicit conversion loses integer precision: 'unsigned long long' to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/fors.cc.inc:139:57 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/fors.cc.inc:144:38 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/merkle.cc.inc:64:33 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/merkle.cc.inc:91:36 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/merkle.cc.inc:128:33 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/merkle.cc.inc:154:33 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/wots.cc.inc:40:32 implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int') +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/slhdsa/wots.cc.inc:72:74 impli94% [=======================================================================================================================--------] +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(0), taskSignature: "\0P2:target-crypto-shasum-product-PACKAGE-PRODUCT:crypto-shasum-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum.build/Objects-normal/arm64/crypto-shasum.LinkFileList", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(0), taskSignature: "\0P2:target-crypto-shasum-product-PACKAGE-PRODUCT:crypto-shasum-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum.build/Objects-normal/arm64/crypto-shasum_const_extract_protocols.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(0), taskSignature: "\0P2:target-crypto-shasum-product-PACKAGE-PRODUCT:crypto-shasum-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum.build/Objects-normal/arm64/crypto-shasum-OutputFileMap.json", parentTaskID: nil)) +error: Unhandled message: taskUpToDate(SwiftBuild.SwiftBuildMessage.TaskUpToDateInfo(targetID: Optional(0), taskSignature: "\0P2:target-crypto-shasum-product-PACKAGE-PRODUCT:crypto-shasum-SDKROOT:macosx:SDK_VARIANT:macos:Debug:WriteAuxiliaryFile /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum.build/Objects-normal/arm64/crypto-shasum.SwiftFileList", parentTaskID: nil)) +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift95% [========================================================================================================================-------] +_CryptoExtras 462 / 486warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum-57092A5AD6DF766C-testable.build/Objects-normal/arm64/crypto-shasum-57092A5AD6DF766C-testable-primary.priors +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.priors +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 7)) +96% [=========================================================================================================================------] +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 6)) +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 5)) +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 4)) +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift-crypto.build/Debug/crypto-shasum.build/Objects-normal/arm64/crypto-shasum-primary.priors +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift96% [=========================================================================================================================------] +warning: Could not read priors, will not do cross-module incremental builds: The operation couldn’t be completed. (SwiftDriver.ModuleDependencyGraph.ReadError error 14.), at /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/.build/arm64-apple-macosx/Intermediates.noindex/swift97% [===========================================================================================================================----] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_commoncrypto97% [===========================================================================================================================----] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/RSA/RSA_security.swift:18:22 using '@_implementationOnly' without enabling library evolution for '_CryptoExtras' may lead to instability during execution +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_commoncrypto.swift:18:22 using '@_implementationOnly' without enabling library evolution for '_CryptoExtras' may lead to instability during execution +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/RSA/RSA_security.swift:18:22 using '@_implementationOnly' without enabling library evolution for '_CryptoExtras' may lead to instability during execution +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21 stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-Sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21 stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-Sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21 stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-Sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21 stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-Sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21 stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-Sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21 stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-Sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21 stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-Sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21 stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-Sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17 stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-Sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17 stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-Sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 98% [============================================================================================================================---] +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17 stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-Sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17 stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-Sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift:67:9 no calls to throwing functions occur within 'try' expression +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 0)) +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21 stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-Sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21 stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-Sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21 stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-Sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21 stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-Sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21 stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-Sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21 stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-Sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21 stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-Sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode +warning: /Users/bripeticca/dev/swift-tooling/test-projects/swift-crypto/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21 stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-Sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language 99% [=============================================================================================================================--] +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 1)) +error: Unhandled message: targetComplete(SwiftBuild.SwiftBuildMessage.TargetCompleteInfo(targetID: 3)) + +100% [==============================================================================================================================] + + +Build complete! (9.20 secs.)