The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build StreamDeck, reference main (3ef001), with Swift 6.1 for Linux on 5 Jun 2025 17:47:13 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

 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 | }
[105/254] Emitting module ArgumentParser
/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 |
[120/255] Compiling SwiftSyntax AbsolutePosition.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
[121/255] Compiling SwiftSyntax AbsoluteRawSyntax.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
[122/255] Compiling SwiftSyntax AbsoluteSyntaxInfo.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
[123/255] Compiling SwiftSyntax Assert.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
[124/255] Compiling SwiftSyntax BumpPtrAllocator.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
[125/255] Compiling SwiftSyntax CommonAncestor.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
[126/255] Compiling SwiftSyntax Convenience.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
[127/255] Compiling SwiftSyntax CustomTraits.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
[128/255] Compiling SwiftSyntax EditorPlaceholder.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
[147/264] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[148/264] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[149/264] Compiling SwiftSyntax SyntaxBaseNodes.swift
[150/264] Compiling SwiftSyntax SyntaxCollections.swift
[151/264] Compiling SwiftSyntax SyntaxIdentifier.swift
[152/264] Compiling SwiftSyntax Trivia.swift
[153/264] Compiling SwiftSyntax Utils.swift
[154/264] Compiling SwiftSyntax ChildNameForKeyPath.swift
[155/264] Compiling SwiftSyntax Keyword.swift
[156/264] Compiling SwiftSyntax RenamedChildrenCompatibility.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
<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
[207/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
[208/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
[209/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
[210/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
[211/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
[212/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
[213/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
[214/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
[215/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
[216/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
[217/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
[218/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
[219/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
[220/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
[221/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
[222/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
[223/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
[224/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
[225/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
[232/266] Compiling SwiftSyntax TokenDiagnostic.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 TokenSequence.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 TokenSyntax.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
<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
[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 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
[256/326] 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
[257/326] 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
[258/326] 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
[259/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
[260/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
[261/326] 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
[262/326] 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
[263/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
[264/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
[265/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
[266/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
[267/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
[268/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
[269/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
[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
[271/327] Wrapping AST for SwiftDiagnostics for debugging
[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/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
[275/328] Wrapping AST for SwiftBasicFormat for debugging
<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
[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] 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
[284/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
[285/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
[286/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
[287/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
[288/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
[289/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
[290/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
[291/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
[292/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
[293/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
[294/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
[295/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
[296/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
[297/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
[298/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
[299/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
[300/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
[301/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
[302/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
[303/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
[304/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
[305/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
[306/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
[307/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
[308/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
[309/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
[310/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
[311/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
[312/333] 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
[313/333] 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
[314/333] 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
[315/333] 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
[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 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
[327/358] 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
[328/359] 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
[329/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
[330/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
[331/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
[332/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
[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 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
[336/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
[337/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
[338/360] Wrapping AST for SwiftOperators for debugging
[340/360] 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
[341/360] 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
[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
<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
[345/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
[346/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
[349/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
[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 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
[355/376] 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
[356/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
[357/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
[358/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
[359/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
[360/377] 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
[361/377] 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
[362/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
[363/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
[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 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
[367/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
[368/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
[369/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
[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/395] 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
[375/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
[376/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
[377/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
[378/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
[379/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
[380/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
[381/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
[382/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
[383/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
[384/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
[385/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
[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 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
[394/408] 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
[395/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
[396/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
[397/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
[398/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
[399/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
[400/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
[401/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
[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 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
[406/421] 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
[407/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
[408/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
[409/422] 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
[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 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
[412/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
[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 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
[415/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
[416/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
[417/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
[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] Compiling StreamDeckMacros KeyMacros.swift
[425/431] Emitting module StreamDeckMacros
[426/431] Compiling StreamDeckMacros Plugin.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 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")
[434/512] 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")
[435/512] 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")
[436/512] 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")
[437/512] 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")
[438/517] 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")
[439/517] 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")
[440/517] 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")
[441/517] 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")
[442/517] 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")
[443/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")
[444/517] 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")
[445/517] 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")
[446/517] 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")
[447/517] 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")
[448/517] 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")
[449/517] 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")
[450/517] 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")
[451/517] 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")
[452/517] 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")
[453/517] 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")
/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")
[459/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")
[460/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")
[461/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")
[462/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")
[463/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")
[464/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")
/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")
[471/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")
[472/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")
[473/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")
[474/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")
[475/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")
/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")
[481/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")
[482/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")
[483/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")
[484/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")
[485/522] 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")
[486/522] 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")
[487/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")
[488/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")
[489/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")
[490/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")
[491/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")
[492/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")
/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)
[505/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")
[506/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")
[507/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")
[508/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")
[509/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")
[510/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")
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:2b296aa7156f49efc57252cdf9ed4bb21d0f92fc98d88800e255491ba2db3116
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-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/45] Emitting module SwiftSyntax601
[6/66] Compiling SwiftSyntax600 Empty.swift
[7/66] Emitting module SwiftSyntax600
[8/69] Emitting module SwiftSyntax510
[9/69] Compiling SwiftSyntax509 Empty.swift
[10/69] Compiling SwiftSyntax510 Empty.swift
[11/70] Emitting module SwiftSyntax509
[12/71] Compiling SwiftSyntax601 Empty.swift
[17/68] Emitting module ArgumentParserToolInfo
[18/68] Compiling SDPlusLayout LayoutItem.swift
[19/68] Compiling SDPlusLayout LayoutItemKey.swift
[20/70] Compiling SDPlusLayout Clamped.swift
[21/70] Compiling SDPlusLayout Layout.swift
[26/72] Compiling SDPlusLayout LayoutName.swift
[27/72] Compiling SDPlusLayout LayoutSettings.swift
[30/72] Emitting module SDPlusLayout
[31/72] Compiling SDPlusLayout BarLayoutItem.swift
[32/72] Compiling SDPlusLayout Color+ExpressibleByStringLiteral.swift
[33/72] Compiling SDPlusLayout Color+FormatStyle.swift
[37/72] Compiling SDPlusLayout ModifiedItem.swift
[38/72] Compiling SDPlusLayout Properties.swift
[39/72] Emitting module SDPlusLayout
[42/83] Compiling ArgumentParserToolInfo ToolInfo.swift
[43/137] Emitting module ArgumentParserToolInfo
[44/137] Compiling ArgumentParserToolInfo ToolInfo.swift
[46/138] Compiling SwiftSyntax Assert.swift
[47/138] Compiling SwiftSyntax BumpPtrAllocator.swift
[48/138] Compiling SwiftSyntax CommonAncestor.swift
[49/138] Compiling SwiftSyntax Convenience.swift
[51/138] Compiling SwiftSyntax EditorPlaceholder.swift
[52/138] Compiling SwiftSyntax SourceLocation.swift
[55/214] Compiling ArgumentParser ParsableArguments.swift
[56/214] Compiling ArgumentParser ParsableArgumentsValidation.swift
[57/214] Compiling ArgumentParser ParsableCommand.swift
[58/215] Compiling ArgumentParser Option.swift
[59/215] Compiling ArgumentParser ExpressibleByArgument.swift
[63/216] Emitting module ArgumentParser
[65/226] Compiling ArgumentParser Name.swift
[66/226] Compiling ArgumentParser Parsed.swift
[67/226] Compiling ArgumentParser ParsedValues.swift
[68/226] Compiling ArgumentParser ParserError.swift
[69/226] Compiling ArgumentParser SplitArguments.swift
[75/226] Compiling ArgumentParser CollectionExtensions.swift
[76/226] Compiling ArgumentParser Platform.swift
[77/226] Compiling ArgumentParser SequenceExtensions.swift
[78/226] Compiling ArgumentParser StringExtensions.swift
[79/226] Compiling ArgumentParser Tree.swift
[85/226] Compiling ArgumentParser DumpHelpGenerator.swift
[86/226] Compiling ArgumentParser HelpCommand.swift
[87/226] Compiling ArgumentParser HelpGenerator.swift
[88/226] Compiling ArgumentParser MessageInfo.swift
[89/226] Compiling ArgumentParser UsageGenerator.swift
[95/226] Compiling ArgumentParser OptionGroup.swift
[96/226] Compiling ArgumentParser AsyncParsableCommand.swift
[97/226] Compiling ArgumentParser CommandConfiguration.swift
[98/226] Compiling ArgumentParser CommandGroup.swift
[99/226] Compiling ArgumentParser EnumerableFlag.swift
[100/226] Compiling ArgumentParser ArgumentDefinition.swift
[101/226] Compiling ArgumentParser ArgumentSet.swift
[102/226] Compiling ArgumentParser CommandParser.swift
[103/226] Compiling ArgumentParser InputKey.swift
[104/226] Compiling ArgumentParser InputOrigin.swift
[105/226] Compiling ArgumentParser CompletionsGenerator.swift
[106/226] Compiling ArgumentParser FishCompletionsGenerator.swift
[107/226] Compiling ArgumentParser ZshCompletionsGenerator.swift
[108/226] Compiling ArgumentParser Argument.swift
[109/226] Compiling ArgumentParser ArgumentHelp.swift
[114/226] Compiling ArgumentParser ArgumentDecoder.swift
[115/226] Compiling ArgumentParser BashCompletionsGenerator.swift
[116/226] Compiling ArgumentParser ArgumentVisibility.swift
[117/226] Compiling ArgumentParser CompletionKind.swift
[118/226] Compiling ArgumentParser Errors.swift
[119/226] Compiling ArgumentParser Flag.swift
[120/226] Compiling ArgumentParser NameSpecification.swift
[169/237] Emitting module SwiftSyntax
[170/237] Compiling SwiftSyntax RawSyntaxNodesC.swift
[171/237] Compiling SwiftSyntax RawSyntaxNodesD.swift
[172/237] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[173/237] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[174/237] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[175/237] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[176/237] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[177/237] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[178/237] Compiling SwiftSyntax RawSyntaxValidation.swift
[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
[212/237] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[213/237] Compiling SwiftSyntax SyntaxBaseNodes.swift
[214/237] Compiling SwiftSyntax SyntaxCollections.swift
[215/237] Compiling SwiftSyntax SyntaxNodesAB.swift
[216/237] Compiling SwiftSyntax SyntaxNodesC.swift
[217/237] Compiling SwiftSyntax SyntaxNodesD.swift
[218/237] Compiling SwiftSyntax SyntaxNodesEF.swift
[219/237] Compiling SwiftSyntax SyntaxNodesGHI.swift
[220/237] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[221/237] Compiling SwiftSyntax SyntaxNodesOP.swift
[222/237] Compiling SwiftSyntax SyntaxNodesQRS.swift
[223/237] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[225/254] Compiling SwiftDiagnostics Message.swift
[226/296] Emitting module SwiftDiagnostics
[227/296] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[228/296] Compiling SwiftParser Expressions.swift
[229/296] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[230/296] Compiling SwiftBasicFormat Syntax+Extensions.swift
[231/296] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[232/296] Compiling SwiftDiagnostics Note.swift
[233/296] Compiling SwiftBasicFormat InferIndentation.swift
[234/296] Compiling SwiftBasicFormat Indenter.swift
[235/296] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[236/296] Compiling SwiftParser IncrementalParseTransition.swift
[237/296] Compiling SwiftParser IsValidIdentifier.swift
[238/296] Compiling SwiftDiagnostics FixIt.swift
[239/296] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[240/296] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[242/296] Emitting module SwiftBasicFormat
[243/296] Compiling SwiftBasicFormat BasicFormat.swift
[245/296] Compiling SwiftParser LexemeSequence.swift
[246/296] Compiling SwiftParser Lexer.swift
[247/296] Compiling SwiftParser RegexLiteralLexer.swift
[248/296] Compiling SwiftParser UnicodeScalarExtensions.swift
[249/296] Compiling SwiftParser Lookahead.swift
[250/296] Compiling SwiftParser LoopProgressCondition.swift
[251/301] Compiling SwiftParser SwiftParserCompatibility.swift
[252/301] Compiling SwiftParser SwiftVersion.swift
[253/301] Compiling SwiftParser SyntaxUtils.swift
[254/301] Compiling SwiftParser TokenConsumer.swift
[255/301] Compiling SwiftParser TokenPrecedence.swift
[256/301] Compiling SwiftParser TokenSpec.swift
[257/301] Compiling SwiftParser TokenSpecSet.swift
[258/301] Compiling SwiftParser TopLevel.swift
[259/301] Compiling SwiftParser TriviaParser.swift
[260/301] Compiling SwiftParser Types.swift
[261/301] Compiling SwiftParser Patterns.swift
[262/301] Compiling SwiftParser Recovery.swift
[263/301] Compiling SwiftParser Specifiers.swift
[264/301] Compiling SwiftParser Statements.swift
[265/301] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[266/301] Compiling SwiftParser StringLiterals.swift
[267/301] Compiling SwiftParser Modifiers.swift
[268/301] Compiling SwiftParser Names.swift
[269/301] Compiling SwiftParser Nominals.swift
[270/301] Compiling SwiftParser Parameters.swift
[271/301] Compiling SwiftParser ParseSourceFile.swift
[272/301] Compiling SwiftParser Parser.swift
[273/301] Emitting module SwiftParser
[274/301] Compiling SwiftParser Attributes.swift
[275/301] Compiling SwiftParser Availability.swift
[276/301] Compiling SwiftParser CharacterInfo.swift
[277/301] Compiling SwiftParser CollectionNodes+Parsable.swift
[278/301] Compiling SwiftParser Declarations.swift
[279/301] Compiling SwiftParser Directives.swift
[284/301] Compiling SwiftParser Cursor.swift
[285/301] Compiling SwiftParser Lexeme.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 SwiftParserDiagnostics DiagnosticExtensions.swift
[293/324] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[294/325] Compiling SwiftOperators PrecedenceGroup.swift
[295/325] Compiling SwiftParserDiagnostics MissingNodesError.swift
[296/325] Compiling SwiftParserDiagnostics MissingTokenError.swift
[297/325] Compiling SwiftOperators PrecedenceGraph.swift
[298/325] Compiling SwiftOperators OperatorTable.swift
[299/325] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[300/326] Emitting module SwiftOperators
[301/326] Compiling SwiftOperators SyntaxSynthesis.swift
[302/326] Compiling SwiftOperators OperatorTable+Semantics.swift
[303/326] Compiling SwiftOperators OperatorTable+Folding.swift
[304/327] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[306/326] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[307/326] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[308/326] Compiling SwiftParserDiagnostics Utils.swift
[309/326] Emitting module SwiftParserDiagnostics
[310/326] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[311/326] Compiling SwiftParserDiagnostics PresenceUtils.swift
[316/326] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[317/326] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[319/341] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[320/341] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[321/342] Compiling SwiftSyntaxBuilder Indenter.swift
[322/342] Compiling SwiftSyntaxBuilder ListBuilder.swift
[323/342] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[324/342] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[325/342] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[326/342] Emitting module SwiftSyntaxBuilder
[327/342] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[328/342] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[329/342] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[330/342] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[331/342] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[332/342] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[333/342] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[334/342] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[336/359] Compiling SwiftSyntaxMacros AccessorMacro.swift
[337/359] Compiling SwiftSyntaxMacros AttachedMacro.swift
[338/359] Compiling SwiftSyntaxMacros BodyMacro.swift
[339/361] Compiling SwiftSyntaxMacros Macro.swift
[340/361] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[341/361] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[342/361] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[343/361] Compiling SwiftSyntaxMacros MemberMacro.swift
[344/361] Compiling SwiftSyntaxMacros PeerMacro.swift
[345/361] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[346/361] Compiling SwiftSyntaxMacros Macro+Format.swift
[347/361] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[348/361] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[349/361] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[350/361] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[351/361] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[352/361] Emitting module SwiftSyntaxMacros
[353/361] Compiling SwiftSyntaxMacros PreambleMacro.swift
[354/361] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[356/370] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[357/371] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[358/371] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[359/371] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[360/371] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[361/371] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[362/371] Emitting module SwiftSyntaxMacroExpansion
[363/371] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[364/371] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[365/371] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[367/383] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[368/384] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[369/384] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[370/384] Emitting module SwiftCompilerPluginMessageHandling
[371/384] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[372/384] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[373/384] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[374/384] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[375/384] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[376/384] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[377/384] Compiling SwiftCompilerPluginMessageHandling Diagnostics.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] Emitting module StreamDeckMacros
[385/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 {
[386/391] Compiling StreamDeckMacros KeyMacros.swift
[387/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
[388/391] Compiling StreamDeckMacros Plugin.swift
[389/391] Write Objects.LinkFileList
[390/391] Linking StreamDeckMacros-tool
[392/471] 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")
[393/471] 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")
[394/471] 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")
[395/471] 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")
[396/471] 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")
[397/471] 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")
[398/471] 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")
[399/471] 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")
[400/471] 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")
[401/471] 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")
[402/471] 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")
[403/471] 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")
[404/476] 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")
[405/476] 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")
[406/476] 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")
[407/476] 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")
[408/476] 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")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[409/476] 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")
[410/476] 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")
[411/476] 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")
[412/476] 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")
[413/476] 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")
[414/476] 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")
/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")
[420/481] 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")
[421/481] 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")
[422/481] 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")
[423/481] 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")
[424/481] 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")
[425/481] 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")
[426/481] 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")
[427/481] 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")
[428/481] 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")
[429/481] 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")
[430/481] 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")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[443/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")
[444/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")
[445/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")
[446/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")
[447/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")
[448/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")
[449/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")
[450/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")
[451/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")
[452/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")
[453/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")
[454/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")
/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")
/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 linux