Build Information
Successful build of GameMath, reference 0.9.0 (037cd3
), with Swift 6.0 for macOS (Xcode) using Xcode 16.0 on 3 Nov 2024 05:25:26 UTC.
Swift 6 data race errors: 53
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme GameMath -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Position3.swift:146:16: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var zero = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Position3.swift:146:16: note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
static var zero = Self(0)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Position3.swift:146:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static var zero = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Position3.swift:146:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var zero = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Quaternion.swift:423: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 = Self(Radians(0), axis: .forward)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Quaternion.swift:83:15: note: consider making struct 'Quaternion' conform to the 'Sendable' protocol
public struct Quaternion {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Quaternion.swift:423:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Self(Radians(0), axis: .forward)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Quaternion.swift:423:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Self(Radians(0), axis: .forward)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Transform3.swift:98:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Transform3' may have shared mutable state; this is an error in the Swift 6 language mode
static let `default` = Self(position: .zero, rotation: .zero, scale: .one)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Transform3.swift:8:15: note: consider making struct 'Transform3' conform to the 'Sendable' protocol
public struct Transform3 {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Transform3.swift:98:16: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
static let `default` = Self(position: .zero, rotation: .zero, scale: .one)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Transform3.swift:98:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let `default` = Self(position: .zero, rotation: .zero, scale: .one)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Circle.swift,\ Direction2.swift,\ Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Circle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Insets.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Circle.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Insets.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/Sources/GameMath/2D\ Types/Circle.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Circle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Insets.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Circle.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Insets.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/Sources/GameMath/2D\ Types/Direction2.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Circle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Insets.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Circle.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Insets.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:85:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Direction2' may have shared mutable state; this is an error in the Swift 6 language mode
static let zero = Self(x: 0, y: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:10:15: note: consider making struct 'Direction2' conform to the 'Sendable' protocol
public struct Direction2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:85:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Self(x: 0, y: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:85:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Self(x: 0, y: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:87:16: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'Direction2' may have shared mutable state; this is an error in the Swift 6 language mode
static let up = Self(x: 0, y: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:10:15: note: consider making struct 'Direction2' conform to the 'Sendable' protocol
public struct Direction2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:87:16: note: annotate 'up' with '@MainActor' if property should only be accessed from the main actor
static let up = Self(x: 0, y: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:87:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let up = Self(x: 0, y: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:88:16: warning: static property 'down' is not concurrency-safe because non-'Sendable' type 'Direction2' may have shared mutable state; this is an error in the Swift 6 language mode
static let down = Self(x: 0, y: -1)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:10:15: note: consider making struct 'Direction2' conform to the 'Sendable' protocol
public struct Direction2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:88:16: note: annotate 'down' with '@MainActor' if property should only be accessed from the main actor
static let down = Self(x: 0, y: -1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let down = Self(x: 0, y: -1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:89:16: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Direction2' may have shared mutable state; this is an error in the Swift 6 language mode
static let left = Self(x: -1, y: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:10:15: note: consider making struct 'Direction2' conform to the 'Sendable' protocol
public struct Direction2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:89:16: note: annotate 'left' with '@MainActor' if property should only be accessed from the main actor
static let left = Self(x: -1, y: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:89:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let left = Self(x: -1, y: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:90:16: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Direction2' may have shared mutable state; this is an error in the Swift 6 language mode
static let right = Self(x: 1, y: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:10:15: note: consider making struct 'Direction2' conform to the 'Sendable' protocol
public struct Direction2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:90:16: note: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
static let right = Self(x: 1, y: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Direction2.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let right = Self(x: 1, y: 0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Circle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Insets.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Circle.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Insets.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Insets.swift:36:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Insets' may have shared mutable state; this is an error in the Swift 6 language mode
static let zero = Insets(top: 0, leading: 0, bottom: 0, trailing: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Insets.swift:8:15: note: consider making struct 'Insets' conform to the 'Sendable' protocol
public struct Insets {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Insets.swift:36:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Insets(top: 0, leading: 0, bottom: 0, trailing: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Insets.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Insets(top: 0, leading: 0, bottom: 0, trailing: 0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Matrix3x3.swift,\ Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.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/Sources/GameMath/3D\ Types/Matrix3x3.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:150:16: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'Direction3' may have shared mutable state; this is an error in the Swift 6 language mode
static let up = Self(x: 0, y: 1, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:62:15: note: consider making struct 'Direction3' conform to the 'Sendable' protocol
public struct Direction3: Vector3 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:150:16: note: annotate 'up' with '@MainActor' if property should only be accessed from the main actor
static let up = Self(x: 0, y: 1, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:150:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let up = Self(x: 0, y: 1, z: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: warning: static property 'right' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var right = Self(x: 1, y: 0, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: note: convert 'right' to a 'let' constant to make 'Sendable' shared state immutable
static var right = Self(x: 1, y: 0, z: 0)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: note: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
static var right = Self(x: 1, y: 0, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var right = Self(x: 1, y: 0, z: 0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix3x3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Matrix4x4.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Matrix4x4.swift:97:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Matrix4x4' may have shared mutable state; this is an error in the Swift 6 language mode
static let identity = Self(a: 1, b: 0, c: 0, d: 0,
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Matrix4x4.swift:45:15: note: consider making struct 'Matrix4x4' conform to the 'Sendable' protocol
public struct Matrix4x4 {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Matrix4x4.swift:97:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
static let identity = Self(a: 1, b: 0, c: 0, d: 0,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Matrix4x4.swift:97:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let identity = Self(a: 1, b: 0, c: 0, d: 0,
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Transform2.swift,\ Vector2.swift,\ Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Transform2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Vector2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Transform2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Vector2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction3.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/Sources/GameMath/2D\ Types/Transform2.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Transform2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Vector2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Transform2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Vector2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction3.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Matrix4x4.swift:97:16: warning: static property 'identity' is not concurrency-safe because non-'Sendable' type 'Matrix4x4' may have shared mutable state; this is an error in the Swift 6 language mode
static let identity = Self(a: 1, b: 0, c: 0, d: 0,
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Matrix4x4.swift:45:15: note: consider making struct 'Matrix4x4' conform to the 'Sendable' protocol
public struct Matrix4x4 {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Matrix4x4.swift:97:16: note: annotate 'identity' with '@MainActor' if property should only be accessed from the main actor
static let identity = Self(a: 1, b: 0, c: 0, d: 0,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Matrix4x4.swift:97:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let identity = Self(a: 1, b: 0, c: 0, d: 0,
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Position2.swift:61:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Position2' may have shared mutable state; this is an error in the Swift 6 language mode
static let zero = Self(x: 0, y: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Position2.swift:39:15: note: consider making struct 'Position2' conform to the 'Sendable' protocol
public struct Position2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Position2.swift:61:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Self(x: 0, y: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Position2.swift:61:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Self(x: 0, y: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:68:16: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Size2' may have shared mutable state; this is an error in the Swift 6 language mode
static let one = Self(width: 1, height: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:20:15: note: consider making struct 'Size2' conform to the 'Sendable' protocol
public struct Size2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:68:16: note: annotate 'one' with '@MainActor' if property should only be accessed from the main actor
static let one = Self(width: 1, height: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:68:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let one = Self(width: 1, height: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Transform2.swift:109:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Transform2' may have shared mutable state; this is an error in the Swift 6 language mode
public static let zero = Self(position: .zero, rotation: .zero, scale: .zero)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Transform2.swift:43:15: note: consider making struct 'Transform2' conform to the 'Sendable' protocol
public struct Transform2 {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Transform2.swift:109:23: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
public static let zero = Self(position: .zero, rotation: .zero, scale: .zero)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Transform2.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let zero = Self(position: .zero, rotation: .zero, scale: .zero)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:66:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size2' may have shared mutable state; this is an error in the Swift 6 language mode
static let zero = Self(width: 0, height: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:20:15: note: consider making struct 'Size2' conform to the 'Sendable' protocol
public struct Size2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:66:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Self(width: 0, height: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:66:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Self(width: 0, height: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Transform2.swift:111:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Transform2' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = Self(position: .zero, rotation: .zero, scale: .one)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Transform2.swift:43:15: note: consider making struct 'Transform2' conform to the 'Sendable' protocol
public struct Transform2 {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Transform2.swift:111:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
public static let `default` = Self(position: .zero, rotation: .zero, scale: .one)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Transform2.swift:111:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = Self(position: .zero, rotation: .zero, scale: .one)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Transform2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Vector2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Transform2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Vector2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction3.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/Sources/GameMath/3D\ Types/Direction3.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Transform2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Vector2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Transform2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Vector2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Direction3.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:160:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Direction3' may have shared mutable state; this is an error in the Swift 6 language mode
static let zero = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:62:15: note: consider making struct 'Direction3' conform to the 'Sendable' protocol
public struct Direction3: Vector3 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:160:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:160:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:150:16: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'Direction3' may have shared mutable state; this is an error in the Swift 6 language mode
static let up = Self(x: 0, y: 1, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:62:15: note: consider making struct 'Direction3' conform to the 'Sendable' protocol
public struct Direction3: Vector3 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:150:16: note: annotate 'up' with '@MainActor' if property should only be accessed from the main actor
static let up = Self(x: 0, y: 1, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:150:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let up = Self(x: 0, y: 1, z: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:151:16: warning: static property 'down' is not concurrency-safe because non-'Sendable' type 'Direction3' may have shared mutable state; this is an error in the Swift 6 language mode
static let down = Self(x: 0, y: -1, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:62:15: note: consider making struct 'Direction3' conform to the 'Sendable' protocol
public struct Direction3: Vector3 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:151:16: note: annotate 'down' with '@MainActor' if property should only be accessed from the main actor
static let down = Self(x: 0, y: -1, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:151:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let down = Self(x: 0, y: -1, z: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:152:16: warning: static property 'left' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var left = Self(x: -1, y: 0, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:152:16: note: convert 'left' to a 'let' constant to make 'Sendable' shared state immutable
static var left = Self(x: -1, y: 0, z: 0)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:152:16: note: annotate 'left' with '@MainActor' if property should only be accessed from the main actor
static var left = Self(x: -1, y: 0, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:152:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var left = Self(x: -1, y: 0, z: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: warning: static property 'right' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var right = Self(x: 1, y: 0, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: note: convert 'right' to a 'let' constant to make 'Sendable' shared state immutable
static var right = Self(x: 1, y: 0, z: 0)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: note: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
static var right = Self(x: 1, y: 0, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var right = Self(x: 1, y: 0, z: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:154:16: warning: static property 'forward' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var forward = Self(x: 0, y: 0, z: -1)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:154:16: note: convert 'forward' to a 'let' constant to make 'Sendable' shared state immutable
static var forward = Self(x: 0, y: 0, z: -1)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:154:16: note: annotate 'forward' with '@MainActor' if property should only be accessed from the main actor
static var forward = Self(x: 0, y: 0, z: -1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:154:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var forward = Self(x: 0, y: 0, z: -1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:155:16: warning: static property 'backward' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var backward = Self(x: 0, y: 0, z: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:155:16: note: convert 'backward' to a 'let' constant to make 'Sendable' shared state immutable
static var backward = Self(x: 0, y: 0, z: 1)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:155:16: note: annotate 'backward' with '@MainActor' if property should only be accessed from the main actor
static var backward = Self(x: 0, y: 0, z: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:155:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var backward = Self(x: 0, y: 0, z: 1)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Position2.swift,\ Rect.swift,\ Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Rect.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Size2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Rect.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Size2.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/Sources/GameMath/2D\ Types/Position2.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Rect.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Size2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Rect.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Size2.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Position2.swift:61:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Position2' may have shared mutable state; this is an error in the Swift 6 language mode
static let zero = Self(x: 0, y: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Position2.swift:39:15: note: consider making struct 'Position2' conform to the 'Sendable' protocol
public struct Position2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Position2.swift:61:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Self(x: 0, y: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Position2.swift:61:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Self(x: 0, y: 0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Rect.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Size2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Rect.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Size2.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Rect.swift:236:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Rect' may have shared mutable state; this is an error in the Swift 6 language mode
public static let zero = Self(x: 0, y: 0, width: 0, height: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Rect.swift:22:15: note: consider making struct 'Rect' conform to the 'Sendable' protocol
public struct Rect {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Rect.swift:236:23: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
public static let zero = Self(x: 0, y: 0, width: 0, height: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Rect.swift:236:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let zero = Self(x: 0, y: 0, width: 0, height: 0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position2.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Rect.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Size2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position2.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Rect.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Size2.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:66:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size2' may have shared mutable state; this is an error in the Swift 6 language mode
static let zero = Self(width: 0, height: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:20:15: note: consider making struct 'Size2' conform to the 'Sendable' protocol
public struct Size2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:66:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Self(width: 0, height: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:66:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Self(width: 0, height: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:68:16: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Size2' may have shared mutable state; this is an error in the Swift 6 language mode
static let one = Self(width: 1, height: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:20:15: note: consider making struct 'Size2' conform to the 'Sendable' protocol
public struct Size2: Vector2 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:68:16: note: annotate 'one' with '@MainActor' if property should only be accessed from the main actor
static let one = Self(width: 1, height: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D Types/Size2.swift:68:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let one = Self(width: 1, height: 1)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Size3.swift, Transform3.swift (in target 'GameMath' from project 'GameMath')
SwiftCompile normal arm64 Compiling\ Position3.swift,\ Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.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/Sources/GameMath/3D\ Types/Position3.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Position3.swift:146:16: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var zero = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Position3.swift:146:16: note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
static var zero = Self(0)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Position3.swift:146:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static var zero = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Position3.swift:146:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var zero = Self(0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift (in target 'GameMath' from project 'GameMath')
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/Sources/GameMath/2D\ Types/Circle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Insets.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Position2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Rect.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Size2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Transform2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/Vector2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Direction3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix3x3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Matrix4x4.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Position3.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Quaternion.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Size3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Transform3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/Vector3.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/BitStream.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/CardinalDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Degrees\ \&\ Radians.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/FastInverseSquareRoot.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/PlatformSpecific/CoreGraphics.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_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/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Position3.o -index-unit-output-path /GameMath.build/Debug/GameMath.build/Objects-normal/arm64/Quaternion.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:150:16: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'Direction3' may have shared mutable state; this is an error in the Swift 6 language mode
static let up = Self(x: 0, y: 1, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:62:15: note: consider making struct 'Direction3' conform to the 'Sendable' protocol
public struct Direction3: Vector3 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:150:16: note: annotate 'up' with '@MainActor' if property should only be accessed from the main actor
static let up = Self(x: 0, y: 1, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:150:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let up = Self(x: 0, y: 1, z: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: warning: static property 'right' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var right = Self(x: 1, y: 0, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: note: convert 'right' to a 'let' constant to make 'Sendable' shared state immutable
static var right = Self(x: 1, y: 0, z: 0)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: note: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
static var right = Self(x: 1, y: 0, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:153:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var right = Self(x: 1, y: 0, z: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Quaternion.swift:423: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 = Self(Radians(0), axis: .forward)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Quaternion.swift:83:15: note: consider making struct 'Quaternion' conform to the 'Sendable' protocol
public struct Quaternion {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Quaternion.swift:423:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Self(Radians(0), axis: .forward)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Quaternion.swift:423:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Self(Radians(0), axis: .forward)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:154:16: warning: static property 'forward' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var forward = Self(x: 0, y: 0, z: -1)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:154:16: note: convert 'forward' to a 'let' constant to make 'Sendable' shared state immutable
static var forward = Self(x: 0, y: 0, z: -1)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:154:16: note: annotate 'forward' with '@MainActor' if property should only be accessed from the main actor
static var forward = Self(x: 0, y: 0, z: -1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:154:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var forward = Self(x: 0, y: 0, z: -1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:160:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Direction3' may have shared mutable state; this is an error in the Swift 6 language mode
static let zero = Self(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:62:15: note: consider making struct 'Direction3' conform to the 'Sendable' protocol
public struct Direction3: Vector3 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:160:16: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
static let zero = Self(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:160:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let zero = Self(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:155:16: warning: static property 'backward' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var backward = Self(x: 0, y: 0, z: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:155:16: note: convert 'backward' to a 'let' constant to make 'Sendable' shared state immutable
static var backward = Self(x: 0, y: 0, z: 1)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:155:16: note: annotate 'backward' with '@MainActor' if property should only be accessed from the main actor
static var backward = Self(x: 0, y: 0, z: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:155:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var backward = Self(x: 0, y: 0, z: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:151:16: warning: static property 'down' is not concurrency-safe because non-'Sendable' type 'Direction3' may have shared mutable state; this is an error in the Swift 6 language mode
static let down = Self(x: 0, y: -1, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:62:15: note: consider making struct 'Direction3' conform to the 'Sendable' protocol
public struct Direction3: Vector3 {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:151:16: note: annotate 'down' with '@MainActor' if property should only be accessed from the main actor
static let down = Self(x: 0, y: -1, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:151:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let down = Self(x: 0, y: -1, z: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:152:16: warning: static property 'left' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var left = Self(x: -1, y: 0, z: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:152:16: note: convert 'left' to a 'let' constant to make 'Sendable' shared state immutable
static var left = Self(x: -1, y: 0, z: 0)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:152:16: note: annotate 'left' with '@MainActor' if property should only be accessed from the main actor
static var left = Self(x: -1, y: 0, z: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D Types/Direction3.swift:152:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var left = Self(x: -1, y: 0, z: 0)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for GameMath (in target 'GameMath' from project 'GameMath')
SwiftDriver\ Compilation\ Requirements GameMath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'GameMath' from project 'GameMath')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name GameMath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.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/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath-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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.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/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/GameMath-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath-Swift.h (in target 'GameMath' from project 'GameMath')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/GameMath-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.swiftmodule (in target 'GameMath' from project 'GameMath')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.swiftdoc (in target 'GameMath' from project 'GameMath')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.abi.json (in target 'GameMath' from project 'GameMath')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.swiftsourceinfo (in target 'GameMath' from project 'GameMath')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Interpolation.swift, CoreGraphics.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling CardinalDirection.swift, Color.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Matrix3x3.swift, Matrix4x4.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Circle.swift, Direction2.swift, Insets.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Position2.swift, Rect.swift, Size2.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Degrees & Radians.swift, FastInverseSquareRoot.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Vector3.swift, BitStream.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Transform2.swift, Vector2.swift, Direction3.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Position3.swift, Quaternion.swift (in target 'GameMath' from project 'GameMath')
SwiftDriver\ Compilation GameMath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'GameMath' from project 'GameMath')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name GameMath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.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/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath-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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.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/GameMath.build/Debug/GameMath.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.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/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.o normal (in target 'GameMath' from project 'GameMath')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug/GameMath.build/Objects-normal/arm64/GameMath_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.o (in target 'GameMath' from project 'GameMath')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/GameMath.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "GameMath",
"name" : "GameMath",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "GameMath",
"targets" : [
"GameMath"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "GameMathTests",
"module_type" : "SwiftTarget",
"name" : "GameMathTests",
"path" : "Tests/GameMathTests",
"sources" : [
"2D/CircleTests.swift",
"2D/Direction2Tests.swift",
"2D/InsetsTests.swift",
"2D/Position2Tests.swift",
"2D/RectTests.swift",
"2D/Size2Tests.swift",
"2D/Vector2Tests.swift",
"3D/Direction3Tests.swift",
"3D/Matrix3x3Tests.swift",
"3D/Matrix4x4Tests.swift",
"3D/Position3Tests.swift",
"3D/QuaternionTests.swift",
"3D/Size3Tests.swift",
"3D/Transform3Tests.swift",
"3D/Vector3Tests.swift",
"BitStreamTests.swift",
"Degrees & Radians Tests.swift",
"InterpolationTests.swift"
],
"target_dependencies" : [
"GameMath"
],
"type" : "test"
},
{
"c99name" : "GameMath",
"module_type" : "SwiftTarget",
"name" : "GameMath",
"path" : "Sources/GameMath",
"product_memberships" : [
"GameMath"
],
"sources" : [
"2D Types/Circle.swift",
"2D Types/Direction2.swift",
"2D Types/Insets.swift",
"2D Types/Position2.swift",
"2D Types/Rect.swift",
"2D Types/Size2.swift",
"2D Types/Transform2.swift",
"2D Types/Vector2.swift",
"3D Types/Direction3.swift",
"3D Types/Matrix3x3.swift",
"3D Types/Matrix4x4.swift",
"3D Types/Position3.swift",
"3D Types/Quaternion.swift",
"3D Types/Size3.swift",
"3D Types/Transform3.swift",
"3D Types/Vector3.swift",
"BitStream.swift",
"CardinalDirection.swift",
"Color.swift",
"Degrees & Radians.swift",
"FastInverseSquareRoot.swift",
"Interpolation.swift",
"PlatformSpecific/CoreGraphics.swift"
],
"type" : "library"
}
],
"tools_version" : "5.4"
}
Done.