This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of GameMath with Swift 6.0 for iOS using Xcode 16.0.

Swift 6 data race errors: 54

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme GameMath -destination generic/platform=ios OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/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)
SwiftCompile normal arm64 Compiling\ Ray2D.swift,\ Rect+Physics.swift,\ Circle.swift,\ Direction2.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.swift -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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.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/2D\ Physics/Ray2D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.swift -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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.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/2D\ Physics/Rect+Physics.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.swift -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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.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
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.swift -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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.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
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.swift -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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Rect+Physics.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Circle.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Direction2.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 Compiling\ AxisAlignedBoundingBox2D.swift,\ BoundingCircle2D.swift,\ BoundingEllipsoid2D.swift,\ Collider2D.swift,\ Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.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/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.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)
/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/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: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: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)
/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: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)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.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/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.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/2D\ Physics/2D\ Colliders/Collider2D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.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/2D\ Physics/Line2D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/AxisAlignedBoundingBox2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingCircle2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/BoundingEllipsoid2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Collider2D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line2D.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for GameMath (in target 'GameMath' from project 'GameMath')
SwiftCompile normal arm64 Compiling\ OrientedBoundingBox3D.swift,\ Line3D.swift,\ Plane3D.swift,\ Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-6 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.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/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-6 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.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 non-isolated 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/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/3D Physics/3D Colliders/OrientedBoundingBox3D.swift:344:18: warning: This might be wrong
        #warning("This might be wrong")
                 ^~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-6 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.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/3D\ Physics/Plane3D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-6 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.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/3D\ Physics/Ray3D.swift (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/AxisAlignedBoundingBox2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingCircle2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/BoundingEllipsoid2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/2D\ Colliders/Collider2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Line2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Ray2D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/2D\ Types/2D\ Physics/Rect+Physics.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 /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/3D\ Physics/3D\ Colliders/AxisAlignedBoundingBox3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingEllipsoid3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/BoundingSphere3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/Collider3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/CollisionTriangle.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/MeshCollider.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/3D\ Colliders/OrientedBoundingBox3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Line3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Plane3D.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/Ray3D.swift /Users/admin/builder/spi-builder-workspace/Sources/GameMath/3D\ Types/3D\ Physics/ViewFrustum3D.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-iphoneos/GameMath.build/Objects-normal/arm64/supplementaryOutputs-6 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GameMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/OrientedBoundingBox3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Line3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Plane3D.o -index-unit-output-path /GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/Ray3D.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
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
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name GameMath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/GameMath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling AxisAlignedBoundingBox2D.swift, BoundingCircle2D.swift, BoundingEllipsoid2D.swift, Collider2D.swift, Line2D.swift (in target 'GameMath' from project 'GameMath')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GameMath-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GameMath-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling BoundingSphere3D.swift, Collider3D.swift, CollisionTriangle.swift, MeshCollider.swift (in target 'GameMath' from project 'GameMath')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Ray2D.swift, Rect+Physics.swift, Circle.swift, Direction2.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Position3.swift, Quaternion.swift, Size3.swift, Transform3.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling ViewFrustum3D.swift, Direction3.swift, Matrix3x3.swift, Matrix4x4.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Insets.swift, Position2.swift, Rect.swift, Size2.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Vector3.swift, BitStream.swift, CardinalDirection.swift, Color.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Transform2.swift, Vector2.swift, AxisAlignedBoundingBox3D.swift, BoundingEllipsoid3D.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling Degrees & Radians.swift, FastInverseSquareRoot.swift, Interpolation.swift, CoreGraphics.swift (in target 'GameMath' from project 'GameMath')
SwiftDriverJobDiscovery normal arm64 Compiling OrientedBoundingBox3D.swift, Line3D.swift, Plane3D.swift, Ray3D.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
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name GameMath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/GameMath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.o normal (in target 'GameMath' from project 'GameMath')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/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-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/GameMath.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GameMath.build/Debug-iphoneos/GameMath.build/Objects-normal/arm64/GameMath_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GameMath.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/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-iphoneos/GameMath.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'GameMath' from project 'GameMath')
** BUILD SUCCEEDED **
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/2D Physics/2D Colliders/AxisAlignedBoundingBox2DTests.swift.swift",
        "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" : "GameMathSIMDTests",
      "module_type" : "SwiftTarget",
      "name" : "GameMathSIMDTests",
      "path" : "Tests/GameMathSIMDTests",
      "sources" : [
        "2D/2D Physics/2D Colliders/AxisAlignedBoundingBox2DTests.swift.swift",
        "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/2D Physics/2D Colliders/AxisAlignedBoundingBox2D.swift",
        "2D Types/2D Physics/2D Colliders/BoundingCircle2D.swift",
        "2D Types/2D Physics/2D Colliders/BoundingEllipsoid2D.swift",
        "2D Types/2D Physics/2D Colliders/Collider2D.swift",
        "2D Types/2D Physics/Line2D.swift",
        "2D Types/2D Physics/Ray2D.swift",
        "2D Types/2D Physics/Rect+Physics.swift",
        "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/3D Physics/3D Colliders/AxisAlignedBoundingBox3D.swift",
        "3D Types/3D Physics/3D Colliders/BoundingEllipsoid3D.swift",
        "3D Types/3D Physics/3D Colliders/BoundingSphere3D.swift",
        "3D Types/3D Physics/3D Colliders/Collider3D.swift",
        "3D Types/3D Physics/3D Colliders/CollisionTriangle.swift",
        "3D Types/3D Physics/3D Colliders/MeshCollider.swift",
        "3D Types/3D Physics/3D Colliders/OrientedBoundingBox3D.swift",
        "3D Types/3D Physics/Line3D.swift",
        "3D Types/3D Physics/Plane3D.swift",
        "3D Types/3D Physics/Ray3D.swift",
        "3D Types/3D Physics/ViewFrustum3D.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.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.