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 VectorMath, reference 0.4.1 (2de258), with Swift 6.0 for watchOS using Xcode 16.0 on 30 Oct 2024 20:23:47 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme VectorMath -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    static let zero = Vector2(0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:118:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Vector2(0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:119:16: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Vector2' may have shared mutable state; this is an error in the Swift 6 language mode
    static let x = Vector2(1, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:40:15: note: consider making struct 'Vector2' conform to the 'Sendable' protocol
public struct Vector2: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:119:16: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    static let x = Vector2(1, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:119:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let x = Vector2(1, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:120:16: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Vector2' may have shared mutable state; this is an error in the Swift 6 language mode
    static let y = Vector2(0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:40:15: note: consider making struct 'Vector2' conform to the 'Sendable' protocol
public struct Vector2: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:120:16: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    static let y = Vector2(0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:120:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let y = Vector2(0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:233:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Vector3(0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:233:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Vector3(0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:233:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Vector3(0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:234:16: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let x = Vector3(1, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:234:16: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    static let x = Vector3(1, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:234:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let x = Vector3(1, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:235:16: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let y = Vector3(0, 1, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:235:16: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    static let y = Vector3(0, 1, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:235:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let y = Vector3(0, 1, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:236:16: warning: static property 'z' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let z = Vector3(0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:236:16: note: annotate 'z' with '@MainActor' if property should only be accessed from the main actor
    static let z = Vector3(0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:236:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let z = Vector3(0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:372:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Vector4(0, 0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:372:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Vector4(0, 0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:372:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Vector4(0, 0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:373:16: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let x = Vector4(1, 0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:373:16: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    static let x = Vector4(1, 0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:373:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let x = Vector4(1, 0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:374:16: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let y = Vector4(0, 1, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:374:16: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    static let y = Vector4(0, 1, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:374:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let y = Vector4(0, 1, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:375:16: warning: static property 'z' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let z = Vector4(0, 0, 1, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:375:16: note: annotate 'z' with '@MainActor' if property should only be accessed from the main actor
    static let z = Vector4(0, 0, 1, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:375:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let z = Vector4(0, 0, 1, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:376:16: warning: static property 'w' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let w = Vector4(0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:376:16: note: annotate 'w' with '@MainActor' if property should only be accessed from the main actor
    static let w = Vector4(0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:376:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let w = Vector4(0, 0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:517:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Matrix3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let identity = Matrix3(1, 0, 0, 0, 1, 0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:58:15: note: consider making struct 'Matrix3' conform to the 'Sendable' protocol
public struct Matrix3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:517:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
    static let identity = Matrix3(1, 0, 0, 0, 1, 0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:517:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let identity = Matrix3(1, 0, 0, 0, 1, 0, 0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:660:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Matrix4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let identity = Matrix4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:70:15: note: consider making struct 'Matrix4' conform to the 'Sendable' protocol
public struct Matrix4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:660:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
    static let identity = Matrix4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:660:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let identity = Matrix4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:970:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Quaternion' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Quaternion(0, 0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:89:15: note: consider making struct 'Quaternion' conform to the 'Sendable' protocol
public struct Quaternion: Hashable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:970:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Quaternion(0, 0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:970:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Quaternion(0, 0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:971:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Quaternion' may have shared mutable state; this is an error in the Swift 6 language mode
    static let identity = Quaternion(0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:89:15: note: consider making struct 'Quaternion' conform to the 'Sendable' protocol
public struct Quaternion: Hashable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:971:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
    static let identity = Quaternion(0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:971:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let identity = Quaternion(0, 0, 0, 1)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ VectorMath (in target 'VectorMath' from project 'VectorMath')
	EmitSwiftModule normal arm64_32 (in target 'VectorMath' from project 'VectorMath')
	SwiftEmitModule normal arm64 Emitting\ module\ for\ VectorMath (in target 'VectorMath' from project 'VectorMath')
	EmitSwiftModule normal arm64 (in target 'VectorMath' from project 'VectorMath')
	SwiftCompile normal arm64 Compiling\ VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift (in target 'VectorMath' from project 'VectorMath')
	Building workspace spi-builder-workspace with scheme VectorMath
(6 failures)
Command line invocation:
    /Applications/Xcode-16.1.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 VectorMath -destination generic/platform=watchOS "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete"
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
Resolve Package Graph
Resolved source packages:
  VectorMath: /Users/admin/builder/spi-builder-workspace
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'VectorMath' in project 'VectorMath'
        ➜ Explicit dependency on target 'VectorMath' in project 'VectorMath'
    Target 'VectorMath' in project 'VectorMath' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ClangStatCache /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache
SwiftDriver VectorMath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name VectorMath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath-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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver VectorMath normal armv7k com.apple.xcode.tools.swift.compiler (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name VectorMath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath-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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath_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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver VectorMath normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name VectorMath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath-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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath_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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal armv7k Compiling\ VectorMath.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.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/VectorMath/VectorMath.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal armv7k Emitting\ module\ for\ VectorMath (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.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/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.abi.json
EmitSwiftModule normal armv7k (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath.abi.json
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift:68:18: error: 'CATransform3D' is unavailable in watchOS
public extension CATransform3D {
                 ^~~~~~~~~~~~~
QuartzCore.CATransform3D:3:15: note: 'CATransform3D' has been explicitly marked unavailable here
public struct CATransform3D {
              ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift:106:15: error: 'CATransform3D' is unavailable in watchOS
    init(_ m: CATransform3D) {
              ^~~~~~~~~~~~~
QuartzCore.CATransform3D:3:15: note: 'CATransform3D' has been explicitly marked unavailable here
public struct CATransform3D {
              ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:118:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector2' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Vector2(0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:40:15: note: consider making struct 'Vector2' conform to the 'Sendable' protocol
public struct Vector2: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:118:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Vector2(0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:118:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Vector2(0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:119:16: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Vector2' may have shared mutable state; this is an error in the Swift 6 language mode
    static let x = Vector2(1, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:40:15: note: consider making struct 'Vector2' conform to the 'Sendable' protocol
public struct Vector2: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:119:16: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    static let x = Vector2(1, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:119:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let x = Vector2(1, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:120:16: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Vector2' may have shared mutable state; this is an error in the Swift 6 language mode
    static let y = Vector2(0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:40:15: note: consider making struct 'Vector2' conform to the 'Sendable' protocol
public struct Vector2: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:120:16: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    static let y = Vector2(0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:120:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let y = Vector2(0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:233:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Vector3(0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:233:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Vector3(0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:233:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Vector3(0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:234:16: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let x = Vector3(1, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:234:16: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    static let x = Vector3(1, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:234:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let x = Vector3(1, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:235:16: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let y = Vector3(0, 1, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:235:16: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    static let y = Vector3(0, 1, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:235:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let y = Vector3(0, 1, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:236:16: warning: static property 'z' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let z = Vector3(0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:236:16: note: annotate 'z' with '@MainActor' if property should only be accessed from the main actor
    static let z = Vector3(0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:236:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let z = Vector3(0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:372:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Vector4(0, 0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:372:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Vector4(0, 0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:372:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Vector4(0, 0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:373:16: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let x = Vector4(1, 0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:373:16: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    static let x = Vector4(1, 0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:373:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let x = Vector4(1, 0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:374:16: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let y = Vector4(0, 1, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:374:16: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    static let y = Vector4(0, 1, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:374:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let y = Vector4(0, 1, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:375:16: warning: static property 'z' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let z = Vector4(0, 0, 1, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:375:16: note: annotate 'z' with '@MainActor' if property should only be accessed from the main actor
    static let z = Vector4(0, 0, 1, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:375:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let z = Vector4(0, 0, 1, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:376:16: warning: static property 'w' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let w = Vector4(0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:376:16: note: annotate 'w' with '@MainActor' if property should only be accessed from the main actor
    static let w = Vector4(0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:376:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let w = Vector4(0, 0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:517:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Matrix3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let identity = Matrix3(1, 0, 0, 0, 1, 0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:58:15: note: consider making struct 'Matrix3' conform to the 'Sendable' protocol
public struct Matrix3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:517:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
    static let identity = Matrix3(1, 0, 0, 0, 1, 0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:517:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let identity = Matrix3(1, 0, 0, 0, 1, 0, 0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:660:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Matrix4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let identity = Matrix4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:70:15: note: consider making struct 'Matrix4' conform to the 'Sendable' protocol
public struct Matrix4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:660:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
    static let identity = Matrix4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:660:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let identity = Matrix4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:970:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Quaternion' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Quaternion(0, 0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:89:15: note: consider making struct 'Quaternion' conform to the 'Sendable' protocol
public struct Quaternion: Hashable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:970:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Quaternion(0, 0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:970:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Quaternion(0, 0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:971:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Quaternion' may have shared mutable state; this is an error in the Swift 6 language mode
    static let identity = Quaternion(0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:89:15: note: consider making struct 'Quaternion' conform to the 'Sendable' protocol
public struct Quaternion: Hashable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:971:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
    static let identity = Quaternion(0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:971:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let identity = Quaternion(0, 0, 0, 1)
               ^
    nonisolated(unsafe)
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ VectorMath (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.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/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.abi.json
EmitSwiftModule normal arm64_32 (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.abi.json
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift:68:18: error: 'CATransform3D' is unavailable in watchOS
public extension CATransform3D {
                 ^~~~~~~~~~~~~
QuartzCore.CATransform3D:3:15: note: 'CATransform3D' has been explicitly marked unavailable here
public struct CATransform3D {
              ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift:106:15: error: 'CATransform3D' is unavailable in watchOS
    init(_ m: CATransform3D) {
              ^~~~~~~~~~~~~
QuartzCore.CATransform3D:3:15: note: 'CATransform3D' has been explicitly marked unavailable here
public struct CATransform3D {
              ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:118:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector2' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Vector2(0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:40:15: note: consider making struct 'Vector2' conform to the 'Sendable' protocol
public struct Vector2: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:118:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Vector2(0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:118:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Vector2(0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:119:16: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Vector2' may have shared mutable state; this is an error in the Swift 6 language mode
    static let x = Vector2(1, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:40:15: note: consider making struct 'Vector2' conform to the 'Sendable' protocol
public struct Vector2: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:119:16: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    static let x = Vector2(1, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:119:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let x = Vector2(1, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:120:16: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Vector2' may have shared mutable state; this is an error in the Swift 6 language mode
    static let y = Vector2(0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:40:15: note: consider making struct 'Vector2' conform to the 'Sendable' protocol
public struct Vector2: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:120:16: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    static let y = Vector2(0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:120:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let y = Vector2(0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:233:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Vector3(0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:233:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Vector3(0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:233:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Vector3(0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:234:16: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let x = Vector3(1, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:234:16: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    static let x = Vector3(1, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:234:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let x = Vector3(1, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:235:16: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let y = Vector3(0, 1, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:235:16: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    static let y = Vector3(0, 1, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:235:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let y = Vector3(0, 1, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:236:16: warning: static property 'z' is not concurrency-safe because non-'Sendable' type 'Vector3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let z = Vector3(0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:45:15: note: consider making struct 'Vector3' conform to the 'Sendable' protocol
public struct Vector3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:236:16: note: annotate 'z' with '@MainActor' if property should only be accessed from the main actor
    static let z = Vector3(0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:236:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let z = Vector3(0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:372:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Vector4(0, 0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:372:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Vector4(0, 0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:372:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Vector4(0, 0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:373:16: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let x = Vector4(1, 0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:373:16: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    static let x = Vector4(1, 0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:373:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let x = Vector4(1, 0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:374:16: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let y = Vector4(0, 1, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:374:16: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    static let y = Vector4(0, 1, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:374:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let y = Vector4(0, 1, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:375:16: warning: static property 'z' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let z = Vector4(0, 0, 1, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:375:16: note: annotate 'z' with '@MainActor' if property should only be accessed from the main actor
    static let z = Vector4(0, 0, 1, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:375:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let z = Vector4(0, 0, 1, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:376:16: warning: static property 'w' is not concurrency-safe because non-'Sendable' type 'Vector4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let w = Vector4(0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:51:15: note: consider making struct 'Vector4' conform to the 'Sendable' protocol
public struct Vector4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:376:16: note: annotate 'w' with '@MainActor' if property should only be accessed from the main actor
    static let w = Vector4(0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:376:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let w = Vector4(0, 0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:517:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Matrix3' may have shared mutable state; this is an error in the Swift 6 language mode
    static let identity = Matrix3(1, 0, 0, 0, 1, 0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:58:15: note: consider making struct 'Matrix3' conform to the 'Sendable' protocol
public struct Matrix3: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:517:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
    static let identity = Matrix3(1, 0, 0, 0, 1, 0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:517:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let identity = Matrix3(1, 0, 0, 0, 1, 0, 0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:660:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Matrix4' may have shared mutable state; this is an error in the Swift 6 language mode
    static let identity = Matrix4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:70:15: note: consider making struct 'Matrix4' conform to the 'Sendable' protocol
public struct Matrix4: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:660:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
    static let identity = Matrix4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:660:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let identity = Matrix4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:970:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Quaternion' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zero = Quaternion(0, 0, 0, 0)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:89:15: note: consider making struct 'Quaternion' conform to the 'Sendable' protocol
public struct Quaternion: Hashable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:970:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    static let zero = Quaternion(0, 0, 0, 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:970:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zero = Quaternion(0, 0, 0, 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:971:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Quaternion' may have shared mutable state; this is an error in the Swift 6 language mode
    static let identity = Quaternion(0, 0, 0, 1)
               ^
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:89:15: note: consider making struct 'Quaternion' conform to the 'Sendable' protocol
public struct Quaternion: Hashable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:971:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
    static let identity = Quaternion(0, 0, 0, 1)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift:971:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let identity = Quaternion(0, 0, 0, 1)
               ^
    nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ VectorMath (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.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/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.abi.json
EmitSwiftModule normal arm64 (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath.abi.json
SwiftCompile normal arm64 Compiling\ VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+Quartz.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64/VectorMath+MapKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.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/VectorMath/VectorMath+Quartz.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/armv7k/VectorMath+Quartz.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ VectorMath.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift (in target 'VectorMath' from project 'VectorMath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+MapKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+SceneKit.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+Quartz.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+Quartz.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+Quartz.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+Quartz.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.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 -profile-generate -profile-coverage-mapping -swift-version 4.2 -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/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.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 -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.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/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name VectorMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+Quartz.o -index-unit-output-path /VectorMath.build/Debug-watchos/VectorMath.build/Objects-normal/arm64_32/VectorMath+Quartz.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal armv7k Emitting\ module\ for\ VectorMath (in target 'VectorMath' from project 'VectorMath')
	EmitSwiftModule normal armv7k (in target 'VectorMath' from project 'VectorMath')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ VectorMath (in target 'VectorMath' from project 'VectorMath')
	EmitSwiftModule normal arm64_32 (in target 'VectorMath' from project 'VectorMath')
	SwiftCompile normal arm64_32 Compiling\ VectorMath+Quartz.swift /Users/admin/builder/spi-builder-workspace/VectorMath/VectorMath+Quartz.swift (in target 'VectorMath' from project 'VectorMath')
	Building workspace spi-builder-workspace with scheme VectorMath
(6 failures)
BUILD FAILURE 6.0 watchOS