Build Information
Failed to build StreamDeck, reference main (3ef001
), with Swift 6.1 for Android on 5 Jun 2025 17:48:01 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
Build Log
| |- warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
447 | /// CSS `red`
448 | public static let red = Color(hexString: "#FF0000")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:448:20: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
446 | public static let purple = Color(hexString: "#800080")
447 | /// CSS `red`
448 | public static let red = Color(hexString: "#FF0000")
| |- warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 | /// CSS `rosybrown`
450 | public static let rosybrown = Color(hexString: "#BC8F8F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:450:20: warning: static property 'rosybrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
448 | public static let red = Color(hexString: "#FF0000")
449 | /// CSS `rosybrown`
450 | public static let rosybrown = Color(hexString: "#BC8F8F")
| |- warning: static property 'rosybrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'rosybrown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
451 | /// CSS `royalblue`
452 | public static let royalblue = Color(hexString: "#4169E1")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:452:20: warning: static property 'royalblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
450 | public static let rosybrown = Color(hexString: "#BC8F8F")
451 | /// CSS `royalblue`
452 | public static let royalblue = Color(hexString: "#4169E1")
| |- warning: static property 'royalblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'royalblue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
453 | /// CSS `saddlebrown`
454 | public static let saddlebrown = Color(hexString: "#8B4513")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:454:20: warning: static property 'saddlebrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
452 | public static let royalblue = Color(hexString: "#4169E1")
453 | /// CSS `saddlebrown`
454 | public static let saddlebrown = Color(hexString: "#8B4513")
| |- warning: static property 'saddlebrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'saddlebrown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 | /// CSS `salmon`
456 | public static let salmon = Color(hexString: "#FA8072")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:456:20: warning: static property 'salmon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
454 | public static let saddlebrown = Color(hexString: "#8B4513")
455 | /// CSS `salmon`
456 | public static let salmon = Color(hexString: "#FA8072")
| |- warning: static property 'salmon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'salmon' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
457 | /// CSS `sandybrown`
458 | public static let sandybrown = Color(hexString: "#F4A460")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:458:20: warning: static property 'sandybrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
456 | public static let salmon = Color(hexString: "#FA8072")
457 | /// CSS `sandybrown`
458 | public static let sandybrown = Color(hexString: "#F4A460")
| |- warning: static property 'sandybrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sandybrown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
459 | /// CSS `seagreen`
460 | public static let seagreen = Color(hexString: "#2E8B57")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:460:20: warning: static property 'seagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
458 | public static let sandybrown = Color(hexString: "#F4A460")
459 | /// CSS `seagreen`
460 | public static let seagreen = Color(hexString: "#2E8B57")
| |- warning: static property 'seagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'seagreen' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
461 | /// CSS `seashell`
462 | public static let seashell = Color(hexString: "#2E8B57")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:462:20: warning: static property 'seashell' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
460 | public static let seagreen = Color(hexString: "#2E8B57")
461 | /// CSS `seashell`
462 | public static let seashell = Color(hexString: "#2E8B57")
| |- warning: static property 'seashell' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'seashell' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 | /// CSS `sienna`
464 | public static let sienna = Color(hexString: "#A0522D")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:464:20: warning: static property 'sienna' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
462 | public static let seashell = Color(hexString: "#2E8B57")
463 | /// CSS `sienna`
464 | public static let sienna = Color(hexString: "#A0522D")
| |- warning: static property 'sienna' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sienna' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
465 | /// CSS `silver`
466 | public static let silver = Color(hexString: "#C0C0C0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:466:20: warning: static property 'silver' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
464 | public static let sienna = Color(hexString: "#A0522D")
465 | /// CSS `silver`
466 | public static let silver = Color(hexString: "#C0C0C0")
| |- warning: static property 'silver' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'silver' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
467 | /// CSS `skyblue`
468 | public static let skyblue = Color(hexString: "#87CEEB")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:468:20: warning: static property 'skyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
466 | public static let silver = Color(hexString: "#C0C0C0")
467 | /// CSS `skyblue`
468 | public static let skyblue = Color(hexString: "#87CEEB")
| |- warning: static property 'skyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'skyblue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
469 | /// CSS `slateblue`
470 | public static let slateblue = Color(hexString: "#6A5ACD")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:470:20: warning: static property 'slateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
468 | public static let skyblue = Color(hexString: "#87CEEB")
469 | /// CSS `slateblue`
470 | public static let slateblue = Color(hexString: "#6A5ACD")
| |- warning: static property 'slateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'slateblue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
471 | /// CSS `slategray`
472 | public static let slategray = Color(hexString: "#708090")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:472:20: warning: static property 'slategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
470 | public static let slateblue = Color(hexString: "#6A5ACD")
471 | /// CSS `slategray`
472 | public static let slategray = Color(hexString: "#708090")
| |- warning: static property 'slategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'slategray' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
473 | /// CSS `slategrey`
474 | public static let slategrey = Color(hexString: "#708090")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:474:20: warning: static property 'slategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
472 | public static let slategray = Color(hexString: "#708090")
473 | /// CSS `slategrey`
474 | public static let slategrey = Color(hexString: "#708090")
| |- warning: static property 'slategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'slategrey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
475 | /// CSS `snow`
476 | public static let snow = Color(hexString: "#FFFAFA")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:476:20: warning: static property 'snow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
474 | public static let slategrey = Color(hexString: "#708090")
475 | /// CSS `snow`
476 | public static let snow = Color(hexString: "#FFFAFA")
| |- warning: static property 'snow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'snow' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
477 | /// CSS `springgreen`
478 | public static let springgreen = Color(hexString: "#00FF7F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:478:20: warning: static property 'springgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
476 | public static let snow = Color(hexString: "#FFFAFA")
477 | /// CSS `springgreen`
478 | public static let springgreen = Color(hexString: "#00FF7F")
| |- warning: static property 'springgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'springgreen' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
479 | /// CSS `steelblue`
480 | public static let steelblue = Color(hexString: "#4682B4")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:480:20: warning: static property 'steelblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
478 | public static let springgreen = Color(hexString: "#00FF7F")
479 | /// CSS `steelblue`
480 | public static let steelblue = Color(hexString: "#4682B4")
| |- warning: static property 'steelblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'steelblue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
481 | /// CSS `tan`
482 | public static let tan = Color(hexString: "#D2B48C")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:482:20: warning: static property 'tan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
480 | public static let steelblue = Color(hexString: "#4682B4")
481 | /// CSS `tan`
482 | public static let tan = Color(hexString: "#D2B48C")
| |- warning: static property 'tan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tan' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
483 | /// CSS `teal`
484 | public static let teal = Color(hexString: "#008080")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:484:20: warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
482 | public static let tan = Color(hexString: "#D2B48C")
483 | /// CSS `teal`
484 | public static let teal = Color(hexString: "#008080")
| |- warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'teal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
485 | /// CSS `thistle`
486 | public static let thistle = Color(hexString: "#D8BFD8")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:486:20: warning: static property 'thistle' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
484 | public static let teal = Color(hexString: "#008080")
485 | /// CSS `thistle`
486 | public static let thistle = Color(hexString: "#D8BFD8")
| |- warning: static property 'thistle' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'thistle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
487 | /// CSS `tomato`
488 | public static let tomato = Color(hexString: "#FF6347")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:488:20: warning: static property 'tomato' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
486 | public static let thistle = Color(hexString: "#D8BFD8")
487 | /// CSS `tomato`
488 | public static let tomato = Color(hexString: "#FF6347")
| |- warning: static property 'tomato' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tomato' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
489 | /// CSS `turquoise`
490 | public static let turquoise = Color(hexString: "#40E0D0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:490:20: warning: static property 'turquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
488 | public static let tomato = Color(hexString: "#FF6347")
489 | /// CSS `turquoise`
490 | public static let turquoise = Color(hexString: "#40E0D0")
| |- warning: static property 'turquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'turquoise' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
491 | /// CSS `violet`
492 | public static let violet = Color(hexString: "#EE82EE")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:492:20: warning: static property 'violet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
490 | public static let turquoise = Color(hexString: "#40E0D0")
491 | /// CSS `violet`
492 | public static let violet = Color(hexString: "#EE82EE")
| |- warning: static property 'violet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'violet' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
493 | /// CSS `wheat`
494 | public static let wheat = Color(hexString: "#F5DEB3")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:494:20: warning: static property 'wheat' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
492 | public static let violet = Color(hexString: "#EE82EE")
493 | /// CSS `wheat`
494 | public static let wheat = Color(hexString: "#F5DEB3")
| |- warning: static property 'wheat' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'wheat' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
495 | /// CSS `white`
496 | public static let white = Color(hexString: "#FFFFFF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:496:20: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
494 | public static let wheat = Color(hexString: "#F5DEB3")
495 | /// CSS `white`
496 | public static let white = Color(hexString: "#FFFFFF")
| |- warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
497 | /// CSS `whitesmoke`
498 | public static let whitesmoke = Color(hexString: "#F5F5F5")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:498:20: warning: static property 'whitesmoke' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
496 | public static let white = Color(hexString: "#FFFFFF")
497 | /// CSS `whitesmoke`
498 | public static let whitesmoke = Color(hexString: "#F5F5F5")
| |- warning: static property 'whitesmoke' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'whitesmoke' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 | /// CSS `yellow`
500 | public static let yellow = Color(hexString: "#FFFF00")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:500:20: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
498 | public static let whitesmoke = Color(hexString: "#F5F5F5")
499 | /// CSS `yellow`
500 | public static let yellow = Color(hexString: "#FFFF00")
| |- warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 | /// CSS `yellowgreen`
502 | public static let yellowgreen = Color(hexString: "#9ACD32")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:502:20: warning: static property 'yellowgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
500 | public static let yellow = Color(hexString: "#FFFF00")
501 | /// CSS `yellowgreen`
502 | public static let yellowgreen = Color(hexString: "#9ACD32")
| |- warning: static property 'yellowgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'yellowgreen' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
503 |
504 | }
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:57:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 | /// A rectangle which fills the whole layout.
57 | static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
| |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 | }
59 |
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:57:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 | /// A rectangle which fills the whole layout.
57 | static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
| |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 | }
59 |
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[216/266] Emitting module SwiftSyntax
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[217/266] Compiling SwiftSyntax SyntaxEnum.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[218/266] Compiling SwiftSyntax SyntaxKind.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[219/266] Compiling SwiftSyntax SyntaxRewriter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[220/266] Compiling SwiftSyntax SyntaxTraits.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[221/266] Compiling SwiftSyntax SyntaxVisitor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[222/266] Compiling SwiftSyntax TokenKind.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[223/266] Compiling SwiftSyntax Tokens.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[224/266] Compiling SwiftSyntax TriviaPieces.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[225/266] Compiling SwiftSyntax RawSyntaxNodesAB.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[226/266] Compiling SwiftSyntax RawSyntaxNodesC.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[227/266] Compiling SwiftSyntax RawSyntaxNodesD.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[228/266] Compiling SwiftSyntax RawSyntaxNodesEF.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[229/266] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[230/266] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[231/266] Compiling SwiftSyntax RawSyntaxNodesOP.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[232/266] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[233/266] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[234/266] Compiling SwiftSyntax RawSyntaxValidation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[241/266] Compiling SwiftSyntax SyntaxAnyVisitor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[242/266] Compiling SwiftSyntax SyntaxBaseNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[243/266] Compiling SwiftSyntax SyntaxCollections.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[244/266] Compiling SwiftSyntax SyntaxNodesAB.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[245/266] Compiling SwiftSyntax SyntaxNodesC.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[246/266] Compiling SwiftSyntax SyntaxNodesD.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[247/266] Compiling SwiftSyntax SyntaxNodesEF.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[248/266] Compiling SwiftSyntax SyntaxNodesGHI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[249/266] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[250/266] Compiling SwiftSyntax SyntaxNodesOP.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[251/266] Compiling SwiftSyntax SyntaxNodesQRS.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[252/266] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[253/267] Wrapping AST for SwiftSyntax for debugging
[255/325] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[256/325] Compiling SwiftDiagnostics Message.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[257/326] Compiling SwiftBasicFormat Syntax+Extensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[258/326] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[259/326] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[260/326] Compiling SwiftParser Expressions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[261/326] Emitting module SwiftDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[262/326] Compiling SwiftBasicFormat Indenter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[263/326] Compiling SwiftParser IncrementalParseTransition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[264/326] Compiling SwiftParser IsValidIdentifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[265/326] Compiling SwiftDiagnostics Note.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[266/326] Compiling SwiftBasicFormat InferIndentation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[267/326] Compiling SwiftDiagnostics GroupedDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[268/326] Compiling SwiftDiagnostics FixIt.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[269/326] Compiling SwiftDiagnostics DiagnosticDecorator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[270/326] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[272/327] Compiling SwiftBasicFormat BasicFormat.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[273/327] Emitting module SwiftBasicFormat
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[274/328] Wrapping AST for SwiftDiagnostics for debugging
[275/328] Wrapping AST for SwiftBasicFormat for debugging
[277/328] Compiling SwiftParser LexemeSequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[278/328] Compiling SwiftParser Lexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[279/328] Compiling SwiftParser RegexLiteralLexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[280/328] Compiling SwiftParser UnicodeScalarExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[281/328] Compiling SwiftParser Lookahead.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[282/328] Compiling SwiftParser LoopProgressCondition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[283/333] Emitting module SwiftParser
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[284/333] Compiling SwiftParser Modifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[285/333] Compiling SwiftParser Names.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[286/333] Compiling SwiftParser Nominals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[287/333] Compiling SwiftParser Parameters.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[288/333] Compiling SwiftParser ParseSourceFile.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[289/333] Compiling SwiftParser Parser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[290/333] Compiling SwiftParser SwiftParserCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[291/333] Compiling SwiftParser SwiftVersion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[292/333] Compiling SwiftParser SyntaxUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[293/333] Compiling SwiftParser TokenConsumer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[294/333] Compiling SwiftParser TokenPrecedence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[295/333] Compiling SwiftParser TokenSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[296/333] Compiling SwiftParser TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[297/333] Compiling SwiftParser TopLevel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[298/333] Compiling SwiftParser TriviaParser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[299/333] Compiling SwiftParser Types.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[300/333] Compiling SwiftParser Patterns.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[301/333] Compiling SwiftParser Recovery.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[302/333] Compiling SwiftParser Specifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[303/333] Compiling SwiftParser Statements.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[304/333] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[305/333] Compiling SwiftParser StringLiterals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[306/333] Compiling SwiftParser Attributes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[307/333] Compiling SwiftParser Availability.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[308/333] Compiling SwiftParser CharacterInfo.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[309/333] Compiling SwiftParser CollectionNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[310/333] Compiling SwiftParser Declarations.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[311/333] Compiling SwiftParser Directives.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[316/333] Compiling SwiftParser Cursor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[317/333] Compiling SwiftParser Lexeme.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[318/333] Compiling SwiftParser ExperimentalFeatures.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[319/333] Compiling SwiftParser IsLexerClassified.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[320/333] Compiling SwiftParser LayoutNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[321/333] Compiling SwiftParser Parser+TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[322/333] Compiling SwiftParser TokenSpecStaticMembers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[323/334] Wrapping AST for SwiftParser for debugging
[325/357] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[326/358] Compiling SwiftOperators PrecedenceGroup.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[327/359] Compiling SwiftOperators OperatorTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[328/359] Compiling SwiftOperators PrecedenceGraph.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[329/359] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[330/359] Emitting module SwiftOperators
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[331/359] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[332/359] Compiling SwiftParserDiagnostics Utils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[333/359] Compiling SwiftOperators OperatorTable+Semantics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[334/359] Compiling SwiftOperators SyntaxSynthesis.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[335/359] Compiling SwiftOperators OperatorTable+Folding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[336/359] Compiling SwiftParserDiagnostics MissingNodesError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[337/359] Compiling SwiftParserDiagnostics MissingTokenError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[338/359] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[339/359] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[340/360] Wrapping AST for SwiftOperators for debugging
[342/360] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[343/360] Emitting module SwiftParserDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[346/360] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[347/360] Compiling SwiftParserDiagnostics PresenceUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[350/360] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[351/360] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[352/361] Wrapping AST for SwiftParserDiagnostics for debugging
[354/376] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[355/376] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[356/377] Compiling SwiftSyntaxBuilder Indenter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[357/377] Compiling SwiftSyntaxBuilder ListBuilder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[358/377] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[359/377] Emitting module SwiftSyntaxBuilder
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[360/377] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[361/377] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[362/377] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[363/377] Compiling SwiftSyntaxBuilder ResultBuilders.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[364/377] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[365/377] Compiling SwiftSyntaxBuilder BuildableNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[366/377] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[367/377] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[368/377] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[369/377] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[370/378] Wrapping AST for SwiftSyntaxBuilder for debugging
[372/395] Compiling SwiftSyntaxMacros CodeItemMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[373/395] Compiling SwiftSyntaxMacros DeclarationMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[374/397] Compiling SwiftSyntaxMacros Macro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[375/397] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[376/397] Compiling SwiftSyntaxMacros MemberMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[377/397] Compiling SwiftSyntaxMacros PeerMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[378/397] Compiling SwiftSyntaxMacros AccessorMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[379/397] Compiling SwiftSyntaxMacros AttachedMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[380/397] Compiling SwiftSyntaxMacros BodyMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[381/397] Emitting module SwiftSyntaxMacros
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[382/397] Compiling SwiftSyntaxMacros FreestandingMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[383/397] Compiling SwiftSyntaxMacros Macro+Format.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[384/397] Compiling SwiftSyntaxMacros ExpressionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[385/397] Compiling SwiftSyntaxMacros ExtensionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[386/397] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[387/397] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[388/397] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[389/397] Compiling SwiftSyntaxMacros PreambleMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[390/397] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[391/398] Wrapping AST for SwiftSyntaxMacros for debugging
[393/407] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[394/408] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[395/408] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[396/408] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[397/408] Emitting module SwiftSyntaxMacroExpansion
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[398/408] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[399/408] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[400/408] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[401/408] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[402/408] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[403/409] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[405/421] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[406/422] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[407/422] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[408/422] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[409/422] Compiling SwiftCompilerPluginMessageHandling Macros.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[410/422] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[411/422] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[412/422] Emitting module SwiftCompilerPluginMessageHandling
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[413/422] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[414/422] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[415/422] Compiling SwiftCompilerPluginMessageHandling JSON.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[416/422] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[417/422] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[418/423] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[420/425] Emitting module SwiftCompilerPlugin
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[421/425] Compiling SwiftCompilerPlugin CompilerPlugin.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[422/426] Wrapping AST for SwiftCompilerPlugin for debugging
[424/431] Emitting module StreamDeckMacros
[425/431] Compiling StreamDeckMacros Plugin.swift
[426/431] Compiling StreamDeckMacros KeyMacros.swift
[427/431] Compiling StreamDeckMacros SharedKeyMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/SharedKeyMacro.swift:45:14: warning: 'argumentList' is deprecated: renamed to 'arguments'
43 |
44 | // Check we have the requisite number of arguments
45 | guard node.argumentList.count == 3 else {
| |- warning: 'argumentList' is deprecated: renamed to 'arguments'
| `- note: use 'arguments' instead
46 | throw MacroError.invalidCount
47 | }
/host/spi-builder-workspace/Sources/StreamDeckMacros/SharedKeyMacro.swift:50:27: warning: 'argumentList' is deprecated: renamed to 'arguments'
48 |
49 | // Create an array so we can access the args by index
50 | let argumentList = node.argumentList.map { $0 }
| |- warning: 'argumentList' is deprecated: renamed to 'arguments'
| `- note: use 'arguments' instead
51 |
52 | // Get the name from the first argument
[428/431] Compiling StreamDeckMacros EntryMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:42:49: warning: 'as' is deprecated: This cast will always succeed
40 | static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
41 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
42 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
43 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
44 | else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:42:91: warning: 'as' is deprecated: This cast will always succeed
40 | static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
41 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
42 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
43 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
44 | else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:49: warning: 'as' is deprecated: This cast will always succeed
52 | static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
53 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
54 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
55 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
56 | let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:91: warning: 'as' is deprecated: This cast will always succeed
52 | static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
53 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
54 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
55 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
56 | let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:55:10: warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
53 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
54 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
55 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
| `- warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
56 | let initializer = patternBinding.initializer
57 | else {
[429/432] Wrapping AST for StreamDeckMacros for debugging
[430/432] Write Objects.LinkFileList
[431/432] Linking StreamDeckMacros-tool
[433/512] Compiling StreamDeck StreamDeckKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[434/512] Compiling StreamDeck EventProtocols.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[435/512] Compiling StreamDeck EnvironmentValues.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[436/512] Compiling StreamDeck EnvironmentWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[437/512] Compiling StreamDeck ApplicationsToMonitor.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[438/517] Compiling StreamDeck PluginOS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[439/517] Compiling StreamDeck PluginProfile.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[440/517] Compiling StreamDeck PluginSoftware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[441/517] Compiling StreamDeck RotaryEncoder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[442/517] Compiling StreamDeck TriggerDescription.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[443/522] Compiling StreamDeck Action+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[444/522] Compiling StreamDeck ActionBuilder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[445/522] Compiling StreamDeck ExportCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[446/522] Compiling StreamDeck PluginCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[447/522] Compiling StreamDeck StreamDeckCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[454/522] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[455/522] Compiling StreamDeck Action+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[456/522] Compiling StreamDeck Action+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[457/522] Compiling StreamDeck Action.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[458/522] Compiling StreamDeck LongPress.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[459/522] Compiling StreamDeck PluginCommunication.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[460/522] Compiling StreamDeck Coordinates.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[461/522] Compiling StreamDeck Fonts.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[462/522] Compiling StreamDeck SDPlugin+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[463/522] Compiling StreamDeck SDPlugin+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[464/522] Compiling StreamDeck SDPlugin+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[465/522] Compiling StreamDeck StreamDeckPlugin.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[466/522] Compiling StreamDeck PluginManifest.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[472/522] Compiling StreamDeck ActionControllerRegistry.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[473/522] Compiling StreamDeck EnvironmentKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[474/522] Compiling StreamDeck Hardware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[475/522] Compiling StreamDeck PluginAction.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[476/522] Compiling StreamDeck PluginActionState.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[477/522] Compiling StreamDeck PluginInfo.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[478/522] Compiling StreamDeck StreamDeckError.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[479/522] Compiling StreamDeck Events.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[480/522] Compiling StreamDeck CharSet+DNS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[481/522] Compiling StreamDeck NSImage+Base64.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[482/522] Compiling StreamDeck URL+Argument.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[483/522] Compiling StreamDeck SettingsMacros.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[484/522] Compiling StreamDeck SPDI.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[485/522] Compiling StreamDeck GlobalSettings.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[486/522] Compiling StreamDeck GlobalSettingsKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[487/522] Compiling StreamDeck SettingsWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[488/522] Compiling StreamDeck State.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
[3/3] Compiling plugin GenerateManual
Building for debugging...
[3/22] Write swift-version-24593BA9C3E375BF.txt
[5/51] Emitting module SwiftSyntax509
[6/51] Compiling SwiftSyntax509 Empty.swift
[7/51] Emitting module SwiftSyntax510
[8/65] Compiling SwiftSyntax510 Empty.swift
[9/70] Emitting module SwiftSyntax600
[10/70] Compiling SwiftSyntax600 Empty.swift
[11/70] Compiling SwiftSyntax601 Empty.swift
[12/70] Emitting module SwiftSyntax601
[17/68] Compiling SDPlusLayout Text.swift
[18/68] Compiling SDPlusLayout Bar.swift
[19/70] Compiling SDPlusLayout LayoutItem.swift
[20/70] Compiling SDPlusLayout LayoutItemKey.swift
[21/70] Compiling SDPlusLayout LayoutName.swift
[22/70] Compiling SDPlusLayout LayoutSettings.swift
[23/70] Compiling SDPlusLayout Clamped.swift
[24/70] Compiling SDPlusLayout Layout.swift
[25/72] Emitting module SDPlusLayout
[30/72] Compiling SDPlusLayout ModifiedItem.swift
[31/72] Compiling SDPlusLayout Properties.swift
[32/72] Emitting module SDPlusLayout
[33/102] Compiling SwiftSyntax SourceEdit.swift
[34/102] Compiling SwiftSyntax SourceLength.swift
[35/136] Emitting module ArgumentParserToolInfo
[36/136] Compiling ArgumentParserToolInfo ToolInfo.swift
[38/136] Emitting module ArgumentParserToolInfo
[39/138] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[40/138] Compiling SwiftSyntax Assert.swift
[41/138] Compiling SwiftSyntax AbsolutePosition.swift
[42/138] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[43/138] Compiling SwiftSyntax EditorPlaceholder.swift
[44/138] Compiling SwiftSyntax Identifier.swift
[47/138] Compiling SwiftSyntax Convenience.swift
[48/138] Compiling SwiftSyntax CustomTraits.swift
[49/214] Compiling ArgumentParser Argument.swift
[50/214] Compiling ArgumentParser ArgumentHelp.swift
[51/214] Compiling ArgumentParser ArgumentVisibility.swift
[52/214] Compiling ArgumentParser Flag.swift
[53/214] Compiling ArgumentParser NameSpecification.swift
[54/214] Compiling ArgumentParser Option.swift
[56/215] Compiling ArgumentParser BashCompletionsGenerator.swift
[57/215] Compiling ArgumentParser CompletionsGenerator.swift
[58/215] Compiling ArgumentParser FishCompletionsGenerator.swift
[59/215] Compiling ArgumentParser ZshCompletionsGenerator.swift
[63/216] Emitting module ArgumentParser
[65/221] Compiling ArgumentParser CompletionKind.swift
[66/221] Compiling ArgumentParser Errors.swift
[76/226] Emitting module ArgumentParser
[77/226] Compiling ArgumentParser CollectionExtensions.swift
[78/226] Compiling ArgumentParser Platform.swift
[79/226] Compiling ArgumentParser SequenceExtensions.swift
[80/226] Compiling ArgumentParser StringExtensions.swift
[81/226] Compiling ArgumentParser Tree.swift
[85/226] Compiling ArgumentParser ArgumentDefinition.swift
[86/226] Compiling ArgumentParser ArgumentSet.swift
[87/226] Compiling ArgumentParser CommandParser.swift
[88/226] Compiling ArgumentParser InputKey.swift
[89/226] Compiling ArgumentParser InputOrigin.swift
[90/226] Compiling ArgumentParser ExpressibleByArgument.swift
[105/235] Compiling ArgumentParser Name.swift
[106/235] Compiling ArgumentParser Parsed.swift
[107/235] Compiling ArgumentParser ParsedValues.swift
[108/235] Compiling ArgumentParser ParserError.swift
[109/235] Compiling ArgumentParser SplitArguments.swift
[115/235] Compiling ArgumentParser DumpHelpGenerator.swift
[116/235] Compiling ArgumentParser HelpCommand.swift
[117/235] Compiling ArgumentParser HelpGenerator.swift
[118/235] Compiling ArgumentParser MessageInfo.swift
[119/235] Compiling ArgumentParser UsageGenerator.swift
[121/235] Compiling ArgumentParser ParsableArguments.swift
[122/235] Compiling ArgumentParser ParsableArgumentsValidation.swift
[123/235] Compiling ArgumentParser ParsableCommand.swift
[124/235] Compiling ArgumentParser ArgumentDecoder.swift
[142/235] Compiling ArgumentParser OptionGroup.swift
[143/235] Compiling ArgumentParser AsyncParsableCommand.swift
[144/235] Compiling ArgumentParser CommandConfiguration.swift
[145/235] Compiling ArgumentParser CommandGroup.swift
[146/235] Compiling ArgumentParser EnumerableFlag.swift
[178/237] Emitting module SwiftSyntax
[179/237] Compiling SwiftSyntax SyntaxEnum.swift
[180/237] Compiling SwiftSyntax SyntaxKind.swift
[181/237] Compiling SwiftSyntax SyntaxRewriter.swift
[182/237] Compiling SwiftSyntax SyntaxTraits.swift
[183/237] Compiling SwiftSyntax SyntaxVisitor.swift
[184/237] Compiling SwiftSyntax TokenKind.swift
[185/237] Compiling SwiftSyntax Tokens.swift
[186/237] Compiling SwiftSyntax TriviaPieces.swift
[187/237] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[188/237] Compiling SwiftSyntax RawSyntaxNodesC.swift
[189/237] Compiling SwiftSyntax RawSyntaxNodesD.swift
[190/237] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[191/237] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[192/237] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[193/237] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[194/237] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[195/237] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[196/237] Compiling SwiftSyntax RawSyntaxValidation.swift
[197/237] Compiling SwiftSyntax SyntaxNodesAB.swift
[198/237] Compiling SwiftSyntax SyntaxNodesC.swift
[199/237] Compiling SwiftSyntax SyntaxNodesD.swift
[200/237] Compiling SwiftSyntax SyntaxNodesEF.swift
[201/237] Compiling SwiftSyntax SyntaxNodesGHI.swift
[202/237] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[203/237] Compiling SwiftSyntax SyntaxNodesOP.swift
[204/237] Compiling SwiftSyntax SyntaxNodesQRS.swift
[205/237] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[221/237] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[222/237] Compiling SwiftSyntax SyntaxBaseNodes.swift
[223/237] Compiling SwiftSyntax SyntaxCollections.swift
[225/254] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[226/295] Compiling SwiftBasicFormat Syntax+Extensions.swift
[227/295] Compiling SwiftDiagnostics Message.swift
[228/296] Emitting module SwiftDiagnostics
[229/296] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[230/296] Compiling SwiftParser Attributes.swift
[231/296] Compiling SwiftParser Availability.swift
[232/296] Compiling SwiftDiagnostics Note.swift
[233/296] Compiling SwiftBasicFormat InferIndentation.swift
[234/296] Compiling SwiftBasicFormat Indenter.swift
[235/296] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[236/296] Compiling SwiftDiagnostics FixIt.swift
[237/296] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[238/296] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[239/296] Compiling SwiftParser CharacterInfo.swift
[240/296] Compiling SwiftParser CollectionNodes+Parsable.swift
[242/296] Emitting module SwiftBasicFormat
[243/296] Compiling SwiftBasicFormat BasicFormat.swift
[245/296] Compiling SwiftParser SwiftParserCompatibility.swift
[246/296] Compiling SwiftParser SwiftVersion.swift
[247/296] Compiling SwiftParser SyntaxUtils.swift
[248/296] Compiling SwiftParser TokenConsumer.swift
[249/296] Compiling SwiftParser TokenPrecedence.swift
[250/296] Compiling SwiftParser TokenSpec.swift
[251/296] Compiling SwiftParser TokenSpecSet.swift
[252/296] Compiling SwiftParser TopLevel.swift
[253/296] Compiling SwiftParser TriviaParser.swift
[254/296] Compiling SwiftParser Types.swift
[255/301] Emitting module SwiftParser
[256/301] Compiling SwiftParser Patterns.swift
[257/301] Compiling SwiftParser Recovery.swift
[258/301] Compiling SwiftParser Specifiers.swift
[259/301] Compiling SwiftParser Statements.swift
[260/301] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[261/301] Compiling SwiftParser StringLiterals.swift
[262/301] Compiling SwiftParser LexemeSequence.swift
[263/301] Compiling SwiftParser Lexer.swift
[264/301] Compiling SwiftParser RegexLiteralLexer.swift
[265/301] Compiling SwiftParser UnicodeScalarExtensions.swift
[266/301] Compiling SwiftParser Lookahead.swift
[267/301] Compiling SwiftParser LoopProgressCondition.swift
[268/301] Compiling SwiftParser Modifiers.swift
[269/301] Compiling SwiftParser Names.swift
[270/301] Compiling SwiftParser Nominals.swift
[271/301] Compiling SwiftParser Parameters.swift
[272/301] Compiling SwiftParser ParseSourceFile.swift
[273/301] Compiling SwiftParser Parser.swift
[274/301] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[275/301] Compiling SwiftParser Expressions.swift
[276/301] Compiling SwiftParser IncrementalParseTransition.swift
[277/301] Compiling SwiftParser IsValidIdentifier.swift
[278/301] Compiling SwiftParser Cursor.swift
[279/301] Compiling SwiftParser Lexeme.swift
[284/301] Compiling SwiftParser Declarations.swift
[285/301] Compiling SwiftParser Directives.swift
[286/301] Compiling SwiftParser ExperimentalFeatures.swift
[287/301] Compiling SwiftParser IsLexerClassified.swift
[288/301] Compiling SwiftParser LayoutNodes+Parsable.swift
[289/301] Compiling SwiftParser Parser+TokenSpecSet.swift
[290/301] Compiling SwiftParser TokenSpecStaticMembers.swift
[292/324] Compiling SwiftOperators PrecedenceGroup.swift
[293/325] Compiling SwiftOperators OperatorTable.swift
[294/325] Compiling SwiftOperators PrecedenceGraph.swift
[295/325] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[296/325] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[297/325] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[298/326] Compiling SwiftOperators OperatorTable+Semantics.swift
[299/326] Compiling SwiftOperators SyntaxSynthesis.swift
[300/326] Emitting module SwiftOperators
[301/326] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[302/326] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[303/326] Compiling SwiftParserDiagnostics PresenceUtils.swift
[304/326] Compiling SwiftOperators OperatorTable+Folding.swift
[306/326] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[307/326] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[308/326] Compiling SwiftParserDiagnostics Utils.swift
[313/326] Emitting module SwiftParserDiagnostics
[314/326] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[315/326] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[316/326] Compiling SwiftParserDiagnostics MissingNodesError.swift
[317/326] Compiling SwiftParserDiagnostics MissingTokenError.swift
[319/341] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[320/341] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[321/342] Compiling SwiftSyntaxBuilder Indenter.swift
[322/342] Compiling SwiftSyntaxBuilder ListBuilder.swift
[323/342] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[324/342] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[325/342] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[326/342] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[327/342] Emitting module SwiftSyntaxBuilder
[328/342] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[329/342] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[330/342] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[331/342] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[332/342] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[333/342] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[334/342] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[336/359] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[337/359] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[338/361] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[339/361] Compiling SwiftSyntaxMacros Macro+Format.swift
[340/361] Compiling SwiftSyntaxMacros AccessorMacro.swift
[341/361] Compiling SwiftSyntaxMacros AttachedMacro.swift
[342/361] Compiling SwiftSyntaxMacros BodyMacro.swift
[343/361] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[344/361] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[345/361] Compiling SwiftSyntaxMacros Macro.swift
[346/361] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[347/361] Compiling SwiftSyntaxMacros MemberMacro.swift
[348/361] Compiling SwiftSyntaxMacros PeerMacro.swift
[349/361] Emitting module SwiftSyntaxMacros
[350/361] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[351/361] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[352/361] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[353/361] Compiling SwiftSyntaxMacros PreambleMacro.swift
[354/361] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[356/370] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[357/371] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[358/371] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[359/371] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[360/371] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[361/371] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[362/371] Emitting module SwiftSyntaxMacroExpansion
[363/371] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[364/371] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[365/371] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[367/383] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[368/384] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[369/384] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[370/384] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[371/384] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[372/384] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[373/384] Emitting module SwiftCompilerPluginMessageHandling
[374/384] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[375/384] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[376/384] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[377/384] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[378/384] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[379/384] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[381/386] Emitting module SwiftCompilerPlugin
[382/386] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[384/391] Compiling StreamDeckMacros Plugin.swift
[385/391] Compiling StreamDeckMacros KeyMacros.swift
[386/391] Emitting module StreamDeckMacros
[387/391] Compiling StreamDeckMacros EntryMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:42:49: warning: 'as' is deprecated: This cast will always succeed
40 | static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
41 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
42 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
43 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
44 | else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:42:91: warning: 'as' is deprecated: This cast will always succeed
40 | static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
41 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
42 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
43 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
44 | else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:49: warning: 'as' is deprecated: This cast will always succeed
52 | static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
53 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
54 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
55 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
56 | let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:91: warning: 'as' is deprecated: This cast will always succeed
52 | static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
53 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
54 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
55 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
56 | let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:55:10: warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
53 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
54 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
55 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
| `- warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
56 | let initializer = patternBinding.initializer
57 | else {
[388/391] Compiling StreamDeckMacros SharedKeyMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/SharedKeyMacro.swift:45:14: warning: 'argumentList' is deprecated: renamed to 'arguments'
43 |
44 | // Check we have the requisite number of arguments
45 | guard node.argumentList.count == 3 else {
| |- warning: 'argumentList' is deprecated: renamed to 'arguments'
| `- note: use 'arguments' instead
46 | throw MacroError.invalidCount
47 | }
/host/spi-builder-workspace/Sources/StreamDeckMacros/SharedKeyMacro.swift:50:27: warning: 'argumentList' is deprecated: renamed to 'arguments'
48 |
49 | // Create an array so we can access the args by index
50 | let argumentList = node.argumentList.map { $0 }
| |- warning: 'argumentList' is deprecated: renamed to 'arguments'
| `- note: use 'arguments' instead
51 |
52 | // Get the name from the first argument
[389/391] Write Objects.LinkFileList
[390/391] Linking StreamDeckMacros-tool
[392/471] Compiling StreamDeck EnvironmentValues.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[393/471] Compiling StreamDeck EnvironmentWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[394/471] Compiling StreamDeck ApplicationsToMonitor.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[395/471] Compiling StreamDeck Coordinates.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[396/471] Compiling StreamDeck Fonts.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[397/471] Compiling StreamDeck SDPlugin+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[398/471] Compiling StreamDeck SDPlugin+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[399/471] Compiling StreamDeck SDPlugin+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[400/471] Compiling StreamDeck StreamDeckPlugin.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[401/471] Compiling StreamDeck ActionControllerRegistry.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[402/471] Compiling StreamDeck EnvironmentKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[403/471] Compiling StreamDeck PluginOS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[404/471] Compiling StreamDeck PluginProfile.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[405/471] Compiling StreamDeck PluginSoftware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[406/471] Compiling StreamDeck RotaryEncoder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[407/471] Compiling StreamDeck TriggerDescription.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[408/471] Compiling StreamDeck Hardware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[409/471] Compiling StreamDeck PluginAction.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[410/471] Compiling StreamDeck PluginActionState.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[411/471] Compiling StreamDeck PluginInfo.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[412/471] Compiling StreamDeck PluginManifest.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[434/481] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[435/481] Compiling StreamDeck Action+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[436/481] Compiling StreamDeck Action+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[437/481] Compiling StreamDeck Action.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[438/481] Compiling StreamDeck LongPress.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[439/481] Compiling StreamDeck PluginCommunication.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[440/481] Compiling StreamDeck StreamDeckError.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[441/481] Compiling StreamDeck Events.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[442/481] Compiling StreamDeck CharSet+DNS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[443/481] Compiling StreamDeck NSImage+Base64.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[444/481] Compiling StreamDeck URL+Argument.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[445/481] Compiling StreamDeck SettingsMacros.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[446/481] Compiling StreamDeck Action+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[447/481] Compiling StreamDeck ActionBuilder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[448/481] Compiling StreamDeck ExportCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[449/481] Compiling StreamDeck PluginCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[450/481] Compiling StreamDeck StreamDeckCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[451/481] Compiling StreamDeck StreamDeckKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[452/481] Compiling StreamDeck EventProtocols.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[453/481] Compiling StreamDeck SPDI.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[454/481] Compiling StreamDeck GlobalSettings.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[455/481] Compiling StreamDeck GlobalSettingsKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[456/481] Compiling StreamDeck SettingsWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[457/481] Compiling StreamDeck State.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[464/481] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
BUILD FAILURE 6.1 android