The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build EllipticCurve, reference 0.3.2 (4ef14c), with Swift 6.1 for watchOS using Xcode 16.3 on 24 Apr 2025 10:37:14 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme EllipticCurve -destination generic/platform=watchOS

Build Log

@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:9:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let Parameters = (
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:26:27: warning: static property 'Characteristic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var Characteristic: UInt256 = Parameters.P
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:26:27: note: convert 'Characteristic' to a 'let' constant to make 'Sendable' shared state immutable
        public static var Characteristic: UInt256 = Parameters.P
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:26:27: note: add '@MainActor' to make static property 'Characteristic' part of global actor 'MainActor'
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:25:19: error: type 'Secp256r1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp256r1.FFInt' and 'Secp256r1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp256r1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:34:23: warning: static property 'Generator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Generator = Secp256r1(withCoordinates: Parameters.G)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:34:23: note: convert 'Generator' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Generator = Secp256r1(withCoordinates: Parameters.G)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:34:23: note: add '@MainActor' to make static property 'Generator' part of global actor 'MainActor'
    public static var Generator = Secp256r1(withCoordinates: Parameters.G)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Generator = Secp256r1(withCoordinates: Parameters.G)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:35:23: warning: static property 'Order' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Order: UInt256 = Parameters.n
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:35:23: note: convert 'Order' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Order: UInt256 = Parameters.n
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:35:23: note: add '@MainActor' to make static property 'Order' part of global actor 'MainActor'
    public static var Order: UInt256 = Parameters.n
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Order: UInt256 = Parameters.n
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:37:23: warning: static property 'a' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var a = FFInt(Parameters.a)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:37:23: note: convert 'a' to a 'let' constant to make 'Sendable' shared state immutable
    public static var a = FFInt(Parameters.a)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:37:23: note: add '@MainActor' to make static property 'a' part of global actor 'MainActor'
    public static var a = FFInt(Parameters.a)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var a = FFInt(Parameters.a)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:38:23: warning: static property 'b' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var b = FFInt(Parameters.b)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:38:23: note: convert 'b' to a 'let' constant to make 'Sendable' shared state immutable
    public static var b = FFInt(Parameters.b)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:38:23: note: add '@MainActor' to make static property 'b' part of global actor 'MainActor'
    public static var b = FFInt(Parameters.b)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var b = FFInt(Parameters.b)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift:11:20: error: type 'ECDSA<Point>.IsomorphicField' does not conform to protocol 'FiniteFieldInteger'
    private struct IsomorphicField: FiniteFieldInteger {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift:11:20: error: 'FiniteFieldInteger' requires the types 'ECDSA<Point>.IsomorphicField' and 'ECDSA<Point>.IsomorphicField.Type' be equivalent
    private struct IsomorphicField: FiniteFieldInteger {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift:11:20: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = ECDSA<Point>.IsomorphicField]
    private struct IsomorphicField: FiniteFieldInteger {
                   ^
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/BasicArithmeticOperations.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteField.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift /Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve_const_extract_protocols.json -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-experimental-feature DebugDescriptionMacro -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EllipticCurve -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve.abi.json
SwiftDriverJobDiscovery normal armv7k Compiling UInt256+Karatsuba.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k Compiling\ BasicArithmeticOperations.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/BasicArithmeticOperations.swift (in target 'EllipticCurve' from project 'EllipticCurve')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/BasicArithmeticOperations.swift (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ FiniteField.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteField.swift (in target 'EllipticCurve' from project 'EllipticCurve')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteField.swift (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling UInt256+Karatsuba.swift (in target 'UInt256' from project 'UInt256')
SwiftEmitModule normal arm64 Emitting\ module\ for\ EllipticCurve (in target 'EllipticCurve' from project 'EllipticCurve')
EmitSwiftModule normal arm64 (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:9:17: warning: let 'Parameters' is not concurrency-safe because non-'Sendable' type '(P: UInt256, a: UInt256, b: UInt256, G: (x: UInt256, y: UInt256), n: UInt256)' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let Parameters = (
                ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'UInt256'
import UInt256
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:9:17: note: add '@MainActor' to make let 'Parameters' part of global actor 'MainActor'
fileprivate let Parameters = (
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:9:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let Parameters = (
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:26:27: warning: static property 'Characteristic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var Characteristic: UInt256 = Parameters.P
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:26:27: note: convert 'Characteristic' to a 'let' constant to make 'Sendable' shared state immutable
        public static var Characteristic: UInt256 = Parameters.P
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:26:27: note: add '@MainActor' to make static property 'Characteristic' part of global actor 'MainActor'
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift:11:22: warning: typealias overriding associated type 'Magnitude' from protocol 'Numeric' is better expressed as same-type constraint on the protocol
    public typealias Magnitude = Self.Type
           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~

Swift.Numeric.Magnitude:2:16: note: 'Magnitude' declared here
associatedtype Magnitude : Comparable, Numeric}
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift:10:22: warning: typealias overriding associated type 'IntegerLiteralType' from protocol 'ExpressibleByIntegerLiteral' is better expressed as same-type constraint on the protocol
    public typealias IntegerLiteralType = Int
           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

Swift.ExpressibleByIntegerLiteral.IntegerLiteralType:2:16: note: 'IntegerLiteralType' declared here
associatedtype IntegerLiteralType : _ExpressibleByBuiltinIntegerLiteral}
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : Comparable'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : Numeric'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : Equatable'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : AdditiveArithmetic'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : ExpressibleByIntegerLiteral'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:25:19: error: type 'Secp192k1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp192k1.FFInt' and 'Secp192k1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp192k1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField+Default.swift:7:22: warning: typealias overriding associated type 'Element' from protocol 'FiniteField' is better expressed as same-type constraint on the protocol
    public typealias Element = Self.Coordinate.Element
           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteField.swift:7:20: note: 'Element' declared here
    associatedtype Element: UnsignedInteger, FixedWidthInteger
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:34:23: warning: static property 'Generator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Generator = Secp192k1(withCoordinates: Parameters.G)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:34:23: note: convert 'Generator' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Generator = Secp192k1(withCoordinates: Parameters.G)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:34:23: note: add '@MainActor' to make static property 'Generator' part of global actor 'MainActor'
    public static var Generator = Secp192k1(withCoordinates: Parameters.G)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Generator = Secp192k1(withCoordinates: Parameters.G)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:35:23: warning: static property 'Order' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Order: UInt256 = Parameters.n
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:35:23: note: convert 'Order' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Order: UInt256 = Parameters.n
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:35:23: note: add '@MainActor' to make static property 'Order' part of global actor 'MainActor'
    public static var Order: UInt256 = Parameters.n
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Order: UInt256 = Parameters.n
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:37:23: warning: static property 'a' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var a = FFInt(Parameters.a)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:37:23: note: convert 'a' to a 'let' constant to make 'Sendable' shared state immutable
    public static var a = FFInt(Parameters.a)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:37:23: note: add '@MainActor' to make static property 'a' part of global actor 'MainActor'
    public static var a = FFInt(Parameters.a)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var a = FFInt(Parameters.a)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:38:23: warning: static property 'b' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var b = FFInt(Parameters.b)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:38:23: note: convert 'b' to a 'let' constant to make 'Sendable' shared state immutable
    public static var b = FFInt(Parameters.b)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:38:23: note: add '@MainActor' to make static property 'b' part of global actor 'MainActor'
    public static var b = FFInt(Parameters.b)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var b = FFInt(Parameters.b)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:9:17: warning: let 'Parameters' is not concurrency-safe because non-'Sendable' type '(P: UInt256, a: UInt256, b: UInt256, G: (x: UInt256, y: UInt256), n: UInt256)' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let Parameters = (
                ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'UInt256'
import UInt256
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:9:17: note: add '@MainActor' to make let 'Parameters' part of global actor 'MainActor'
fileprivate let Parameters = (
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:9:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let Parameters = (
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:26:27: warning: static property 'Characteristic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var Characteristic: UInt256 = Parameters.P
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:26:27: note: convert 'Characteristic' to a 'let' constant to make 'Sendable' shared state immutable
        public static var Characteristic: UInt256 = Parameters.P
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:26:27: note: add '@MainActor' to make static property 'Characteristic' part of global actor 'MainActor'
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:25:19: error: type 'Secp192r1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp192r1.FFInt' and 'Secp192r1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp192r1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:34:23: warning: static property 'Generator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Generator = Secp192r1(withCoordinates: Parameters.G)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:34:23: note: convert 'Generator' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Generator = Secp192r1(withCoordinates: Parameters.G)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:34:23: note: add '@MainActor' to make static property 'Generator' part of global actor 'MainActor'
    public static var Generator = Secp192r1(withCoordinates: Parameters.G)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Generator = Secp192r1(withCoordinates: Parameters.G)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:35:23: warning: static property 'Order' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Order: UInt256 = Parameters.n
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:35:23: note: convert 'Order' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Order: UInt256 = Parameters.n
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:35:23: note: add '@MainActor' to make static property 'Order' part of global actor 'MainActor'
    public static var Order: UInt256 = Parameters.n
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Order: UInt256 = Parameters.n
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:37:23: warning: static property 'a' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var a = FFInt(Parameters.a)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:37:23: note: convert 'a' to a 'let' constant to make 'Sendable' shared state immutable
    public static var a = FFInt(Parameters.a)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:37:23: note: add '@MainActor' to make static property 'a' part of global actor 'MainActor'
    public static var a = FFInt(Parameters.a)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var a = FFInt(Parameters.a)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:38:23: warning: static property 'b' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var b = FFInt(Parameters.b)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:38:23: note: convert 'b' to a 'let' constant to make 'Sendable' shared state immutable
    public static var b = FFInt(Parameters.b)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:38:23: note: add '@MainActor' to make static property 'b' part of global actor 'MainActor'
    public static var b = FFInt(Parameters.b)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var b = FFInt(Parameters.b)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:9:17: warning: let 'Parameters' is not concurrency-safe because non-'Sendable' type '(P: UInt256, a: UInt256, b: UInt256, G: (x: UInt256, y: UInt256), n: UInt256)' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let Parameters = (
                ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'UInt256'
import UInt256
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:9:17: note: add '@MainActor' to make let 'Parameters' part of global actor 'MainActor'
fileprivate let Parameters = (
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:9:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let Parameters = (
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:26:27: warning: static property 'Characteristic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var Characteristic: UInt256 = Parameters.P
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:26:27: note: convert 'Characteristic' to a 'let' constant to make 'Sendable' shared state immutable
        public static var Characteristic: UInt256 = Parameters.P
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:26:27: note: add '@MainActor' to make static property 'Characteristic' part of global actor 'MainActor'
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:25:19: error: type 'Secp224k1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp224k1.FFInt' and 'Secp224k1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp224k1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:34:23: warning: static property 'Generator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Generator = Secp224k1(withCoordinates: Parameters.G)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:34:23: note: convert 'Generator' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Generator = Secp224k1(withCoordinates: Parameters.G)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:34:23: note: add '@MainActor' to make static property 'Generator' part of global actor 'MainActor'
    public static var Generator = Secp224k1(withCoordinates: Parameters.G)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Generator = Secp224k1(withCoordinates: Parameters.G)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:35:23: warning: static property 'Order' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Order: UInt256 = Parameters.n
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:35:23: note: convert 'Order' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Order: UInt256 = Parameters.n
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:35:23: note: add '@MainActor' to make static property 'Order' part of global actor 'MainActor'
    public static var Order: UInt256 = Parameters.n
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Order: UInt256 = Parameters.n
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:37:23: warning: static property 'a' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var a = FFInt(Parameters.a)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:37:23: note: convert 'a' to a 'let' constant to make 'Sendable' shared state immutable
    public static var a = FFInt(Parameters.a)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:37:23: note: add '@MainActor' to make static property 'a' part of global actor 'MainActor'
    public static var a = FFInt(Parameters.a)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var a = FFInt(Parameters.a)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:38:23: warning: static property 'b' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var b = FFInt(Parameters.b)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:38:23: note: convert 'b' to a 'let' constant to make 'Sendable' shared state immutable
    public static var b = FFInt(Parameters.b)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:38:23: note: add '@MainActor' to make static property 'b' part of global actor 'MainActor'
    public static var b = FFInt(Parameters.b)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var b = FFInt(Parameters.b)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:9:17: warning: let 'Parameters' is not concurrency-safe because non-'Sendable' type '(P: UInt256, a: UInt256, b: UInt256, G: (x: UInt256, y: UInt256), n: UInt256)' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let Parameters = (
                ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'UInt256'
import UInt256
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:9:17: note: add '@MainActor' to make let 'Parameters' part of global actor 'MainActor'
fileprivate let Parameters = (
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:9:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let Parameters = (
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:26:27: warning: static property 'Characteristic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var Characteristic: UInt256 = Parameters.P
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:26:27: note: convert 'Characteristic' to a 'let' constant to make 'Sendable' shared state immutable
        public static var Characteristic: UInt256 = Parameters.P
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:26:27: note: add '@MainActor' to make static property 'Characteristic' part of global actor 'MainActor'
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:25:19: error: type 'Secp224r1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp224r1.FFInt' and 'Secp224r1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp224r1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:34:23: warning: static property 'Generator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Generator = Secp224r1(withCoordinates: Parameters.G)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:34:23: note: convert 'Generator' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Generator = Secp224r1(withCoordinates: Parameters.G)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:34:23: note: add '@MainActor' to make static property 'Generator' part of global actor 'MainActor'
    public static var Generator = Secp224r1(withCoordinates: Parameters.G)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Generator = Secp224r1(withCoordinates: Parameters.G)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:35:23: warning: static property 'Order' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Order: UInt256 = Parameters.n
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:35:23: note: convert 'Order' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Order: UInt256 = Parameters.n
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:35:23: note: add '@MainActor' to make static property 'Order' part of global actor 'MainActor'
    public static var Order: UInt256 = Parameters.n
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Order: UInt256 = Parameters.n
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:37:23: warning: static property 'a' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var a = FFInt(Parameters.a)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:37:23: note: convert 'a' to a 'let' constant to make 'Sendable' shared state immutable
    public static var a = FFInt(Parameters.a)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:37:23: note: add '@MainActor' to make static property 'a' part of global actor 'MainActor'
    public static var a = FFInt(Parameters.a)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var a = FFInt(Parameters.a)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:38:23: warning: static property 'b' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var b = FFInt(Parameters.b)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:38:23: note: convert 'b' to a 'let' constant to make 'Sendable' shared state immutable
    public static var b = FFInt(Parameters.b)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:38:23: note: add '@MainActor' to make static property 'b' part of global actor 'MainActor'
    public static var b = FFInt(Parameters.b)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var b = FFInt(Parameters.b)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:8:17: warning: let 'Parameters' is not concurrency-safe because non-'Sendable' type '(P: UInt256, InverseP: (high: UInt256, low: UInt256), a: UInt256, b: UInt256, G: (x: UInt256, y: UInt256), N: UInt256, InverseN: (high: UInt256, low: UInt256))' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let Parameters = (
                ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'UInt256'
import UInt256
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:8:17: note: add '@MainActor' to make let 'Parameters' part of global actor 'MainActor'
fileprivate let Parameters = (
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:8:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let Parameters = (
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:32:27: warning: static property 'Characteristic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var Characteristic: UInt256 = Parameters.P
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:32:27: note: convert 'Characteristic' to a 'let' constant to make 'Sendable' shared state immutable
        public static var Characteristic: UInt256 = Parameters.P
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:32:27: note: add '@MainActor' to make static property 'Characteristic' part of global actor 'MainActor'
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:32:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:33:27: warning: static property 'InverseCharacteristic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var InverseCharacteristic: (high: UInt256, low: UInt256)? = Parameters.InverseP
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:33:27: note: convert 'InverseCharacteristic' to a 'let' constant to make 'Sendable' shared state immutable
        public static var InverseCharacteristic: (high: UInt256, low: UInt256)? = Parameters.InverseP
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:33:27: note: add '@MainActor' to make static property 'InverseCharacteristic' part of global actor 'MainActor'
        public static var InverseCharacteristic: (high: UInt256, low: UInt256)? = Parameters.InverseP
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:33:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var InverseCharacteristic: (high: UInt256, low: UInt256)? = Parameters.InverseP
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:31:19: error: type 'Secp256k1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:31:19: error: 'FiniteFieldInteger' requires the types 'Secp256k1.FFInt' and 'Secp256k1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:31:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp256k1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:41:23: warning: static property 'Generator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Generator = Secp256k1(withCoordinates: Parameters.G)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:41:23: note: convert 'Generator' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Generator = Secp256k1(withCoordinates: Parameters.G)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:41:23: note: add '@MainActor' to make static property 'Generator' part of global actor 'MainActor'
    public static var Generator = Secp256k1(withCoordinates: Parameters.G)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Generator = Secp256k1(withCoordinates: Parameters.G)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:42:23: warning: static property 'Order' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Order: UInt256 = Parameters.N
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:42:23: note: convert 'Order' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Order: UInt256 = Parameters.N
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:42:23: note: add '@MainActor' to make static property 'Order' part of global actor 'MainActor'
    public static var Order: UInt256 = Parameters.N
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Order: UInt256 = Parameters.N
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:43:23: warning: static property 'InverseOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var InverseOrder: (high: UInt256, low: UInt256)? = Parameters.InverseN
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:43:23: note: convert 'InverseOrder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var InverseOrder: (high: UInt256, low: UInt256)? = Parameters.InverseN
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:43:23: note: add '@MainActor' to make static property 'InverseOrder' part of global actor 'MainActor'
    public static var InverseOrder: (high: UInt256, low: UInt256)? = Parameters.InverseN
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var InverseOrder: (high: UInt256, low: UInt256)? = Parameters.InverseN
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:45:23: warning: static property 'a' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var a = FFInt(Parameters.a)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:45:23: note: convert 'a' to a 'let' constant to make 'Sendable' shared state immutable
    public static var a = FFInt(Parameters.a)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:45:23: note: add '@MainActor' to make static property 'a' part of global actor 'MainActor'
    public static var a = FFInt(Parameters.a)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var a = FFInt(Parameters.a)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:46:23: warning: static property 'b' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var b = FFInt(Parameters.b)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:46:23: note: convert 'b' to a 'let' constant to make 'Sendable' shared state immutable
    public static var b = FFInt(Parameters.b)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:46:23: note: add '@MainActor' to make static property 'b' part of global actor 'MainActor'
    public static var b = FFInt(Parameters.b)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var b = FFInt(Parameters.b)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:9:17: warning: let 'Parameters' is not concurrency-safe because non-'Sendable' type '(P: UInt256, a: UInt256, b: UInt256, G: (x: UInt256, y: UInt256), n: UInt256)' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let Parameters = (
                ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'UInt256'
import UInt256
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift:4:15: note: struct 'UInt256' does not conform to the 'Sendable' protocol
public struct UInt256 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:9:17: note: add '@MainActor' to make let 'Parameters' part of global actor 'MainActor'
fileprivate let Parameters = (
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:9:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let Parameters = (
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:26:27: warning: static property 'Characteristic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var Characteristic: UInt256 = Parameters.P
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:26:27: note: convert 'Characteristic' to a 'let' constant to make 'Sendable' shared state immutable
        public static var Characteristic: UInt256 = Parameters.P
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:26:27: note: add '@MainActor' to make static property 'Characteristic' part of global actor 'MainActor'
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var Characteristic: UInt256 = Parameters.P
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:25:19: error: type 'Secp256r1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp256r1.FFInt' and 'Secp256r1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp256r1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:34:23: warning: static property 'Generator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Generator = Secp256r1(withCoordinates: Parameters.G)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:34:23: note: convert 'Generator' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Generator = Secp256r1(withCoordinates: Parameters.G)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:34:23: note: add '@MainActor' to make static property 'Generator' part of global actor 'MainActor'
    public static var Generator = Secp256r1(withCoordinates: Parameters.G)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Generator = Secp256r1(withCoordinates: Parameters.G)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:35:23: warning: static property 'Order' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var Order: UInt256 = Parameters.n
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:35:23: note: convert 'Order' to a 'let' constant to make 'Sendable' shared state immutable
    public static var Order: UInt256 = Parameters.n
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:35:23: note: add '@MainActor' to make static property 'Order' part of global actor 'MainActor'
    public static var Order: UInt256 = Parameters.n
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var Order: UInt256 = Parameters.n
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:37:23: warning: static property 'a' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var a = FFInt(Parameters.a)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:37:23: note: convert 'a' to a 'let' constant to make 'Sendable' shared state immutable
    public static var a = FFInt(Parameters.a)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:37:23: note: add '@MainActor' to make static property 'a' part of global actor 'MainActor'
    public static var a = FFInt(Parameters.a)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var a = FFInt(Parameters.a)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:38:23: warning: static property 'b' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var b = FFInt(Parameters.b)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:38:23: note: convert 'b' to a 'let' constant to make 'Sendable' shared state immutable
    public static var b = FFInt(Parameters.b)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:38:23: note: add '@MainActor' to make static property 'b' part of global actor 'MainActor'
    public static var b = FFInt(Parameters.b)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var b = FFInt(Parameters.b)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift:11:20: error: type 'ECDSA<Point>.IsomorphicField' does not conform to protocol 'FiniteFieldInteger'
    private struct IsomorphicField: FiniteFieldInteger {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift:11:20: error: 'FiniteFieldInteger' requires the types 'ECDSA<Point>.IsomorphicField' and 'ECDSA<Point>.IsomorphicField.Type' be equivalent
    private struct IsomorphicField: FiniteFieldInteger {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift:11:20: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = ECDSA<Point>.IsomorphicField]
    private struct IsomorphicField: FiniteFieldInteger {
                   ^
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/BasicArithmeticOperations.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteField.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift /Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve_const_extract_protocols.json -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-experimental-feature DebugDescriptionMacro -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EllipticCurve -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.abi.json
SwiftDriverJobDiscovery normal arm64_32 Compiling UInt256+CustomStringConvertible.swift, UInt256+Divide&Conquer.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 Compiling\ EllipticCurve+Default.swift,\ EllipticCurve.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve.swift (in target 'EllipticCurve' from project 'EllipticCurve')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve+Default.swift (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve.swift (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling UInt256+Equatable.swift, UInt256+ExpressibleByIntegerLiteral.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64 Compiling\ ECDSA.swift /Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift (in target 'EllipticCurve' from project 'EllipticCurve')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling UInt256+Numeric.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k Compiling\ FiniteFieldInteger.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift (in target 'EllipticCurve' from project 'EllipticCurve')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/BasicArithmeticOperations.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteField.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift /Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/FiniteFieldInteger.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/FiniteFieldInteger.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/FiniteFieldInteger.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/FiniteFieldInteger.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/EllipticCurve_const_extract_protocols.json -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-experimental-feature DebugDescriptionMacro -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EllipticCurve -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/FiniteFieldInteger.o -index-unit-output-path /EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/FiniteFieldInteger.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift:11:22: warning: typealias overriding associated type 'Magnitude' from protocol 'Numeric' is better expressed as same-type constraint on the protocol
    public typealias Magnitude = Self.Type
           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~

Swift.Numeric.Magnitude:2:16: note: 'Magnitude' declared here
associatedtype Magnitude : Comparable, Numeric}
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift:10:22: warning: typealias overriding associated type 'IntegerLiteralType' from protocol 'ExpressibleByIntegerLiteral' is better expressed as same-type constraint on the protocol
    public typealias IntegerLiteralType = Int
           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

Swift.ExpressibleByIntegerLiteral.IntegerLiteralType:2:16: note: 'IntegerLiteralType' declared here
associatedtype IntegerLiteralType : _ExpressibleByBuiltinIntegerLiteral}
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : Comparable'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : Numeric'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : Equatable'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : AdditiveArithmetic'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : ExpressibleByIntegerLiteral'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
SwiftDriverJobDiscovery normal arm64 Compiling UInt256+arc4random.swift (in target 'UInt256' from project 'UInt256')
SwiftDriverJobDiscovery normal armv7k Compiling UInt256+BinaryInteger.swift, UInt256+Comparable.swift (in target 'UInt256' from project 'UInt256')
SwiftDriver\ Compilation UInt256 normal arm64 com.apple.xcode.tools.swift.compiler (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name UInt256 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ EllipticCurve+Default.swift,\ EllipticCurve.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve.swift (in target 'EllipticCurve' from project 'EllipticCurve')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve+Default.swift (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve.swift (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriver\ Compilation UInt256 normal armv7k com.apple.xcode.tools.swift.compiler (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name UInt256 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling BasicArithmeticOperations.swift (in target 'EllipticCurve' from project 'EllipticCurve')
SwiftCompile normal arm64 Compiling\ FiniteFieldInteger+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift (in target 'EllipticCurve' from project 'EllipticCurve')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/Binary/UInt256.o normal armv7k (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/Binary/UInt256.o
SwiftDriverJobDiscovery normal arm64_32 Compiling FiniteField.swift (in target 'EllipticCurve' from project 'EllipticCurve')
SwiftDriverJobDiscovery normal arm64_32 Compiling UInt256+FixedWidthInteger.swift, UInt256+Hashable.swift (in target 'UInt256' from project 'UInt256')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/Binary/UInt256.o normal arm64 (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/Binary/UInt256.o
SwiftCompile normal arm64 Compiling\ Secp192k1.swift,\ Secp192r1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift (in target 'EllipticCurve' from project 'EllipticCurve')
SwiftDriver\ Compilation UInt256 normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name UInt256 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64_32 Compiling\ FiniteFieldInteger.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift (in target 'EllipticCurve' from project 'EllipticCurve')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/Binary/UInt256.o normal arm64_32 (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/Binary/UInt256.o
** BUILD FAILED **
The following build commands failed:
	EmitSwiftModule normal armv7k (in target 'EllipticCurve' from project 'EllipticCurve')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ EllipticCurve (in target 'EllipticCurve' from project 'EllipticCurve')
	EmitSwiftModule normal arm64_32 (in target 'EllipticCurve' from project 'EllipticCurve')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ EllipticCurve (in target 'EllipticCurve' from project 'EllipticCurve')
	EmitSwiftModule normal arm64 (in target 'EllipticCurve' from project 'EllipticCurve')
	SwiftEmitModule normal arm64 Emitting\ module\ for\ EllipticCurve (in target 'EllipticCurve' from project 'EllipticCurve')
	SwiftCompile normal armv7k Compiling\ FiniteFieldInteger.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift (in target 'EllipticCurve' from project 'EllipticCurve')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift (in target 'EllipticCurve' from project 'EllipticCurve')
	Building workspace spi-builder-workspace with scheme EllipticCurve
(9 failures)
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
  EllipticCurve: /Users/admin/builder/spi-builder-workspace
  UInt256: https://github.com/mryu87/UInt256.git @ 0.2.2
resolved source packages: EllipticCurve, UInt256
{
  "dependencies" : [
    {
      "identity" : "uint256",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/mryu87/UInt256.git"
    }
  ],
  "manifest_display_name" : "EllipticCurve",
  "name" : "EllipticCurve",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "EllipticCurve",
      "targets" : [
        "EllipticCurve"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EllipticCurve",
      "module_type" : "SwiftTarget",
      "name" : "EllipticCurve",
      "path" : "Sources",
      "product_dependencies" : [
        "UInt256"
      ],
      "product_memberships" : [
        "EllipticCurve"
      ],
      "sources" : [
        "CommonCurves/Secp192k1.swift",
        "CommonCurves/Secp192r1.swift",
        "CommonCurves/Secp224k1.swift",
        "CommonCurves/Secp224r1.swift",
        "CommonCurves/Secp256k1.swift",
        "CommonCurves/Secp256r1.swift",
        "EllipticCurve/EllipticCurve+Default.swift",
        "EllipticCurve/EllipticCurve.swift",
        "EllipticCurve/EllipticCurveOverFiniteField+Default.swift",
        "EllipticCurve/EllipticCurveOverFiniteField.swift",
        "FiniteField/BasicArithmeticOperations.swift",
        "FiniteField/FiniteField.swift",
        "FiniteField/FiniteFieldInteger+Default.swift",
        "FiniteField/FiniteFieldInteger.swift",
        "SignatureAlgorithms/ECDSA.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "EllipticCurve"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme EllipticCurve -destination generic/platform=watchOS
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme EllipticCurve -destination generic/platform=watchOS
Resolve Package Graph
Resolved source packages:
  EllipticCurve: /Users/admin/builder/spi-builder-workspace
  UInt256: https://github.com/mryu87/UInt256.git @ 0.2.2
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (4 targets)
    Target 'EllipticCurve' in project 'EllipticCurve'
        ➜ Explicit dependency on target 'EllipticCurve' in project 'EllipticCurve'
        ➜ Explicit dependency on target 'UInt256' in project 'UInt256'
    Target 'EllipticCurve' in project 'EllipticCurve'
        ➜ Explicit dependency on target 'UInt256' in project 'UInt256'
    Target 'UInt256' in project 'UInt256'
        ➜ Explicit dependency on target 'UInt256' in project 'UInt256'
    Target 'UInt256' in project 'UInt256' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: edfc7b7cc1e0468f9129bfbeb796099c
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/edfc7b7cc1e0468f9129bfbeb796099c.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
SwiftDriver UInt256 normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name UInt256 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver UInt256 normal armv7k com.apple.xcode.tools.swift.compiler (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name UInt256 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver UInt256 normal arm64 com.apple.xcode.tools.swift.compiler (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name UInt256 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal armv7k Compiling\ UInt256+BinaryInteger.swift,\ UInt256+Comparable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+BinaryInteger.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Comparable.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+BinaryInteger.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Comparable.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ UInt256+Equatable.swift,\ UInt256+ExpressibleByIntegerLiteral.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Equatable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+ExpressibleByIntegerLiteral.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Equatable.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+ExpressibleByIntegerLiteral.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ UInt256 (in target 'UInt256' from project 'UInt256')
EmitSwiftModule normal arm64 (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal armv7k Emitting\ module\ for\ UInt256 (in target 'UInt256' from project 'UInt256')
EmitSwiftModule normal armv7k (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64_32 Emitting\ module\ for\ UInt256 (in target 'UInt256' from project 'UInt256')
EmitSwiftModule normal arm64_32 (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ UInt256+Karatsuba.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Karatsuba.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Karatsuba.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ UInt256+Numeric.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Numeric.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Numeric.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UInt256+FixedWidthInteger.swift,\ UInt256+Hashable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+FixedWidthInteger.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Hashable.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+FixedWidthInteger.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Hashable.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UInt256+BinaryInteger.swift,\ UInt256+Comparable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+BinaryInteger.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Comparable.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+BinaryInteger.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Comparable.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UInt256+arc4random.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+arc4random.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+arc4random.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UInt256.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling UInt256+Equatable.swift, UInt256+ExpressibleByIntegerLiteral.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k Compiling\ UInt256.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling UInt256+Karatsuba.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 Compiling\ UInt256+Numeric.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Numeric.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Numeric.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Emitting module for UInt256 (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 Compiling\ UInt256+Karatsuba.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Karatsuba.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Karatsuba.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling UInt256+Numeric.swift (in target 'UInt256' from project 'UInt256')
SwiftDriver\ Compilation\ Requirements UInt256 normal armv7k com.apple.xcode.tools.swift.compiler (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name UInt256 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for UInt256 (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 Compiling\ UInt256+Equatable.swift,\ UInt256+ExpressibleByIntegerLiteral.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Equatable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+ExpressibleByIntegerLiteral.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Equatable.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+ExpressibleByIntegerLiteral.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UInt256+CustomStringConvertible.swift,\ UInt256+Divide&Conquer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+CustomStringConvertible.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Divide&Conquer.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+CustomStringConvertible.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Divide&Conquer.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Emitting module for UInt256 (in target 'UInt256' from project 'UInt256')
SwiftDriver\ Compilation\ Requirements UInt256 normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name UInt256 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling UInt256+arc4random.swift (in target 'UInt256' from project 'UInt256')
SwiftDriver\ Compilation\ Requirements UInt256 normal arm64 com.apple.xcode.tools.swift.compiler (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name UInt256 -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/UInt256.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.abi.json (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/armv7k/UInt256.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/UInt256.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/UInt256.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.abi.json (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64_32/UInt256.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/UInt256.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/UInt256.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.abi.json (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UInt256.build/Debug-watchos/UInt256.build/Objects-normal/arm64/UInt256.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/UInt256.swiftmodule/arm64-apple-watchos.abi.json
SwiftCompile normal arm64_32 Compiling\ UInt256+FixedWidthInteger.swift,\ UInt256+Hashable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+FixedWidthInteger.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Hashable.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+FixedWidthInteger.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Hashable.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ UInt256+arc4random.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+arc4random.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+arc4random.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling UInt256+FixedWidthInteger.swift, UInt256+Hashable.swift (in target 'UInt256' from project 'UInt256')
SwiftDriver EllipticCurve normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EllipticCurve -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling UInt256+BinaryInteger.swift, UInt256+Comparable.swift (in target 'UInt256' from project 'UInt256')
SwiftDriver EllipticCurve normal armv7k com.apple.xcode.tools.swift.compiler (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EllipticCurve -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/EllipticCurve.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/EllipticCurve-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/EllipticCurve.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/EllipticCurve_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/armv7k/EllipticCurve-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ EllipticCurve (in target 'EllipticCurve' from project 'EllipticCurve')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurve.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/BasicArithmeticOperations.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteField.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift /Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift /Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EllipticCurve -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64/EllipticCurve.abi.json
EmitSwiftModule normal arm64 (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift:11:22: warning: typealias overriding associated type 'Magnitude' from protocol 'Numeric' is better expressed as same-type constraint on the protocol
    public typealias Magnitude = Self.Type
           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~

Swift.Numeric.Magnitude:2:16: note: 'Magnitude' declared here
associatedtype Magnitude : Comparable, Numeric}
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger+Default.swift:10:22: warning: typealias overriding associated type 'IntegerLiteralType' from protocol 'ExpressibleByIntegerLiteral' is better expressed as same-type constraint on the protocol
    public typealias IntegerLiteralType = Int
           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

Swift.ExpressibleByIntegerLiteral.IntegerLiteralType:2:16: note: 'IntegerLiteralType' declared here
associatedtype IntegerLiteralType : _ExpressibleByBuiltinIntegerLiteral}
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : Comparable'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : Numeric'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : Equatable'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : AdditiveArithmetic'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteFieldInteger.swift:9:17: error: no type for 'Self.Magnitude' can satisfy both 'Self.Magnitude == Self.Type' and 'Self.Magnitude : ExpressibleByIntegerLiteral'
public protocol FiniteFieldInteger: FiniteField, BasicArithmeticOperations where Element: FixedWidthIntegerWithBarrettDivision {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:25:19: error: type 'Secp192k1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp192k1.FFInt' and 'Secp192k1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192k1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp192k1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/EllipticCurve/EllipticCurveOverFiniteField+Default.swift:7:22: warning: typealias overriding associated type 'Element' from protocol 'FiniteField' is better expressed as same-type constraint on the protocol
    public typealias Element = Self.Coordinate.Element
           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Sources/FiniteField/FiniteField.swift:7:20: note: 'Element' declared here
    associatedtype Element: UnsignedInteger, FixedWidthInteger
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:25:19: error: type 'Secp192r1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp192r1.FFInt' and 'Secp192r1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp192r1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp192r1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:25:19: error: type 'Secp224k1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp224k1.FFInt' and 'Secp224k1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224k1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp224k1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:25:19: error: type 'Secp224r1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp224r1.FFInt' and 'Secp224r1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp224r1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp224r1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:31:19: error: type 'Secp256k1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:31:19: error: 'FiniteFieldInteger' requires the types 'Secp256k1.FFInt' and 'Secp256k1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256k1.swift:31:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp256k1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:25:19: error: type 'Secp256r1.FFInt' does not conform to protocol 'FiniteFieldInteger'
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:25:19: error: 'FiniteFieldInteger' requires the types 'Secp256r1.FFInt' and 'Secp256r1.FFInt.Type' be equivalent
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonCurves/Secp256r1.swift:25:19: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = Secp256r1.FFInt]
    public struct FFInt: FiniteFieldInteger {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift:11:20: error: type 'ECDSA<Point>.IsomorphicField' does not conform to protocol 'FiniteFieldInteger'
    private struct IsomorphicField: FiniteFieldInteger {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift:11:20: error: 'FiniteFieldInteger' requires the types 'ECDSA<Point>.IsomorphicField' and 'ECDSA<Point>.IsomorphicField.Type' be equivalent
    private struct IsomorphicField: FiniteFieldInteger {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SignatureAlgorithms/ECDSA.swift:11:20: note: requirement specified as 'Self.Magnitude' == 'Self.Type' [with Self = ECDSA<Point>.IsomorphicField]
    private struct IsomorphicField: FiniteFieldInteger {
                   ^
SwiftDriverJobDiscovery normal arm64 Compiling UInt256.swift (in target 'UInt256' from project 'UInt256')
SwiftDriver EllipticCurve normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EllipticCurve -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EllipticCurve.build/Debug-watchos/EllipticCurve.build/Objects-normal/arm64_32/EllipticCurve-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal armv7k Emitting\ module\ for\ EllipticCurve (in target 'EllipticCurve' from project 'EllipticCurve')
EmitSwiftModule normal armv7k (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling UInt256+BinaryInteger.swift, UInt256+Comparable.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64 Compiling\ UInt256+Numeric.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Numeric.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Numeric.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64_32 Emitting\ module\ for\ EllipticCurve (in target 'EllipticCurve' from project 'EllipticCurve')
EmitSwiftModule normal arm64_32 (in target 'EllipticCurve' from project 'EllipticCurve')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling UInt256+Equatable.swift, UInt256+ExpressibleByIntegerLiteral.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 Compiling\ FixedWidthInteger+LongDivision.swift,\ UInt256+BarrettDivision.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/FixedWidthInteger+LongDivision.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+BarrettDivision.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/FixedWidthInteger+LongDivision.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+BarrettDivision.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling UInt256+Karatsuba.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k Compiling\ UInt256+arc4random.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+arc4random.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+arc4random.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling UInt256.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k Compiling\ UInt256+UnsignedInteger.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+UnsignedInteger.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+UnsignedInteger.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling UInt256+Numeric.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k Compiling\ UInt256+FixedWidthInteger.swift,\ UInt256+Hashable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+FixedWidthInteger.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Hashable.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+FixedWidthInteger.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Hashable.swift (in target 'UInt256' from project 'UInt256')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling UInt256+CustomStringConvertible.swift, UInt256+Divide&Conquer.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal armv7k Compiling\ UInt256+CustomStringConvertible.swift,\ UInt256+Divide&Conquer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+CustomStringConvertible.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Divide&Conquer.swift (in target 'UInt256' from project 'UInt256')
SwiftDriverJobDiscovery normal arm64_32 Compiling UInt256+arc4random.swift (in target 'UInt256' from project 'UInt256')
SwiftCompile normal arm64_32 Compiling\ UInt256.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift (in target 'UInt256' from project 'UInt256')
Command SwiftCompile failed with a nonzero exit code
SwiftCompile normal arm64_32 Compiling\ UInt256+BinaryInteger.swift,\ UInt256+Comparable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+BinaryInteger.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Comparable.swift (in target 'UInt256' from project 'UInt256')
Command SwiftCompile failed with a nonzero exit code
SwiftDriverJobDiscovery normal arm64_32 Compiling UInt256+FixedWidthInteger.swift, UInt256+Hashable.swift (in target 'UInt256' from project 'UInt256')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ EllipticCurve (in target 'EllipticCurve' from project 'EllipticCurve')
	EmitSwiftModule normal arm64 (in target 'EllipticCurve' from project 'EllipticCurve')
	SwiftCompile normal arm64_32 Compiling\ UInt256.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256.swift (in target 'UInt256' from project 'UInt256')
	SwiftCompile normal arm64_32 Compiling\ UInt256+BinaryInteger.swift,\ UInt256+Comparable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+BinaryInteger.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UInt256/Sources/UInt256+Comparable.swift (in target 'UInt256' from project 'UInt256')
	Building workspace spi-builder-workspace with scheme EllipticCurve
(5 failures)
BUILD FAILURE 6.1 watchOS