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 MeshGenerator, reference 0.6.0 (603ca8), with Swift 6.1 for watchOS using Xcode 16.3 on 27 Apr 2025 18:45:35 UTC.

Swift 6 data race errors: 57

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme MeshGenerator -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

    public static var white = ColorRepresentation(1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var white = ColorRepresentation(1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: warning: static property 'red' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: convert 'red' to a 'let' constant to make 'Sendable' shared state immutable
    public static var red = ColorRepresentation(1, 0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: warning: static property 'green' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: convert 'green' to a 'let' constant to make 'Sendable' shared state immutable
    public static var green = ColorRepresentation(0, 1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: warning: static property 'blue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: convert 'blue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var blue = ColorRepresentation(0, 0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: add '@MainActor' to make static property 'magenta' part of global actor 'MainActor'
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ MeshGenerator (in target 'MeshGenerator' from project 'MeshGenerator')
EmitSwiftModule normal arm64 (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Bounds' may have shared mutable state; this is an error in the Swift 6 language mode
    static let empty = Bounds()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:14:15: note: consider making struct 'Bounds' conform to the 'Sendable' protocol
public struct Bounds: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
    static let empty = Bounds()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let empty = Bounds()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: warning: static property 'clear' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var clear = ColorRepresentation(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: convert 'clear' to a 'let' constant to make 'Sendable' shared state immutable
    public static var clear = ColorRepresentation(0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
    public static var clear = ColorRepresentation(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var clear = ColorRepresentation(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: warning: static property 'black' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var black = ColorRepresentation(0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: convert 'black' to a 'let' constant to make 'Sendable' shared state immutable
    public static var black = ColorRepresentation(0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
    public static var black = ColorRepresentation(0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var black = ColorRepresentation(0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: warning: static property 'white' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var white = ColorRepresentation(1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: convert 'white' to a 'let' constant to make 'Sendable' shared state immutable
    public static var white = ColorRepresentation(1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
    public static var white = ColorRepresentation(1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var white = ColorRepresentation(1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: warning: static property 'red' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: convert 'red' to a 'let' constant to make 'Sendable' shared state immutable
    public static var red = ColorRepresentation(1, 0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: warning: static property 'green' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: convert 'green' to a 'let' constant to make 'Sendable' shared state immutable
    public static var green = ColorRepresentation(0, 1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: warning: static property 'blue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: convert 'blue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var blue = ColorRepresentation(0, 0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: add '@MainActor' to make static property 'magenta' part of global actor 'MainActor'
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Mesh.Storage' may have shared mutable state; this is an error in the Swift 6 language mode
        static let empty = Storage(
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:157:17: note: class 'Storage' does not conform to the 'Sendable' protocol
    final class Storage: Hashable {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
        static let empty = Storage(
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let empty = Storage(
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: warning: static property 'yz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: add '@MainActor' to make static property 'yz' part of global actor 'MainActor'
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: warning: static property 'xz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: add '@MainActor' to make static property 'xz' part of global actor 'MainActor'
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: warning: static property 'xy' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: add '@MainActor' to make static property 'xy' part of global actor 'MainActor'
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = TextureCoordinates(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = TextureCoordinates(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = TextureCoordinates(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let one = TextureCoordinates(1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    public static let one = TextureCoordinates(1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let one = TextureCoordinates(1, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = Vector(0, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:15:15: note: consider making struct 'Vector' conform to the 'Sendable' protocol
public struct Vector: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = Vector(0, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = Vector(0, 0, 0)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Vertex.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vertex.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vertex.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Bounds' may have shared mutable state; this is an error in the Swift 6 language mode
    static let empty = Bounds()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:14:15: note: consider making struct 'Bounds' conform to the 'Sendable' protocol
public struct Bounds: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
    static let empty = Bounds()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let empty = Bounds()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: warning: static property 'clear' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var clear = ColorRepresentation(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: convert 'clear' to a 'let' constant to make 'Sendable' shared state immutable
    public static var clear = ColorRepresentation(0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
    public static var clear = ColorRepresentation(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var clear = ColorRepresentation(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: warning: static property 'black' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var black = ColorRepresentation(0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: convert 'black' to a 'let' constant to make 'Sendable' shared state immutable
    public static var black = ColorRepresentation(0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
    public static var black = ColorRepresentation(0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var black = ColorRepresentation(0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: warning: static property 'white' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var white = ColorRepresentation(1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: convert 'white' to a 'let' constant to make 'Sendable' shared state immutable
    public static var white = ColorRepresentation(1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
    public static var white = ColorRepresentation(1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var white = ColorRepresentation(1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: warning: static property 'red' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: convert 'red' to a 'let' constant to make 'Sendable' shared state immutable
    public static var red = ColorRepresentation(1, 0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: warning: static property 'green' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: convert 'green' to a 'let' constant to make 'Sendable' shared state immutable
    public static var green = ColorRepresentation(0, 1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: warning: static property 'blue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: convert 'blue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var blue = ColorRepresentation(0, 0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: add '@MainActor' to make static property 'magenta' part of global actor 'MainActor'
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Mesh.Storage' may have shared mutable state; this is an error in the Swift 6 language mode
        static let empty = Storage(
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:157:17: note: class 'Storage' does not conform to the 'Sendable' protocol
    final class Storage: Hashable {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
        static let empty = Storage(
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let empty = Storage(
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: warning: static property 'yz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: add '@MainActor' to make static property 'yz' part of global actor 'MainActor'
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: warning: static property 'xz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: add '@MainActor' to make static property 'xz' part of global actor 'MainActor'
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: warning: static property 'xy' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: add '@MainActor' to make static property 'xy' part of global actor 'MainActor'
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = TextureCoordinates(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = TextureCoordinates(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = TextureCoordinates(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let one = TextureCoordinates(1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    public static let one = TextureCoordinates(1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let one = TextureCoordinates(1, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = Vector(0, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:15:15: note: consider making struct 'Vector' conform to the 'Sendable' protocol
public struct Vector: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = Vector(0, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = Vector(0, 0, 0)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for MeshGenerator (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriver\ Compilation\ Requirements MeshGenerator normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MeshGenerator -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator-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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling MeshGenerator+AppKit.swift, MeshGenerator+RealityKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ MeshGenerator (in target 'MeshGenerator' from project 'MeshGenerator')
EmitSwiftModule normal arm64_32 (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Bounds' may have shared mutable state; this is an error in the Swift 6 language mode
    static let empty = Bounds()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:14:15: note: consider making struct 'Bounds' conform to the 'Sendable' protocol
public struct Bounds: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
    static let empty = Bounds()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let empty = Bounds()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: warning: static property 'clear' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var clear = ColorRepresentation(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: convert 'clear' to a 'let' constant to make 'Sendable' shared state immutable
    public static var clear = ColorRepresentation(0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
    public static var clear = ColorRepresentation(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var clear = ColorRepresentation(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: warning: static property 'black' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var black = ColorRepresentation(0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: convert 'black' to a 'let' constant to make 'Sendable' shared state immutable
    public static var black = ColorRepresentation(0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
    public static var black = ColorRepresentation(0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var black = ColorRepresentation(0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: warning: static property 'white' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var white = ColorRepresentation(1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: convert 'white' to a 'let' constant to make 'Sendable' shared state immutable
    public static var white = ColorRepresentation(1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
    public static var white = ColorRepresentation(1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var white = ColorRepresentation(1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: warning: static property 'red' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: convert 'red' to a 'let' constant to make 'Sendable' shared state immutable
    public static var red = ColorRepresentation(1, 0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: warning: static property 'green' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: convert 'green' to a 'let' constant to make 'Sendable' shared state immutable
    public static var green = ColorRepresentation(0, 1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: warning: static property 'blue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: convert 'blue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var blue = ColorRepresentation(0, 0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: add '@MainActor' to make static property 'magenta' part of global actor 'MainActor'
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Mesh.Storage' may have shared mutable state; this is an error in the Swift 6 language mode
        static let empty = Storage(
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:157:17: note: class 'Storage' does not conform to the 'Sendable' protocol
    final class Storage: Hashable {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
        static let empty = Storage(
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let empty = Storage(
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: warning: static property 'yz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: add '@MainActor' to make static property 'yz' part of global actor 'MainActor'
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: warning: static property 'xz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: add '@MainActor' to make static property 'xz' part of global actor 'MainActor'
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: warning: static property 'xy' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: add '@MainActor' to make static property 'xy' part of global actor 'MainActor'
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = TextureCoordinates(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = TextureCoordinates(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = TextureCoordinates(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let one = TextureCoordinates(1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    public static let one = TextureCoordinates(1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let one = TextureCoordinates(1, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = Vector(0, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:15:15: note: consider making struct 'Vector' conform to the 'Sendable' protocol
public struct Vector: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = Vector(0, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = Vector(0, 0, 0)
                      ^
    nonisolated(unsafe)
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.swiftmodule (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling Vertex.swift (in target 'MeshGenerator' from project 'MeshGenerator')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.swiftdoc (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.abi.json (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.swiftsourceinfo (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Bounds.swift, ColorRepresentation.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k Compiling\ QuickTestView.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/QuickTestView.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/QuickTestView.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ MeshGenerator+AppKit.swift,\ MeshGenerator+RealityKit.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+AppKit.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+RealityKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+AppKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal armv7k Compiling\ LineSegment.swift,\ Mesh.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/LineSegment.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/LineSegment.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Mesh.Storage' may have shared mutable state; this is an error in the Swift 6 language mode
        static let empty = Storage(
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:157:17: note: class 'Storage' does not conform to the 'Sendable' protocol
    final class Storage: Hashable {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
        static let empty = Storage(
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let empty = Storage(
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ Plane.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: warning: static property 'yz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: add '@MainActor' to make static property 'yz' part of global actor 'MainActor'
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: warning: static property 'xz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: add '@MainActor' to make static property 'xz' part of global actor 'MainActor'
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: warning: static property 'xy' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: add '@MainActor' to make static property 'xy' part of global actor 'MainActor'
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Triangle.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriverJobDiscovery normal arm64 Compiling LineSegment.swift, Mesh.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k Compiling\ Plane.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: warning: static property 'yz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: add '@MainActor' to make static property 'yz' part of global actor 'MainActor'
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: warning: static property 'xz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: add '@MainActor' to make static property 'xz' part of global actor 'MainActor'
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: warning: static property 'xy' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: add '@MainActor' to make static property 'xy' part of global actor 'MainActor'
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling TextureCoordinates.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k Compiling\ Triangle.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Triangle.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Triangle.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Vector.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 Compiling\ Vertex.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vertex.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vertex.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling MeshGenerator+SceneKit.swift, MeshGenerator+UIKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 Compiling\ LineSegment.swift,\ Mesh.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/LineSegment.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/LineSegment.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Mesh.Storage' may have shared mutable state; this is an error in the Swift 6 language mode
        static let empty = Storage(
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:157:17: note: class 'Storage' does not conform to the 'Sendable' protocol
    final class Storage: Hashable {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
        static let empty = Storage(
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Mesh.swift:161:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let empty = Storage(
                   ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling QuickTestView.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 Compiling\ Triangle.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Triangle.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Triangle.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Emitting module for MeshGenerator (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriver\ Compilation\ Requirements MeshGenerator normal armv7k com.apple.xcode.tools.swift.compiler (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MeshGenerator -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator-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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling Plane.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 Compiling\ Vector.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = Vector(0, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:15:15: note: consider making struct 'Vector' conform to the 'Sendable' protocol
public struct Vector: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = Vector(0, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = Vector(0, 0, 0)
                      ^
    nonisolated(unsafe)
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.swiftmodule (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal arm64_32 Emitting module for MeshGenerator (in target 'MeshGenerator' from project 'MeshGenerator')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.swiftdoc (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/armv7k-apple-watchos.swiftdoc
SwiftDriver\ Compilation\ Requirements MeshGenerator normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MeshGenerator -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator-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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.abi.json (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/armv7k-apple-watchos.abi.json
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/MeshGenerator-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator-Swift.h (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/MeshGenerator-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.swiftmodule (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.swiftdoc (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.abi.json (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.swiftsourceinfo (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.swiftsourceinfo (in target 'MeshGenerator' from project 'MeshGenerator')
    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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ Vertex.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vertex.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vertex.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Vector' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = Vector(0, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:15:15: note: consider making struct 'Vector' conform to the 'Sendable' protocol
public struct Vector: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = Vector(0, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Vector.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = Vector(0, 0, 0)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling MeshGenerator+AppKit.swift, MeshGenerator+RealityKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k Compiling\ MeshGenerator+SceneKit.swift,\ MeshGenerator+UIKit.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+UIKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+SceneKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftDriverJobDiscovery normal armv7k Compiling Triangle.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k Compiling\ TextureCoordinates.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = TextureCoordinates(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = TextureCoordinates(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = TextureCoordinates(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let one = TextureCoordinates(1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    public static let one = TextureCoordinates(1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let one = TextureCoordinates(1, 1)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling LineSegment.swift, Mesh.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 Compiling\ TextureCoordinates.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = TextureCoordinates(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    public static let zero = TextureCoordinates(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = TextureCoordinates(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'TextureCoordinates' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let one = TextureCoordinates(1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:15:15: note: consider making struct 'TextureCoordinates' conform to the 'Sendable' protocol
public struct TextureCoordinates: Hashable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    public static let one = TextureCoordinates(1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/TextureCoordinates.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let one = TextureCoordinates(1, 1)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Vertex.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 Compiling\ MeshGenerator+SceneKit.swift,\ MeshGenerator+UIKit.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+UIKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+SceneKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling Vector.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k Compiling\ MeshGenerator+AppKit.swift,\ MeshGenerator+RealityKit.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+AppKit.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+RealityKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/MeshGenerator+AppKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling TextureCoordinates.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64 Compiling\ Plane.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: warning: static property 'yz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: add '@MainActor' to make static property 'yz' part of global actor 'MainActor'
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let yz = Plane(unchecked: Vector(1, 0, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: warning: static property 'xz' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: add '@MainActor' to make static property 'xz' part of global actor 'MainActor'
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xz = Plane(unchecked: Vector(0, 1, 0), w: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: warning: static property 'xy' is not concurrency-safe because non-'Sendable' type 'Plane' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:35:15: note: consider making struct 'Plane' conform to the 'Sendable' protocol
public struct Plane: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: add '@MainActor' to make static property 'xy' part of global actor 'MainActor'
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Plane.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xy = Plane(unchecked: Vector(0, 0, 1), w: 0)
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling MeshGenerator+AppKit.swift, MeshGenerator+RealityKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k Compiling\ Bounds.swift,\ ColorRepresentation.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Bounds' may have shared mutable state; this is an error in the Swift 6 language mode
    static let empty = Bounds()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:14:15: note: consider making struct 'Bounds' conform to the 'Sendable' protocol
public struct Bounds: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
    static let empty = Bounds()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let empty = Bounds()
               ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: warning: static property 'clear' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var clear = ColorRepresentation(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: convert 'clear' to a 'let' constant to make 'Sendable' shared state immutable
    public static var clear = ColorRepresentation(0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
    public static var clear = ColorRepresentation(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var clear = ColorRepresentation(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: warning: static property 'black' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var black = ColorRepresentation(0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: convert 'black' to a 'let' constant to make 'Sendable' shared state immutable
    public static var black = ColorRepresentation(0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
    public static var black = ColorRepresentation(0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var black = ColorRepresentation(0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: warning: static property 'white' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var white = ColorRepresentation(1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: convert 'white' to a 'let' constant to make 'Sendable' shared state immutable
    public static var white = ColorRepresentation(1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
    public static var white = ColorRepresentation(1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var white = ColorRepresentation(1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: warning: static property 'red' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: convert 'red' to a 'let' constant to make 'Sendable' shared state immutable
    public static var red = ColorRepresentation(1, 0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: warning: static property 'green' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: convert 'green' to a 'let' constant to make 'Sendable' shared state immutable
    public static var green = ColorRepresentation(0, 1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: warning: static property 'blue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: convert 'blue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var blue = ColorRepresentation(0, 0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: add '@MainActor' to make static property 'magenta' part of global actor 'MainActor'
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling MeshGenerator+SceneKit.swift, MeshGenerator+UIKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 Compiling\ Bounds.swift,\ ColorRepresentation.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Bounds' may have shared mutable state; this is an error in the Swift 6 language mode
    static let empty = Bounds()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:14:15: note: consider making struct 'Bounds' conform to the 'Sendable' protocol
public struct Bounds: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
    static let empty = Bounds()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/Bounds.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let empty = Bounds()
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: warning: static property 'clear' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var clear = ColorRepresentation(0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: convert 'clear' to a 'let' constant to make 'Sendable' shared state immutable
    public static var clear = ColorRepresentation(0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
    public static var clear = ColorRepresentation(0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var clear = ColorRepresentation(0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: warning: static property 'black' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var black = ColorRepresentation(0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: convert 'black' to a 'let' constant to make 'Sendable' shared state immutable
    public static var black = ColorRepresentation(0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
    public static var black = ColorRepresentation(0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var black = ColorRepresentation(0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: warning: static property 'white' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var white = ColorRepresentation(1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: convert 'white' to a 'let' constant to make 'Sendable' shared state immutable
    public static var white = ColorRepresentation(1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
    public static var white = ColorRepresentation(1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var white = ColorRepresentation(1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let gray = ColorRepresentation(0.5, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: warning: static property 'red' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: convert 'red' to a 'let' constant to make 'Sendable' shared state immutable
    public static var red = ColorRepresentation(1, 0, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var red = ColorRepresentation(1, 0, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: warning: static property 'green' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: convert 'green' to a 'let' constant to make 'Sendable' shared state immutable
    public static var green = ColorRepresentation(0, 1, 0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var green = ColorRepresentation(0, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: warning: static property 'blue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: convert 'blue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var blue = ColorRepresentation(0, 0, 1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var blue = ColorRepresentation(0, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let yellow = ColorRepresentation(1, 1, 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let cyan = ColorRepresentation(0, 1, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: add '@MainActor' to make static property 'magenta' part of global actor 'MainActor'
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let magenta = ColorRepresentation(1, 0, 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'ColorRepresentation' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:13:15: note: consider making struct 'ColorRepresentation' conform to the 'Sendable' protocol
public struct ColorRepresentation: Equatable, Hashable {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MeshGenerator/ColorRepresentation.swift:111:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = ColorRepresentation(1, 0.5, 0)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Vertex.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriverJobDiscovery normal arm64_32 Compiling Triangle.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriverJobDiscovery normal arm64_32 Compiling LineSegment.swift, Mesh.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriverJobDiscovery normal arm64 Compiling Plane.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriver\ Compilation MeshGenerator normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MeshGenerator -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator-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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/Binary/MeshGenerator.o normal arm64 (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/Binary/MeshGenerator.o
SwiftDriverJobDiscovery normal arm64_32 Compiling Vector.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriverJobDiscovery normal arm64_32 Compiling TextureCoordinates.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriverJobDiscovery normal arm64_32 Compiling MeshGenerator+SceneKit.swift, MeshGenerator+UIKit.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriverJobDiscovery normal armv7k Compiling Bounds.swift, ColorRepresentation.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriverJobDiscovery normal arm64_32 Compiling Bounds.swift, ColorRepresentation.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriverJobDiscovery normal armv7k Compiling QuickTestView.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriver\ Compilation MeshGenerator normal armv7k com.apple.xcode.tools.swift.compiler (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MeshGenerator -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator-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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/Binary/MeshGenerator.o normal armv7k (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/Binary/MeshGenerator.o
SwiftDriverJobDiscovery normal arm64_32 Compiling QuickTestView.swift (in target 'MeshGenerator' from project 'MeshGenerator')
SwiftDriver\ Compilation MeshGenerator normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MeshGenerator -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator-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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.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/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/Binary/MeshGenerator.o normal arm64_32 (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/Binary/MeshGenerator.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.o normal arm64\ armv7k\ arm64_32 (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/Binary/MeshGenerator.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/Binary/MeshGenerator.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/Binary/MeshGenerator.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.o
ExtractAppIntentsMetadata (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name MeshGenerator --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 6.0 --bundle-identifier spi-builder-workspace.MeshGenerator --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.appintents --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/MeshGenerator.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/MeshGenerator.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64/MeshGenerator.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/armv7k/MeshGenerator.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MeshGenerator.build/Debug-watchos/MeshGenerator.build/Objects-normal/arm64_32/MeshGenerator.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 11:45:34.627 appintentsmetadataprocessor[1091:6461] Starting appintentsmetadataprocessor export
2025-04-27 11:45:34.668 appintentsmetadataprocessor[1091:6461] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.o (in target 'MeshGenerator' from project 'MeshGenerator')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MeshGenerator.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "MeshGenerator",
  "name" : "MeshGenerator",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "MeshGenerator",
      "targets" : [
        "MeshGenerator"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MeshGeneratorTests",
      "module_type" : "SwiftTarget",
      "name" : "MeshGeneratorTests",
      "path" : "Tests/MeshGeneratorTests",
      "sources" : [
        "BoundsTests.swift",
        "DocSnippets.swift",
        "ExportContentTests.swift",
        "LineSegmentTests.swift",
        "MeshTests.swift",
        "PlaneTests.swift",
        "RealityKitTests.swift",
        "TriangleTests.swift",
        "VectorTests.swift",
        "VertexTests.swift"
      ],
      "target_dependencies" : [
        "MeshGenerator"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MeshGenerator",
      "module_type" : "SwiftTarget",
      "name" : "MeshGenerator",
      "path" : "Sources/MeshGenerator",
      "product_memberships" : [
        "MeshGenerator"
      ],
      "sources" : [
        "Bounds.swift",
        "ColorRepresentation.swift",
        "LineSegment.swift",
        "Mesh.swift",
        "MeshGenerator+AppKit.swift",
        "MeshGenerator+RealityKit.swift",
        "MeshGenerator+SceneKit.swift",
        "MeshGenerator+UIKit.swift",
        "Plane.swift",
        "QuickTestView.swift",
        "TextureCoordinates.swift",
        "Triangle.swift",
        "Vector.swift",
        "Vertex.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.