The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SingleBoard, reference 1.0.0 (dc9a04), with Swift 6.1 for watchOS using Xcode 16.3 on 26 Apr 2025 21:07:14 UTC.

Swift 6 data race errors: 108

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SingleBoard -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 protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: add '@MainActor' to make static property 'pine64' part of global actor 'MainActor'
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: warning: static property 'rock64' is not concurrency-safe because non-'Sendable' type 'any PineCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: add '@MainActor' to make static property 'rock64' part of global actor 'MainActor'
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: warning: static property 'chip' is not concurrency-safe because non-'Sendable' type 'any ChipCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: add '@MainActor' to make static property 'chip' part of global actor 'MainActor'
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ Raspberry_Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:53:23: warning: static property 'p0' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p0:  PinSet = PinSet(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:53:23: note: add '@MainActor' to make static property 'p0' part of global actor 'MainActor'
    public static let p0:  PinSet = PinSet(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p0:  PinSet = PinSet(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:54:23: warning: static property 'p1' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p1:  PinSet = PinSet(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:54:23: note: add '@MainActor' to make static property 'p1' part of global actor 'MainActor'
    public static let p1:  PinSet = PinSet(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p1:  PinSet = PinSet(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:55:23: warning: static property 'p2' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p2:  PinSet = PinSet(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:55:23: note: add '@MainActor' to make static property 'p2' part of global actor 'MainActor'
    public static let p2:  PinSet = PinSet(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p2:  PinSet = PinSet(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:56:23: warning: static property 'p3' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p3:  PinSet = PinSet(rawValue: 1 << 3)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:56:23: note: add '@MainActor' to make static property 'p3' part of global actor 'MainActor'
    public static let p3:  PinSet = PinSet(rawValue: 1 << 3)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p3:  PinSet = PinSet(rawValue: 1 << 3)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:57:23: warning: static property 'p4' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p4:  PinSet = PinSet(rawValue: 1 << 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:57:23: note: add '@MainActor' to make static property 'p4' part of global actor 'MainActor'
    public static let p4:  PinSet = PinSet(rawValue: 1 << 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p4:  PinSet = PinSet(rawValue: 1 << 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:58:23: warning: static property 'p5' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p5:  PinSet = PinSet(rawValue: 1 << 5)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:58:23: note: add '@MainActor' to make static property 'p5' part of global actor 'MainActor'
    public static let p5:  PinSet = PinSet(rawValue: 1 << 5)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p5:  PinSet = PinSet(rawValue: 1 << 5)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:59:23: warning: static property 'p6' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p6:  PinSet = PinSet(rawValue: 1 << 6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:59:23: note: add '@MainActor' to make static property 'p6' part of global actor 'MainActor'
    public static let p6:  PinSet = PinSet(rawValue: 1 << 6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p6:  PinSet = PinSet(rawValue: 1 << 6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:60:23: warning: static property 'p7' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p7:  PinSet = PinSet(rawValue: 1 << 7)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:60:23: note: add '@MainActor' to make static property 'p7' part of global actor 'MainActor'
    public static let p7:  PinSet = PinSet(rawValue: 1 << 7)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p7:  PinSet = PinSet(rawValue: 1 << 7)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:61:23: warning: static property 'p8' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p8:  PinSet = PinSet(rawValue: 1 << 8)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:61:23: note: add '@MainActor' to make static property 'p8' part of global actor 'MainActor'
    public static let p8:  PinSet = PinSet(rawValue: 1 << 8)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p8:  PinSet = PinSet(rawValue: 1 << 8)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:62:23: warning: static property 'p9' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p9:  PinSet = PinSet(rawValue: 1 << 9)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:62:23: note: add '@MainActor' to make static property 'p9' part of global actor 'MainActor'
    public static let p9:  PinSet = PinSet(rawValue: 1 << 9)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p9:  PinSet = PinSet(rawValue: 1 << 9)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:63:23: warning: static property 'p10' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p10: PinSet = PinSet(rawValue: 1 << 10)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:63:23: note: add '@MainActor' to make static property 'p10' part of global actor 'MainActor'
    public static let p10: PinSet = PinSet(rawValue: 1 << 10)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p10: PinSet = PinSet(rawValue: 1 << 10)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:64:23: warning: static property 'p11' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p11: PinSet = PinSet(rawValue: 1 << 11)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:64:23: note: add '@MainActor' to make static property 'p11' part of global actor 'MainActor'
    public static let p11: PinSet = PinSet(rawValue: 1 << 11)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p11: PinSet = PinSet(rawValue: 1 << 11)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:65:23: warning: static property 'p12' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p12: PinSet = PinSet(rawValue: 1 << 12)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:65:23: note: add '@MainActor' to make static property 'p12' part of global actor 'MainActor'
    public static let p12: PinSet = PinSet(rawValue: 1 << 12)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p12: PinSet = PinSet(rawValue: 1 << 12)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:66:23: warning: static property 'p13' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p13: PinSet = PinSet(rawValue: 1 << 13)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:66:23: note: add '@MainActor' to make static property 'p13' part of global actor 'MainActor'
    public static let p13: PinSet = PinSet(rawValue: 1 << 13)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p13: PinSet = PinSet(rawValue: 1 << 13)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:67:23: warning: static property 'p14' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p14: PinSet = PinSet(rawValue: 1 << 14)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:67:23: note: add '@MainActor' to make static property 'p14' part of global actor 'MainActor'
    public static let p14: PinSet = PinSet(rawValue: 1 << 14)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p14: PinSet = PinSet(rawValue: 1 << 14)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:68:23: warning: static property 'p15' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p15: PinSet = PinSet(rawValue: 1 << 15)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:68:23: note: add '@MainActor' to make static property 'p15' part of global actor 'MainActor'
    public static let p15: PinSet = PinSet(rawValue: 1 << 15)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p15: PinSet = PinSet(rawValue: 1 << 15)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:69:23: warning: static property 'p16' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p16: PinSet = PinSet(rawValue: 1 << 16)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:69:23: note: add '@MainActor' to make static property 'p16' part of global actor 'MainActor'
    public static let p16: PinSet = PinSet(rawValue: 1 << 16)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p16: PinSet = PinSet(rawValue: 1 << 16)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:70:23: warning: static property 'p17' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p17: PinSet = PinSet(rawValue: 1 << 17)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:70:23: note: add '@MainActor' to make static property 'p17' part of global actor 'MainActor'
    public static let p17: PinSet = PinSet(rawValue: 1 << 17)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p17: PinSet = PinSet(rawValue: 1 << 17)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:71:23: warning: static property 'p18' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p18: PinSet = PinSet(rawValue: 1 << 18)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:71:23: note: add '@MainActor' to make static property 'p18' part of global actor 'MainActor'
    public static let p18: PinSet = PinSet(rawValue: 1 << 18)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p18: PinSet = PinSet(rawValue: 1 << 18)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:72:23: warning: static property 'p19' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p19: PinSet = PinSet(rawValue: 1 << 19)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:72:23: note: add '@MainActor' to make static property 'p19' part of global actor 'MainActor'
    public static let p19: PinSet = PinSet(rawValue: 1 << 19)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p19: PinSet = PinSet(rawValue: 1 << 19)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:73:23: warning: static property 'p20' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p20: PinSet = PinSet(rawValue: 1 << 20)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:73:23: note: add '@MainActor' to make static property 'p20' part of global actor 'MainActor'
    public static let p20: PinSet = PinSet(rawValue: 1 << 20)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:73:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p20: PinSet = PinSet(rawValue: 1 << 20)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:74:23: warning: static property 'p21' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p21: PinSet = PinSet(rawValue: 1 << 21)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:74:23: note: add '@MainActor' to make static property 'p21' part of global actor 'MainActor'
    public static let p21: PinSet = PinSet(rawValue: 1 << 21)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p21: PinSet = PinSet(rawValue: 1 << 21)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:75:23: warning: static property 'p22' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p22: PinSet = PinSet(rawValue: 1 << 22)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:75:23: note: add '@MainActor' to make static property 'p22' part of global actor 'MainActor'
    public static let p22: PinSet = PinSet(rawValue: 1 << 22)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p22: PinSet = PinSet(rawValue: 1 << 22)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:76:23: warning: static property 'p23' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p23: PinSet = PinSet(rawValue: 1 << 23)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:76:23: note: add '@MainActor' to make static property 'p23' part of global actor 'MainActor'
    public static let p23: PinSet = PinSet(rawValue: 1 << 23)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p23: PinSet = PinSet(rawValue: 1 << 23)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:77:23: warning: static property 'p24' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p24: PinSet = PinSet(rawValue: 1 << 24)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:77:23: note: add '@MainActor' to make static property 'p24' part of global actor 'MainActor'
    public static let p24: PinSet = PinSet(rawValue: 1 << 24)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p24: PinSet = PinSet(rawValue: 1 << 24)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:78:23: warning: static property 'p25' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p25: PinSet = PinSet(rawValue: 1 << 25)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:78:23: note: add '@MainActor' to make static property 'p25' part of global actor 'MainActor'
    public static let p25: PinSet = PinSet(rawValue: 1 << 25)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p25: PinSet = PinSet(rawValue: 1 << 25)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:79:23: warning: static property 'p26' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p26: PinSet = PinSet(rawValue: 1 << 26)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:79:23: note: add '@MainActor' to make static property 'p26' part of global actor 'MainActor'
    public static let p26: PinSet = PinSet(rawValue: 1 << 26)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p26: PinSet = PinSet(rawValue: 1 << 26)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:80:23: warning: static property 'p27' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p27: PinSet = PinSet(rawValue: 1 << 27)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:80:23: note: add '@MainActor' to make static property 'p27' part of global actor 'MainActor'
    public static let p27: PinSet = PinSet(rawValue: 1 << 27)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p27: PinSet = PinSet(rawValue: 1 << 27)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:81:23: warning: static property 'p28' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p28: PinSet = PinSet(rawValue: 1 << 28)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:81:23: note: add '@MainActor' to make static property 'p28' part of global actor 'MainActor'
    public static let p28: PinSet = PinSet(rawValue: 1 << 28)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p28: PinSet = PinSet(rawValue: 1 << 28)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:82:23: warning: static property 'p29' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p29: PinSet = PinSet(rawValue: 1 << 29)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:82:23: note: add '@MainActor' to make static property 'p29' part of global actor 'MainActor'
    public static let p29: PinSet = PinSet(rawValue: 1 << 29)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p29: PinSet = PinSet(rawValue: 1 << 29)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:83:23: warning: static property 'p30' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p30: PinSet = PinSet(rawValue: 1 << 30)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:83:23: note: add '@MainActor' to make static property 'p30' part of global actor 'MainActor'
    public static let p30: PinSet = PinSet(rawValue: 1 << 30)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p30: PinSet = PinSet(rawValue: 1 << 30)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:84:23: warning: static property 'p31' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p31: PinSet = PinSet(rawValue: 1 << 31)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:84:23: note: add '@MainActor' to make static property 'p31' part of global actor 'MainActor'
    public static let p31: PinSet = PinSet(rawValue: 1 << 31)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p31: PinSet = PinSet(rawValue: 1 << 31)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: warning: static property 'raspberryPi' is not concurrency-safe because non-'Sendable' type 'any RaspberryCapabilities' (aka 'any HasGPIO & HasI2C & HasPWM') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: note: add '@MainActor' to make static property 'raspberryPi' part of global actor 'MainActor'
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: warning: static property 'pine64' is not concurrency-safe because non-'Sendable' type 'any PineCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: add '@MainActor' to make static property 'pine64' part of global actor 'MainActor'
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: warning: static property 'rock64' is not concurrency-safe because non-'Sendable' type 'any PineCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: add '@MainActor' to make static property 'rock64' part of global actor 'MainActor'
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: warning: static property 'chip' is not concurrency-safe because non-'Sendable' type 'any ChipCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: add '@MainActor' to make static property 'chip' part of global actor 'MainActor'
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Emitting module for SingleBoard (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriver\ Compilation\ Requirements SingleBoard normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'SingleBoard' from project 'SingleBoard')
    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 SingleBoard -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard-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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard_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/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for SingleBoard (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriver\ Compilation\ Requirements SingleBoard normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SingleBoard' from project 'SingleBoard')
    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 SingleBoard -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard-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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard_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/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard-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/SingleBoard.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.swiftmodule (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.swiftdoc (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.abi.json (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.swiftmodule (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.swiftdoc (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.abi.json (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.swiftsourceinfo (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.swiftsourceinfo (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ Raspberry_Registers.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_Registers.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_Registers.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: warning: static property 'raspberryPi' is not concurrency-safe because non-'Sendable' type 'any RaspberryCapabilities' (aka 'any HasGPIO & HasI2C & HasPWM') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: note: add '@MainActor' to make static property 'raspberryPi' part of global actor 'MainActor'
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: warning: static property 'pine64' is not concurrency-safe because non-'Sendable' type 'any PineCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: add '@MainActor' to make static property 'pine64' part of global actor 'MainActor'
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: warning: static property 'rock64' is not concurrency-safe because non-'Sendable' type 'any PineCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: add '@MainActor' to make static property 'rock64' part of global actor 'MainActor'
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: warning: static property 'chip' is not concurrency-safe because non-'Sendable' type 'any ChipCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: add '@MainActor' to make static property 'chip' part of global actor 'MainActor'
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling GPIO.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k Compiling\ Chip_Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Chip_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Chip_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Chip_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k Compiling\ GPIO.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:53:23: warning: static property 'p0' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p0:  PinSet = PinSet(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:53:23: note: add '@MainActor' to make static property 'p0' part of global actor 'MainActor'
    public static let p0:  PinSet = PinSet(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p0:  PinSet = PinSet(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:54:23: warning: static property 'p1' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p1:  PinSet = PinSet(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:54:23: note: add '@MainActor' to make static property 'p1' part of global actor 'MainActor'
    public static let p1:  PinSet = PinSet(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p1:  PinSet = PinSet(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:55:23: warning: static property 'p2' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p2:  PinSet = PinSet(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:55:23: note: add '@MainActor' to make static property 'p2' part of global actor 'MainActor'
    public static let p2:  PinSet = PinSet(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p2:  PinSet = PinSet(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:56:23: warning: static property 'p3' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p3:  PinSet = PinSet(rawValue: 1 << 3)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:56:23: note: add '@MainActor' to make static property 'p3' part of global actor 'MainActor'
    public static let p3:  PinSet = PinSet(rawValue: 1 << 3)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p3:  PinSet = PinSet(rawValue: 1 << 3)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:57:23: warning: static property 'p4' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p4:  PinSet = PinSet(rawValue: 1 << 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:57:23: note: add '@MainActor' to make static property 'p4' part of global actor 'MainActor'
    public static let p4:  PinSet = PinSet(rawValue: 1 << 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p4:  PinSet = PinSet(rawValue: 1 << 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:58:23: warning: static property 'p5' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p5:  PinSet = PinSet(rawValue: 1 << 5)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:58:23: note: add '@MainActor' to make static property 'p5' part of global actor 'MainActor'
    public static let p5:  PinSet = PinSet(rawValue: 1 << 5)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p5:  PinSet = PinSet(rawValue: 1 << 5)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:59:23: warning: static property 'p6' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p6:  PinSet = PinSet(rawValue: 1 << 6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:59:23: note: add '@MainActor' to make static property 'p6' part of global actor 'MainActor'
    public static let p6:  PinSet = PinSet(rawValue: 1 << 6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p6:  PinSet = PinSet(rawValue: 1 << 6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:60:23: warning: static property 'p7' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p7:  PinSet = PinSet(rawValue: 1 << 7)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:60:23: note: add '@MainActor' to make static property 'p7' part of global actor 'MainActor'
    public static let p7:  PinSet = PinSet(rawValue: 1 << 7)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p7:  PinSet = PinSet(rawValue: 1 << 7)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:61:23: warning: static property 'p8' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p8:  PinSet = PinSet(rawValue: 1 << 8)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:61:23: note: add '@MainActor' to make static property 'p8' part of global actor 'MainActor'
    public static let p8:  PinSet = PinSet(rawValue: 1 << 8)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p8:  PinSet = PinSet(rawValue: 1 << 8)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:62:23: warning: static property 'p9' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p9:  PinSet = PinSet(rawValue: 1 << 9)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:62:23: note: add '@MainActor' to make static property 'p9' part of global actor 'MainActor'
    public static let p9:  PinSet = PinSet(rawValue: 1 << 9)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p9:  PinSet = PinSet(rawValue: 1 << 9)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:63:23: warning: static property 'p10' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p10: PinSet = PinSet(rawValue: 1 << 10)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:63:23: note: add '@MainActor' to make static property 'p10' part of global actor 'MainActor'
    public static let p10: PinSet = PinSet(rawValue: 1 << 10)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p10: PinSet = PinSet(rawValue: 1 << 10)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:64:23: warning: static property 'p11' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p11: PinSet = PinSet(rawValue: 1 << 11)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:64:23: note: add '@MainActor' to make static property 'p11' part of global actor 'MainActor'
    public static let p11: PinSet = PinSet(rawValue: 1 << 11)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p11: PinSet = PinSet(rawValue: 1 << 11)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:65:23: warning: static property 'p12' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p12: PinSet = PinSet(rawValue: 1 << 12)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:65:23: note: add '@MainActor' to make static property 'p12' part of global actor 'MainActor'
    public static let p12: PinSet = PinSet(rawValue: 1 << 12)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p12: PinSet = PinSet(rawValue: 1 << 12)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:66:23: warning: static property 'p13' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p13: PinSet = PinSet(rawValue: 1 << 13)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:66:23: note: add '@MainActor' to make static property 'p13' part of global actor 'MainActor'
    public static let p13: PinSet = PinSet(rawValue: 1 << 13)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p13: PinSet = PinSet(rawValue: 1 << 13)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:67:23: warning: static property 'p14' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p14: PinSet = PinSet(rawValue: 1 << 14)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:67:23: note: add '@MainActor' to make static property 'p14' part of global actor 'MainActor'
    public static let p14: PinSet = PinSet(rawValue: 1 << 14)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p14: PinSet = PinSet(rawValue: 1 << 14)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:68:23: warning: static property 'p15' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p15: PinSet = PinSet(rawValue: 1 << 15)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:68:23: note: add '@MainActor' to make static property 'p15' part of global actor 'MainActor'
    public static let p15: PinSet = PinSet(rawValue: 1 << 15)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p15: PinSet = PinSet(rawValue: 1 << 15)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:69:23: warning: static property 'p16' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p16: PinSet = PinSet(rawValue: 1 << 16)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:69:23: note: add '@MainActor' to make static property 'p16' part of global actor 'MainActor'
    public static let p16: PinSet = PinSet(rawValue: 1 << 16)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p16: PinSet = PinSet(rawValue: 1 << 16)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:70:23: warning: static property 'p17' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p17: PinSet = PinSet(rawValue: 1 << 17)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:70:23: note: add '@MainActor' to make static property 'p17' part of global actor 'MainActor'
    public static let p17: PinSet = PinSet(rawValue: 1 << 17)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p17: PinSet = PinSet(rawValue: 1 << 17)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:71:23: warning: static property 'p18' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p18: PinSet = PinSet(rawValue: 1 << 18)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:71:23: note: add '@MainActor' to make static property 'p18' part of global actor 'MainActor'
    public static let p18: PinSet = PinSet(rawValue: 1 << 18)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p18: PinSet = PinSet(rawValue: 1 << 18)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:72:23: warning: static property 'p19' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p19: PinSet = PinSet(rawValue: 1 << 19)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:72:23: note: add '@MainActor' to make static property 'p19' part of global actor 'MainActor'
    public static let p19: PinSet = PinSet(rawValue: 1 << 19)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p19: PinSet = PinSet(rawValue: 1 << 19)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:73:23: warning: static property 'p20' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p20: PinSet = PinSet(rawValue: 1 << 20)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:73:23: note: add '@MainActor' to make static property 'p20' part of global actor 'MainActor'
    public static let p20: PinSet = PinSet(rawValue: 1 << 20)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:73:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p20: PinSet = PinSet(rawValue: 1 << 20)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:74:23: warning: static property 'p21' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p21: PinSet = PinSet(rawValue: 1 << 21)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:74:23: note: add '@MainActor' to make static property 'p21' part of global actor 'MainActor'
    public static let p21: PinSet = PinSet(rawValue: 1 << 21)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p21: PinSet = PinSet(rawValue: 1 << 21)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:75:23: warning: static property 'p22' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p22: PinSet = PinSet(rawValue: 1 << 22)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:75:23: note: add '@MainActor' to make static property 'p22' part of global actor 'MainActor'
    public static let p22: PinSet = PinSet(rawValue: 1 << 22)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p22: PinSet = PinSet(rawValue: 1 << 22)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:76:23: warning: static property 'p23' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p23: PinSet = PinSet(rawValue: 1 << 23)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:76:23: note: add '@MainActor' to make static property 'p23' part of global actor 'MainActor'
    public static let p23: PinSet = PinSet(rawValue: 1 << 23)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p23: PinSet = PinSet(rawValue: 1 << 23)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:77:23: warning: static property 'p24' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p24: PinSet = PinSet(rawValue: 1 << 24)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:77:23: note: add '@MainActor' to make static property 'p24' part of global actor 'MainActor'
    public static let p24: PinSet = PinSet(rawValue: 1 << 24)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p24: PinSet = PinSet(rawValue: 1 << 24)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:78:23: warning: static property 'p25' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p25: PinSet = PinSet(rawValue: 1 << 25)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:78:23: note: add '@MainActor' to make static property 'p25' part of global actor 'MainActor'
    public static let p25: PinSet = PinSet(rawValue: 1 << 25)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p25: PinSet = PinSet(rawValue: 1 << 25)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:79:23: warning: static property 'p26' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p26: PinSet = PinSet(rawValue: 1 << 26)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:79:23: note: add '@MainActor' to make static property 'p26' part of global actor 'MainActor'
    public static let p26: PinSet = PinSet(rawValue: 1 << 26)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p26: PinSet = PinSet(rawValue: 1 << 26)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:80:23: warning: static property 'p27' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p27: PinSet = PinSet(rawValue: 1 << 27)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:80:23: note: add '@MainActor' to make static property 'p27' part of global actor 'MainActor'
    public static let p27: PinSet = PinSet(rawValue: 1 << 27)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p27: PinSet = PinSet(rawValue: 1 << 27)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:81:23: warning: static property 'p28' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p28: PinSet = PinSet(rawValue: 1 << 28)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:81:23: note: add '@MainActor' to make static property 'p28' part of global actor 'MainActor'
    public static let p28: PinSet = PinSet(rawValue: 1 << 28)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p28: PinSet = PinSet(rawValue: 1 << 28)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:82:23: warning: static property 'p29' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p29: PinSet = PinSet(rawValue: 1 << 29)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:82:23: note: add '@MainActor' to make static property 'p29' part of global actor 'MainActor'
    public static let p29: PinSet = PinSet(rawValue: 1 << 29)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p29: PinSet = PinSet(rawValue: 1 << 29)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:83:23: warning: static property 'p30' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p30: PinSet = PinSet(rawValue: 1 << 30)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:83:23: note: add '@MainActor' to make static property 'p30' part of global actor 'MainActor'
    public static let p30: PinSet = PinSet(rawValue: 1 << 30)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p30: PinSet = PinSet(rawValue: 1 << 30)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:84:23: warning: static property 'p31' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p31: PinSet = PinSet(rawValue: 1 << 31)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:84:23: note: add '@MainActor' to make static property 'p31' part of global actor 'MainActor'
    public static let p31: PinSet = PinSet(rawValue: 1 << 31)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p31: PinSet = PinSet(rawValue: 1 << 31)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Extensions.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 Compiling\ Pine_Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Pine_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Pine_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64_32 Compiling Pine_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 Compiling\ Raspberry_PWM.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_PWM.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_PWM.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Raspberry_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k Compiling\ Raspberry_PWM.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_PWM.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_PWM.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Raspberry_PWM.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 Compiling\ Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/Extensions.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/Extensions.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling I2C.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k Compiling\ Raspberry_Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Raspberry_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Raspberry_Registers.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k Compiling\ Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/Extensions.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/Extensions.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling SingleBoard.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k Compiling\ Pine_Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Pine_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Pine_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Raspberry_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 Compiling\ GPIO.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:53:23: warning: static property 'p0' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p0:  PinSet = PinSet(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:53:23: note: add '@MainActor' to make static property 'p0' part of global actor 'MainActor'
    public static let p0:  PinSet = PinSet(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p0:  PinSet = PinSet(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:54:23: warning: static property 'p1' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p1:  PinSet = PinSet(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:54:23: note: add '@MainActor' to make static property 'p1' part of global actor 'MainActor'
    public static let p1:  PinSet = PinSet(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p1:  PinSet = PinSet(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:55:23: warning: static property 'p2' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p2:  PinSet = PinSet(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:55:23: note: add '@MainActor' to make static property 'p2' part of global actor 'MainActor'
    public static let p2:  PinSet = PinSet(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p2:  PinSet = PinSet(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:56:23: warning: static property 'p3' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p3:  PinSet = PinSet(rawValue: 1 << 3)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:56:23: note: add '@MainActor' to make static property 'p3' part of global actor 'MainActor'
    public static let p3:  PinSet = PinSet(rawValue: 1 << 3)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p3:  PinSet = PinSet(rawValue: 1 << 3)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:57:23: warning: static property 'p4' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p4:  PinSet = PinSet(rawValue: 1 << 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:57:23: note: add '@MainActor' to make static property 'p4' part of global actor 'MainActor'
    public static let p4:  PinSet = PinSet(rawValue: 1 << 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p4:  PinSet = PinSet(rawValue: 1 << 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:58:23: warning: static property 'p5' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p5:  PinSet = PinSet(rawValue: 1 << 5)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:58:23: note: add '@MainActor' to make static property 'p5' part of global actor 'MainActor'
    public static let p5:  PinSet = PinSet(rawValue: 1 << 5)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p5:  PinSet = PinSet(rawValue: 1 << 5)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:59:23: warning: static property 'p6' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p6:  PinSet = PinSet(rawValue: 1 << 6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:59:23: note: add '@MainActor' to make static property 'p6' part of global actor 'MainActor'
    public static let p6:  PinSet = PinSet(rawValue: 1 << 6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p6:  PinSet = PinSet(rawValue: 1 << 6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:60:23: warning: static property 'p7' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p7:  PinSet = PinSet(rawValue: 1 << 7)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:60:23: note: add '@MainActor' to make static property 'p7' part of global actor 'MainActor'
    public static let p7:  PinSet = PinSet(rawValue: 1 << 7)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p7:  PinSet = PinSet(rawValue: 1 << 7)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:61:23: warning: static property 'p8' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p8:  PinSet = PinSet(rawValue: 1 << 8)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:61:23: note: add '@MainActor' to make static property 'p8' part of global actor 'MainActor'
    public static let p8:  PinSet = PinSet(rawValue: 1 << 8)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p8:  PinSet = PinSet(rawValue: 1 << 8)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:62:23: warning: static property 'p9' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p9:  PinSet = PinSet(rawValue: 1 << 9)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:62:23: note: add '@MainActor' to make static property 'p9' part of global actor 'MainActor'
    public static let p9:  PinSet = PinSet(rawValue: 1 << 9)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p9:  PinSet = PinSet(rawValue: 1 << 9)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:63:23: warning: static property 'p10' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p10: PinSet = PinSet(rawValue: 1 << 10)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:63:23: note: add '@MainActor' to make static property 'p10' part of global actor 'MainActor'
    public static let p10: PinSet = PinSet(rawValue: 1 << 10)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p10: PinSet = PinSet(rawValue: 1 << 10)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:64:23: warning: static property 'p11' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p11: PinSet = PinSet(rawValue: 1 << 11)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:64:23: note: add '@MainActor' to make static property 'p11' part of global actor 'MainActor'
    public static let p11: PinSet = PinSet(rawValue: 1 << 11)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p11: PinSet = PinSet(rawValue: 1 << 11)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:65:23: warning: static property 'p12' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p12: PinSet = PinSet(rawValue: 1 << 12)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:65:23: note: add '@MainActor' to make static property 'p12' part of global actor 'MainActor'
    public static let p12: PinSet = PinSet(rawValue: 1 << 12)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p12: PinSet = PinSet(rawValue: 1 << 12)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:66:23: warning: static property 'p13' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p13: PinSet = PinSet(rawValue: 1 << 13)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:66:23: note: add '@MainActor' to make static property 'p13' part of global actor 'MainActor'
    public static let p13: PinSet = PinSet(rawValue: 1 << 13)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p13: PinSet = PinSet(rawValue: 1 << 13)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:67:23: warning: static property 'p14' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p14: PinSet = PinSet(rawValue: 1 << 14)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:67:23: note: add '@MainActor' to make static property 'p14' part of global actor 'MainActor'
    public static let p14: PinSet = PinSet(rawValue: 1 << 14)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p14: PinSet = PinSet(rawValue: 1 << 14)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:68:23: warning: static property 'p15' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p15: PinSet = PinSet(rawValue: 1 << 15)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:68:23: note: add '@MainActor' to make static property 'p15' part of global actor 'MainActor'
    public static let p15: PinSet = PinSet(rawValue: 1 << 15)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p15: PinSet = PinSet(rawValue: 1 << 15)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:69:23: warning: static property 'p16' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p16: PinSet = PinSet(rawValue: 1 << 16)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:69:23: note: add '@MainActor' to make static property 'p16' part of global actor 'MainActor'
    public static let p16: PinSet = PinSet(rawValue: 1 << 16)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p16: PinSet = PinSet(rawValue: 1 << 16)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:70:23: warning: static property 'p17' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p17: PinSet = PinSet(rawValue: 1 << 17)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:70:23: note: add '@MainActor' to make static property 'p17' part of global actor 'MainActor'
    public static let p17: PinSet = PinSet(rawValue: 1 << 17)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p17: PinSet = PinSet(rawValue: 1 << 17)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:71:23: warning: static property 'p18' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p18: PinSet = PinSet(rawValue: 1 << 18)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:71:23: note: add '@MainActor' to make static property 'p18' part of global actor 'MainActor'
    public static let p18: PinSet = PinSet(rawValue: 1 << 18)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p18: PinSet = PinSet(rawValue: 1 << 18)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:72:23: warning: static property 'p19' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p19: PinSet = PinSet(rawValue: 1 << 19)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:72:23: note: add '@MainActor' to make static property 'p19' part of global actor 'MainActor'
    public static let p19: PinSet = PinSet(rawValue: 1 << 19)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p19: PinSet = PinSet(rawValue: 1 << 19)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:73:23: warning: static property 'p20' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p20: PinSet = PinSet(rawValue: 1 << 20)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:73:23: note: add '@MainActor' to make static property 'p20' part of global actor 'MainActor'
    public static let p20: PinSet = PinSet(rawValue: 1 << 20)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:73:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p20: PinSet = PinSet(rawValue: 1 << 20)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:74:23: warning: static property 'p21' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p21: PinSet = PinSet(rawValue: 1 << 21)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:74:23: note: add '@MainActor' to make static property 'p21' part of global actor 'MainActor'
    public static let p21: PinSet = PinSet(rawValue: 1 << 21)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p21: PinSet = PinSet(rawValue: 1 << 21)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:75:23: warning: static property 'p22' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p22: PinSet = PinSet(rawValue: 1 << 22)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:75:23: note: add '@MainActor' to make static property 'p22' part of global actor 'MainActor'
    public static let p22: PinSet = PinSet(rawValue: 1 << 22)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p22: PinSet = PinSet(rawValue: 1 << 22)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:76:23: warning: static property 'p23' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p23: PinSet = PinSet(rawValue: 1 << 23)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:76:23: note: add '@MainActor' to make static property 'p23' part of global actor 'MainActor'
    public static let p23: PinSet = PinSet(rawValue: 1 << 23)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p23: PinSet = PinSet(rawValue: 1 << 23)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:77:23: warning: static property 'p24' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p24: PinSet = PinSet(rawValue: 1 << 24)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:77:23: note: add '@MainActor' to make static property 'p24' part of global actor 'MainActor'
    public static let p24: PinSet = PinSet(rawValue: 1 << 24)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p24: PinSet = PinSet(rawValue: 1 << 24)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:78:23: warning: static property 'p25' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p25: PinSet = PinSet(rawValue: 1 << 25)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:78:23: note: add '@MainActor' to make static property 'p25' part of global actor 'MainActor'
    public static let p25: PinSet = PinSet(rawValue: 1 << 25)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p25: PinSet = PinSet(rawValue: 1 << 25)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:79:23: warning: static property 'p26' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p26: PinSet = PinSet(rawValue: 1 << 26)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:79:23: note: add '@MainActor' to make static property 'p26' part of global actor 'MainActor'
    public static let p26: PinSet = PinSet(rawValue: 1 << 26)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p26: PinSet = PinSet(rawValue: 1 << 26)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:80:23: warning: static property 'p27' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p27: PinSet = PinSet(rawValue: 1 << 27)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:80:23: note: add '@MainActor' to make static property 'p27' part of global actor 'MainActor'
    public static let p27: PinSet = PinSet(rawValue: 1 << 27)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p27: PinSet = PinSet(rawValue: 1 << 27)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:81:23: warning: static property 'p28' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p28: PinSet = PinSet(rawValue: 1 << 28)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:81:23: note: add '@MainActor' to make static property 'p28' part of global actor 'MainActor'
    public static let p28: PinSet = PinSet(rawValue: 1 << 28)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p28: PinSet = PinSet(rawValue: 1 << 28)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:82:23: warning: static property 'p29' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p29: PinSet = PinSet(rawValue: 1 << 29)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:82:23: note: add '@MainActor' to make static property 'p29' part of global actor 'MainActor'
    public static let p29: PinSet = PinSet(rawValue: 1 << 29)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p29: PinSet = PinSet(rawValue: 1 << 29)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:83:23: warning: static property 'p30' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p30: PinSet = PinSet(rawValue: 1 << 30)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:83:23: note: add '@MainActor' to make static property 'p30' part of global actor 'MainActor'
    public static let p30: PinSet = PinSet(rawValue: 1 << 30)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p30: PinSet = PinSet(rawValue: 1 << 30)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:84:23: warning: static property 'p31' is not concurrency-safe because non-'Sendable' type 'PinSet' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p31: PinSet = PinSet(rawValue: 1 << 31)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:41:15: note: consider making struct 'PinSet' conform to the 'Sendable' protocol
public struct PinSet: OptionSet {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:84:23: note: add '@MainActor' to make static property 'p31' part of global actor 'MainActor'
    public static let p31: PinSet = PinSet(rawValue: 1 << 31)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/GPIO.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p31: PinSet = PinSet(rawValue: 1 << 31)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Extensions.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k Compiling\ SingleBoard.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: warning: static property 'raspberryPi' is not concurrency-safe because non-'Sendable' type 'any RaspberryCapabilities' (aka 'any HasGPIO & HasI2C & HasPWM') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: note: add '@MainActor' to make static property 'raspberryPi' part of global actor 'MainActor'
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: warning: static property 'pine64' is not concurrency-safe because non-'Sendable' type 'any PineCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: add '@MainActor' to make static property 'pine64' part of global actor 'MainActor'
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: warning: static property 'rock64' is not concurrency-safe because non-'Sendable' type 'any PineCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: add '@MainActor' to make static property 'rock64' part of global actor 'MainActor'
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: warning: static property 'chip' is not concurrency-safe because non-'Sendable' type 'any ChipCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: add '@MainActor' to make static property 'chip' part of global actor 'MainActor'
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Raspberry_PWM.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k Compiling\ I2C.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/I2C.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/I2C.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling GPIO.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 Compiling\ I2C.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/I2C.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Common/I2C.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Emitting module for SingleBoard (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriver\ Compilation\ Requirements SingleBoard normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SingleBoard' from project 'SingleBoard')
    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 SingleBoard -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard-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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard_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/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling GPIO.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64 Compiling\ Pine_Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Pine_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Pine_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/SingleBoard-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard-Swift.h (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/SingleBoard-Swift.h
SwiftDriverJobDiscovery normal armv7k Compiling Chip_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.swiftmodule (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.swiftdoc (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.abi.json (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.swiftsourceinfo (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ Chip_Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Chip_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/Boards/Chip_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: warning: static property 'raspberryPi' is not concurrency-safe because non-'Sendable' type 'any RaspberryCapabilities' (aka 'any HasGPIO & HasI2C & HasPWM') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: note: add '@MainActor' to make static property 'raspberryPi' part of global actor 'MainActor'
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let raspberryPi: RaspberryCapabilities = { return RaspberryBoard() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: warning: static property 'pine64' is not concurrency-safe because non-'Sendable' type 'any PineCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: add '@MainActor' to make static property 'pine64' part of global actor 'MainActor'
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pine64: PineCapabilities = { return Pine64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: warning: static property 'rock64' is not concurrency-safe because non-'Sendable' type 'any PineCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: add '@MainActor' to make static property 'rock64' part of global actor 'MainActor'
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let rock64: PineCapabilities = { return Rock64Board() }()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: warning: static property 'chip' is not concurrency-safe because non-'Sendable' type 'any ChipCapabilities' (aka 'any HasI2C') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:79:17: note: protocol 'HasI2C' does not conform to the 'Sendable' protocol
public protocol HasI2C: class {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: add '@MainActor' to make static property 'chip' part of global actor 'MainActor'
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SingleBoard/SingleBoard.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let chip: ChipCapabilities = { return ChipBoard() }()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Pine_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriverJobDiscovery normal arm64_32 Compiling I2C.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriverJobDiscovery normal arm64_32 Compiling Chip_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriverJobDiscovery normal arm64 Compiling Pine_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriver\ Compilation SingleBoard normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'SingleBoard' from project 'SingleBoard')
    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 SingleBoard -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard-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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard_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/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard-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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/Binary/SingleBoard.o normal arm64_32 (in target 'SingleBoard' from project 'SingleBoard')
    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-watchos5.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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard_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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/Binary/SingleBoard.o
SwiftDriverJobDiscovery normal armv7k Compiling Extensions.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriverJobDiscovery normal armv7k Compiling Raspberry_Registers.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriverJobDiscovery normal arm64 Compiling SingleBoard.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriver\ Compilation SingleBoard normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SingleBoard' from project 'SingleBoard')
    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 SingleBoard -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard-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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard_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/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard-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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/Binary/SingleBoard.o normal arm64 (in target 'SingleBoard' from project 'SingleBoard')
    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-watchos5.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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard_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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/Binary/SingleBoard.o
SwiftDriverJobDiscovery normal armv7k Compiling Raspberry_Board.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriverJobDiscovery normal armv7k Compiling SingleBoard.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriverJobDiscovery normal armv7k Compiling I2C.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriverJobDiscovery normal armv7k Compiling Raspberry_PWM.swift (in target 'SingleBoard' from project 'SingleBoard')
SwiftDriver\ Compilation SingleBoard normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SingleBoard' from project 'SingleBoard')
    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 SingleBoard -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard-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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard_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/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard-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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/Binary/SingleBoard.o normal armv7k (in target 'SingleBoard' from project 'SingleBoard')
    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-watchos5.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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard_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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/Binary/SingleBoard.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.o normal arm64\ armv7k\ arm64_32 (in target 'SingleBoard' from project 'SingleBoard')
    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/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/Binary/SingleBoard.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/Binary/SingleBoard.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/Binary/SingleBoard.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.o
ExtractAppIntentsMetadata (in target 'SingleBoard' from project 'SingleBoard')
    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 SingleBoard --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 5.0 --bundle-identifier spi-builder-workspace.SingleBoard --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/SingleBoard.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/SingleBoard.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64/SingleBoard.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/armv7k/SingleBoard.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SingleBoard.build/Debug-watchos/SingleBoard.build/Objects-normal/arm64_32/SingleBoard.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 14:07:13.411 appintentsmetadataprocessor[739:4222] Starting appintentsmetadataprocessor export
2025-04-26 14:07:13.449 appintentsmetadataprocessor[739:4222] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.o (in target 'SingleBoard' from project 'SingleBoard')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SingleBoard.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SingleBoard",
  "name" : "SingleBoard",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SingleBoard",
      "targets" : [
        "SingleBoard"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SingleBoardTests",
      "module_type" : "SwiftTarget",
      "name" : "SingleBoardTests",
      "path" : "Tests/SingleBoardTests",
      "sources" : [
        "RaspberryPi/RegisterTests.swift",
        "SingleBoardTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "SingleBoard"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SingleBoard",
      "module_type" : "SwiftTarget",
      "name" : "SingleBoard",
      "path" : "Sources/SingleBoard",
      "product_memberships" : [
        "SingleBoard"
      ],
      "sources" : [
        "Boards/Chip_Board.swift",
        "Boards/Pine_Board.swift",
        "Boards/Raspberry_Board.swift",
        "Boards/Raspberry_PWM.swift",
        "Boards/Raspberry_Registers.swift",
        "Common/Extensions.swift",
        "Common/GPIO.swift",
        "Common/I2C.swift",
        "SingleBoard.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.