The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build SkiaKit, reference 0.0.1 (533cd1), with Swift 6.0 for Linux on 14 Sep 2024 15:56:05 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

    |                       |- note: convert 'darkGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     public static var darkKhaki = Color (0xFFBDB76B)
 44 |     public static var darkMagenta = Color (0xFF8B008B)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:43:23: warning: static property 'darkKhaki' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |     public static var darkGray = Color (0xFFA9A9A9)
 42 |     public static var darkGreen = Color (0xFF006400)
 43 |     public static var darkKhaki = Color (0xFFBDB76B)
    |                       |- warning: static property 'darkKhaki' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkKhaki' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkKhaki' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |     public static var darkMagenta = Color (0xFF8B008B)
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:44:23: warning: static property 'darkMagenta' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |     public static var darkGreen = Color (0xFF006400)
 43 |     public static var darkKhaki = Color (0xFFBDB76B)
 44 |     public static var darkMagenta = Color (0xFF8B008B)
    |                       |- warning: static property 'darkMagenta' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkMagenta' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkMagenta' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
 46 |     public static var darkOrange = Color (0xFFFF8C00)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:45:23: warning: static property 'darkOliveGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 43 |     public static var darkKhaki = Color (0xFFBDB76B)
 44 |     public static var darkMagenta = Color (0xFF8B008B)
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
    |                       |- warning: static property 'darkOliveGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkOliveGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkOliveGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     public static var darkOrange = Color (0xFFFF8C00)
 47 |     public static var darkOrchid = Color (0xFF9932CC)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:46:23: warning: static property 'darkOrange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |     public static var darkMagenta = Color (0xFF8B008B)
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
 46 |     public static var darkOrange = Color (0xFFFF8C00)
    |                       |- warning: static property 'darkOrange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkOrange' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkOrange' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |     public static var darkOrchid = Color (0xFF9932CC)
 48 |     public static var darkRed = Color (0xFF8B0000)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:47:23: warning: static property 'darkOrchid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
 46 |     public static var darkOrange = Color (0xFFFF8C00)
 47 |     public static var darkOrchid = Color (0xFF9932CC)
    |                       |- warning: static property 'darkOrchid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkOrchid' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkOrchid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |     public static var darkRed = Color (0xFF8B0000)
 49 |     public static var darkSalmon = Color (0xFFE9967A)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:48:23: warning: static property 'darkRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 46 |     public static var darkOrange = Color (0xFFFF8C00)
 47 |     public static var darkOrchid = Color (0xFF9932CC)
 48 |     public static var darkRed = Color (0xFF8B0000)
    |                       |- warning: static property 'darkRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     public static var darkSalmon = Color (0xFFE9967A)
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:49:23: warning: static property 'darkSalmon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |     public static var darkOrchid = Color (0xFF9932CC)
 48 |     public static var darkRed = Color (0xFF8B0000)
 49 |     public static var darkSalmon = Color (0xFFE9967A)
    |                       |- warning: static property 'darkSalmon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkSalmon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkSalmon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:50:23: warning: static property 'darkSeaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static var darkRed = Color (0xFF8B0000)
 49 |     public static var darkSalmon = Color (0xFFE9967A)
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
    |                       |- warning: static property 'darkSeaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkSeaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkSeaGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:51:23: warning: static property 'darkSlateBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 |     public static var darkSalmon = Color (0xFFE9967A)
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
    |                       |- warning: static property 'darkSlateBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkSlateBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkSlateBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:52:23: warning: static property 'darkSlateGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
    |                       |- warning: static property 'darkSlateGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkSlateGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkSlateGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
 54 |     public static var darkViolet = Color (0xFF9400D3)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:53:23: warning: static property 'darkTurquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
    |                       |- warning: static property 'darkTurquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkTurquoise' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkTurquoise' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |     public static var darkViolet = Color (0xFF9400D3)
 55 |     public static var deepPink = Color (0xFFFF1493)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:54:23: warning: static property 'darkViolet' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
 54 |     public static var darkViolet = Color (0xFF9400D3)
    |                       |- warning: static property 'darkViolet' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'darkViolet' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkViolet' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |     public static var deepPink = Color (0xFFFF1493)
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:55:23: warning: static property 'deepPink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
 54 |     public static var darkViolet = Color (0xFF9400D3)
 55 |     public static var deepPink = Color (0xFFFF1493)
    |                       |- warning: static property 'deepPink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'deepPink' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'deepPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
 57 |     public static var dimGray = Color (0xFF696969)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:56:23: warning: static property 'deepSkyBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 54 |     public static var darkViolet = Color (0xFF9400D3)
 55 |     public static var deepPink = Color (0xFFFF1493)
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
    |                       |- warning: static property 'deepSkyBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'deepSkyBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'deepSkyBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |     public static var dimGray = Color (0xFF696969)
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:57:23: warning: static property 'dimGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 55 |     public static var deepPink = Color (0xFFFF1493)
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
 57 |     public static var dimGray = Color (0xFF696969)
    |                       |- warning: static property 'dimGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'dimGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'dimGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
 59 |     public static var firebrick = Color (0xFFB22222)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:58:23: warning: static property 'dodgerBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
 57 |     public static var dimGray = Color (0xFF696969)
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
    |                       |- warning: static property 'dodgerBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'dodgerBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'dodgerBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |     public static var firebrick = Color (0xFFB22222)
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:59:23: warning: static property 'firebrick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 57 |     public static var dimGray = Color (0xFF696969)
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
 59 |     public static var firebrick = Color (0xFFB22222)
    |                       |- warning: static property 'firebrick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'firebrick' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'firebrick' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
 61 |     public static var forestGreen = Color (0xFF228B22)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:60:23: warning: static property 'floralWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
 59 |     public static var firebrick = Color (0xFFB22222)
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
    |                       |- warning: static property 'floralWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'floralWhite' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'floralWhite' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |     public static var forestGreen = Color (0xFF228B22)
 62 |     public static var fuchsia = Color (0xFFFF00FF)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:61:23: warning: static property 'forestGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 59 |     public static var firebrick = Color (0xFFB22222)
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
 61 |     public static var forestGreen = Color (0xFF228B22)
    |                       |- warning: static property 'forestGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'forestGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'forestGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 |     public static var fuchsia = Color (0xFFFF00FF)
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:62:23: warning: static property 'fuchsia' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
 61 |     public static var forestGreen = Color (0xFF228B22)
 62 |     public static var fuchsia = Color (0xFFFF00FF)
    |                       |- warning: static property 'fuchsia' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'fuchsia' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'fuchsia' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:63:23: warning: static property 'gainsboro' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 61 |     public static var forestGreen = Color (0xFF228B22)
 62 |     public static var fuchsia = Color (0xFFFF00FF)
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
    |                       |- warning: static property 'gainsboro' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'gainsboro' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'gainsboro' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
 65 |     public static var gold = Color (0xFFFFD700)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:64:23: warning: static property 'ghostWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 62 |     public static var fuchsia = Color (0xFFFF00FF)
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
    |                       |- warning: static property 'ghostWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'ghostWhite' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'ghostWhite' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     public static var gold = Color (0xFFFFD700)
 66 |     public static var goldenrod = Color (0xFFDAA520)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:65:23: warning: static property 'gold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
 65 |     public static var gold = Color (0xFFFFD700)
    |                       |- warning: static property 'gold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'gold' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'gold' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |     public static var goldenrod = Color (0xFFDAA520)
 67 |     public static var gray = Color (0xFF808080)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:66:23: warning: static property 'goldenrod' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
 65 |     public static var gold = Color (0xFFFFD700)
 66 |     public static var goldenrod = Color (0xFFDAA520)
    |                       |- warning: static property 'goldenrod' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'goldenrod' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'goldenrod' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |     public static var gray = Color (0xFF808080)
 68 |     public static var green = Color (0xFF008000)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:67:23: warning: static property 'gray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |     public static var gold = Color (0xFFFFD700)
 66 |     public static var goldenrod = Color (0xFFDAA520)
 67 |     public static var gray = Color (0xFF808080)
    |                       |- warning: static property 'gray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'gray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'gray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |     public static var green = Color (0xFF008000)
 69 |     public static var greenYellow = Color (0xFFADFF2F)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:68:23: warning: static property 'green' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 66 |     public static var goldenrod = Color (0xFFDAA520)
 67 |     public static var gray = Color (0xFF808080)
 68 |     public static var green = Color (0xFF008000)
    |                       |- warning: static property 'green' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'green' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'green' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |     public static var greenYellow = Color (0xFFADFF2F)
 70 |     public static var honeydew = Color (0xFFF0FFF0)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:69:23: warning: static property 'greenYellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 |     public static var gray = Color (0xFF808080)
 68 |     public static var green = Color (0xFF008000)
 69 |     public static var greenYellow = Color (0xFFADFF2F)
    |                       |- warning: static property 'greenYellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'greenYellow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'greenYellow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |     public static var honeydew = Color (0xFFF0FFF0)
 71 |     public static var hotPink = Color (0xFFFF69B4)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:70:23: warning: static property 'honeydew' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 68 |     public static var green = Color (0xFF008000)
 69 |     public static var greenYellow = Color (0xFFADFF2F)
 70 |     public static var honeydew = Color (0xFFF0FFF0)
    |                       |- warning: static property 'honeydew' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'honeydew' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'honeydew' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 |     public static var hotPink = Color (0xFFFF69B4)
 72 |     public static var indianRed = Color (0xFFCD5C5C)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:71:23: warning: static property 'hotPink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |     public static var greenYellow = Color (0xFFADFF2F)
 70 |     public static var honeydew = Color (0xFFF0FFF0)
 71 |     public static var hotPink = Color (0xFFFF69B4)
    |                       |- warning: static property 'hotPink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'hotPink' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'hotPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |     public static var indianRed = Color (0xFFCD5C5C)
 73 |     public static var indigo = Color (0xFF4B0082)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:72:23: warning: static property 'indianRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 70 |     public static var honeydew = Color (0xFFF0FFF0)
 71 |     public static var hotPink = Color (0xFFFF69B4)
 72 |     public static var indianRed = Color (0xFFCD5C5C)
    |                       |- warning: static property 'indianRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'indianRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'indianRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |     public static var indigo = Color (0xFF4B0082)
 74 |     public static var ivory = Color (0xFFFFFFF0)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:73:23: warning: static property 'indigo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 71 |     public static var hotPink = Color (0xFFFF69B4)
 72 |     public static var indianRed = Color (0xFFCD5C5C)
 73 |     public static var indigo = Color (0xFF4B0082)
    |                       |- warning: static property 'indigo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'indigo' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'indigo' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |     public static var ivory = Color (0xFFFFFFF0)
 75 |     public static var khaki = Color (0xFFF0E68C)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:74:23: warning: static property 'ivory' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 72 |     public static var indianRed = Color (0xFFCD5C5C)
 73 |     public static var indigo = Color (0xFF4B0082)
 74 |     public static var ivory = Color (0xFFFFFFF0)
    |                       |- warning: static property 'ivory' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'ivory' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'ivory' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |     public static var khaki = Color (0xFFF0E68C)
 76 |     public static var lavender = Color (0xFFE6E6FA)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:75:23: warning: static property 'khaki' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 73 |     public static var indigo = Color (0xFF4B0082)
 74 |     public static var ivory = Color (0xFFFFFFF0)
 75 |     public static var khaki = Color (0xFFF0E68C)
    |                       |- warning: static property 'khaki' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'khaki' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'khaki' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |     public static var lavender = Color (0xFFE6E6FA)
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:76:23: warning: static property 'lavender' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |     public static var ivory = Color (0xFFFFFFF0)
 75 |     public static var khaki = Color (0xFFF0E68C)
 76 |     public static var lavender = Color (0xFFE6E6FA)
    |                       |- warning: static property 'lavender' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lavender' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lavender' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:77:23: warning: static property 'lavenderBlush' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public static var khaki = Color (0xFFF0E68C)
 76 |     public static var lavender = Color (0xFFE6E6FA)
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
    |                       |- warning: static property 'lavenderBlush' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lavenderBlush' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lavenderBlush' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:78:23: warning: static property 'lawnGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |     public static var lavender = Color (0xFFE6E6FA)
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
    |                       |- warning: static property 'lawnGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lawnGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lawnGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
 80 |     public static var lightBlue = Color (0xFFADD8E6)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:79:23: warning: static property 'lemonChiffon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
    |                       |- warning: static property 'lemonChiffon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lemonChiffon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lemonChiffon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |     public static var lightBlue = Color (0xFFADD8E6)
 81 |     public static var lightCoral = Color (0xFFF08080)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:80:23: warning: static property 'lightBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
 80 |     public static var lightBlue = Color (0xFFADD8E6)
    |                       |- warning: static property 'lightBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |     public static var lightCoral = Color (0xFFF08080)
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:81:23: warning: static property 'lightCoral' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
 80 |     public static var lightBlue = Color (0xFFADD8E6)
 81 |     public static var lightCoral = Color (0xFFF08080)
    |                       |- warning: static property 'lightCoral' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightCoral' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightCoral' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:82:23: warning: static property 'lightCyan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 80 |     public static var lightBlue = Color (0xFFADD8E6)
 81 |     public static var lightCoral = Color (0xFFF08080)
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
    |                       |- warning: static property 'lightCyan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightCyan' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightCyan' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
 84 |     public static var lightGray = Color (0xFFD3D3D3)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:83:23: warning: static property 'lightGoldenrodYellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |     public static var lightCoral = Color (0xFFF08080)
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
    |                       |- warning: static property 'lightGoldenrodYellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightGoldenrodYellow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightGoldenrodYellow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |     public static var lightGray = Color (0xFFD3D3D3)
 85 |     public static var lightGreen = Color (0xFF90EE90)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:84:23: warning: static property 'lightGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
 84 |     public static var lightGray = Color (0xFFD3D3D3)
    |                       |- warning: static property 'lightGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |     public static var lightGreen = Color (0xFF90EE90)
 86 |     public static var lightPink = Color (0xFFFFB6C1)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:85:23: warning: static property 'lightGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
 84 |     public static var lightGray = Color (0xFFD3D3D3)
 85 |     public static var lightGreen = Color (0xFF90EE90)
    |                       |- warning: static property 'lightGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 |     public static var lightPink = Color (0xFFFFB6C1)
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:86:23: warning: static property 'lightPink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 84 |     public static var lightGray = Color (0xFFD3D3D3)
 85 |     public static var lightGreen = Color (0xFF90EE90)
 86 |     public static var lightPink = Color (0xFFFFB6C1)
    |                       |- warning: static property 'lightPink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightPink' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:87:23: warning: static property 'lightSalmon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 85 |     public static var lightGreen = Color (0xFF90EE90)
 86 |     public static var lightPink = Color (0xFFFFB6C1)
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
    |                       |- warning: static property 'lightSalmon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightSalmon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSalmon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:88:23: warning: static property 'lightSeaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |     public static var lightPink = Color (0xFFFFB6C1)
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
    |                       |- warning: static property 'lightSeaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightSeaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSeaGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
 90 |     public static var lightSlateGray = Color (0xFF778899)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:89:23: warning: static property 'lightSkyBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
    |                       |- warning: static property 'lightSkyBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightSkyBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSkyBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 |     public static var lightSlateGray = Color (0xFF778899)
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:90:23: warning: static property 'lightSlateGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
 90 |     public static var lightSlateGray = Color (0xFF778899)
    |                       |- warning: static property 'lightSlateGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightSlateGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSlateGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:91:23: warning: static property 'lightSteelBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
 90 |     public static var lightSlateGray = Color (0xFF778899)
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
    |                       |- warning: static property 'lightSteelBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightSteelBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSteelBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
 93 |     public static var lime = Color (0xFF00FF00)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:92:23: warning: static property 'lightYellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 90 |     public static var lightSlateGray = Color (0xFF778899)
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
    |                       |- warning: static property 'lightYellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lightYellow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightYellow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |     public static var lime = Color (0xFF00FF00)
 94 |     public static var limeGreen = Color (0xFF32CD32)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:93:23: warning: static property 'lime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
 93 |     public static var lime = Color (0xFF00FF00)
    |                       |- warning: static property 'lime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'lime' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lime' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |     public static var limeGreen = Color (0xFF32CD32)
 95 |     public static var linen = Color (0xFFFAF0E6)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:94:23: warning: static property 'limeGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
 93 |     public static var lime = Color (0xFF00FF00)
 94 |     public static var limeGreen = Color (0xFF32CD32)
    |                       |- warning: static property 'limeGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'limeGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'limeGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 |     public static var linen = Color (0xFFFAF0E6)
 96 |     public static var magenta = Color (0xFFFF00FF)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:95:23: warning: static property 'linen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 93 |     public static var lime = Color (0xFF00FF00)
 94 |     public static var limeGreen = Color (0xFF32CD32)
 95 |     public static var linen = Color (0xFFFAF0E6)
    |                       |- warning: static property 'linen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'linen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'linen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |     public static var magenta = Color (0xFFFF00FF)
 97 |     public static var maroon = Color (0xFF800000)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:96:23: warning: static property 'magenta' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     public static var limeGreen = Color (0xFF32CD32)
 95 |     public static var linen = Color (0xFFFAF0E6)
 96 |     public static var magenta = Color (0xFFFF00FF)
    |                       |- warning: static property 'magenta' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'magenta' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'magenta' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |     public static var maroon = Color (0xFF800000)
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:97:23: warning: static property 'maroon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 95 |     public static var linen = Color (0xFFFAF0E6)
 96 |     public static var magenta = Color (0xFFFF00FF)
 97 |     public static var maroon = Color (0xFF800000)
    |                       |- warning: static property 'maroon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'maroon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'maroon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
 99 |     public static var mediumBlue = Color (0xFF0000CD)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:98:23: warning: static property 'mediumAquamarine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 |     public static var magenta = Color (0xFFFF00FF)
 97 |     public static var maroon = Color (0xFF800000)
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
    |                       |- warning: static property 'mediumAquamarine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mediumAquamarine' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumAquamarine' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |     public static var mediumBlue = Color (0xFF0000CD)
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:99:23: warning: static property 'mediumBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 97 |     public static var maroon = Color (0xFF800000)
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
 99 |     public static var mediumBlue = Color (0xFF0000CD)
    |                       |- warning: static property 'mediumBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mediumBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
101 |     public static var mediumPurple = Color (0xFF9370DB)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:100:23: warning: static property 'mediumOrchid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
 99 |     public static var mediumBlue = Color (0xFF0000CD)
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
    |                       |- warning: static property 'mediumOrchid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mediumOrchid' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumOrchid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |     public static var mediumPurple = Color (0xFF9370DB)
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:101:23: warning: static property 'mediumPurple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 99 |     public static var mediumBlue = Color (0xFF0000CD)
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
101 |     public static var mediumPurple = Color (0xFF9370DB)
    |                       |- warning: static property 'mediumPurple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mediumPurple' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumPurple' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:102:23: warning: static property 'mediumSeaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
101 |     public static var mediumPurple = Color (0xFF9370DB)
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
    |                       |- warning: static property 'mediumSeaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mediumSeaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumSeaGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:103:23: warning: static property 'mediumSlateBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
101 |     public static var mediumPurple = Color (0xFF9370DB)
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
    |                       |- warning: static property 'mediumSlateBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mediumSlateBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumSlateBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:104:23: warning: static property 'mediumSpringGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
    |                       |- warning: static property 'mediumSpringGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mediumSpringGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumSpringGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
106 |     public static var mediumVioletRed = Color (0xFFC71585)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:105:23: warning: static property 'mediumTurquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
    |                       |- warning: static property 'mediumTurquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mediumTurquoise' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumTurquoise' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |     public static var mediumVioletRed = Color (0xFFC71585)
107 |     public static var midnightBlue = Color (0xFF191970)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:106:23: warning: static property 'mediumVioletRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
106 |     public static var mediumVioletRed = Color (0xFFC71585)
    |                       |- warning: static property 'mediumVioletRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mediumVioletRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumVioletRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 |     public static var midnightBlue = Color (0xFF191970)
108 |     public static var mintCream = Color (0xFFF5FFFA)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:107:23: warning: static property 'midnightBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
106 |     public static var mediumVioletRed = Color (0xFFC71585)
107 |     public static var midnightBlue = Color (0xFF191970)
    |                       |- warning: static property 'midnightBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'midnightBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'midnightBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |     public static var mintCream = Color (0xFFF5FFFA)
109 |     public static var mistyRose = Color (0xFFFFE4E1)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:108:23: warning: static property 'mintCream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 |     public static var mediumVioletRed = Color (0xFFC71585)
107 |     public static var midnightBlue = Color (0xFF191970)
108 |     public static var mintCream = Color (0xFFF5FFFA)
    |                       |- warning: static property 'mintCream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mintCream' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mintCream' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |     public static var mistyRose = Color (0xFFFFE4E1)
110 |     public static var moccasin = Color (0xFFFFE4B5)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:109:23: warning: static property 'mistyRose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
107 |     public static var midnightBlue = Color (0xFF191970)
108 |     public static var mintCream = Color (0xFFF5FFFA)
109 |     public static var mistyRose = Color (0xFFFFE4E1)
    |                       |- warning: static property 'mistyRose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'mistyRose' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mistyRose' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |     public static var moccasin = Color (0xFFFFE4B5)
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:110:23: warning: static property 'moccasin' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
108 |     public static var mintCream = Color (0xFFF5FFFA)
109 |     public static var mistyRose = Color (0xFFFFE4E1)
110 |     public static var moccasin = Color (0xFFFFE4B5)
    |                       |- warning: static property 'moccasin' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'moccasin' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'moccasin' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
112 |     public static var navy = Color (0xFF000080)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:111:23: warning: static property 'navajoWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
109 |     public static var mistyRose = Color (0xFFFFE4E1)
110 |     public static var moccasin = Color (0xFFFFE4B5)
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
    |                       |- warning: static property 'navajoWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'navajoWhite' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'navajoWhite' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |     public static var navy = Color (0xFF000080)
113 |     public static var oldLace = Color (0xFFFDF5E6)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:112:23: warning: static property 'navy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
110 |     public static var moccasin = Color (0xFFFFE4B5)
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
112 |     public static var navy = Color (0xFF000080)
    |                       |- warning: static property 'navy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'navy' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'navy' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     public static var oldLace = Color (0xFFFDF5E6)
114 |     public static var olive = Color (0xFF808000)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:113:23: warning: static property 'oldLace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
112 |     public static var navy = Color (0xFF000080)
113 |     public static var oldLace = Color (0xFFFDF5E6)
    |                       |- warning: static property 'oldLace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'oldLace' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'oldLace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |     public static var olive = Color (0xFF808000)
115 |     public static var oliveDrab = Color (0xFF6B8E23)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:114:23: warning: static property 'olive' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
112 |     public static var navy = Color (0xFF000080)
113 |     public static var oldLace = Color (0xFFFDF5E6)
114 |     public static var olive = Color (0xFF808000)
    |                       |- warning: static property 'olive' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'olive' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'olive' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     public static var oliveDrab = Color (0xFF6B8E23)
116 |     public static var orange = Color (0xFFFFA500)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:115:23: warning: static property 'oliveDrab' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
113 |     public static var oldLace = Color (0xFFFDF5E6)
114 |     public static var olive = Color (0xFF808000)
115 |     public static var oliveDrab = Color (0xFF6B8E23)
    |                       |- warning: static property 'oliveDrab' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'oliveDrab' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'oliveDrab' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
116 |     public static var orange = Color (0xFFFFA500)
117 |     public static var orangeRed = Color (0xFFFF4500)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:116:23: warning: static property 'orange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
114 |     public static var olive = Color (0xFF808000)
115 |     public static var oliveDrab = Color (0xFF6B8E23)
116 |     public static var orange = Color (0xFFFFA500)
    |                       |- warning: static property 'orange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'orange' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'orange' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |     public static var orangeRed = Color (0xFFFF4500)
118 |     public static var orchid = Color (0xFFDA70D6)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:117:23: warning: static property 'orangeRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
115 |     public static var oliveDrab = Color (0xFF6B8E23)
116 |     public static var orange = Color (0xFFFFA500)
117 |     public static var orangeRed = Color (0xFFFF4500)
    |                       |- warning: static property 'orangeRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'orangeRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'orangeRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |     public static var orchid = Color (0xFFDA70D6)
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:118:23: warning: static property 'orchid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
116 |     public static var orange = Color (0xFFFFA500)
117 |     public static var orangeRed = Color (0xFFFF4500)
118 |     public static var orchid = Color (0xFFDA70D6)
    |                       |- warning: static property 'orchid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'orchid' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'orchid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
120 |     public static var paleGreen = Color (0xFF98FB98)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:119:23: warning: static property 'paleGoldenrod' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
117 |     public static var orangeRed = Color (0xFFFF4500)
118 |     public static var orchid = Color (0xFFDA70D6)
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
    |                       |- warning: static property 'paleGoldenrod' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'paleGoldenrod' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'paleGoldenrod' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |     public static var paleGreen = Color (0xFF98FB98)
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:120:23: warning: static property 'paleGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
118 |     public static var orchid = Color (0xFFDA70D6)
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
120 |     public static var paleGreen = Color (0xFF98FB98)
    |                       |- warning: static property 'paleGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'paleGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'paleGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
122 |     public static var paleVioletRed = Color (0xFFDB7093)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:121:23: warning: static property 'paleTurquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
120 |     public static var paleGreen = Color (0xFF98FB98)
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
    |                       |- warning: static property 'paleTurquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'paleTurquoise' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'paleTurquoise' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |     public static var paleVioletRed = Color (0xFFDB7093)
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:122:23: warning: static property 'paleVioletRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 |     public static var paleGreen = Color (0xFF98FB98)
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
122 |     public static var paleVioletRed = Color (0xFFDB7093)
    |                       |- warning: static property 'paleVioletRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'paleVioletRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'paleVioletRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
124 |     public static var peachPuff = Color (0xFFFFDAB9)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:123:23: warning: static property 'papayaWhip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
122 |     public static var paleVioletRed = Color (0xFFDB7093)
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
    |                       |- warning: static property 'papayaWhip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'papayaWhip' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'papayaWhip' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     public static var peachPuff = Color (0xFFFFDAB9)
125 |     public static var peru = Color (0xFFCD853F)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:124:23: warning: static property 'peachPuff' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
122 |     public static var paleVioletRed = Color (0xFFDB7093)
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
124 |     public static var peachPuff = Color (0xFFFFDAB9)
    |                       |- warning: static property 'peachPuff' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'peachPuff' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'peachPuff' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |     public static var peru = Color (0xFFCD853F)
126 |     public static var pink = Color (0xFFFFC0CB)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:125:23: warning: static property 'peru' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
124 |     public static var peachPuff = Color (0xFFFFDAB9)
125 |     public static var peru = Color (0xFFCD853F)
    |                       |- warning: static property 'peru' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'peru' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'peru' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |     public static var pink = Color (0xFFFFC0CB)
127 |     public static var plum = Color (0xFFDDA0DD)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:126:23: warning: static property 'pink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
124 |     public static var peachPuff = Color (0xFFFFDAB9)
125 |     public static var peru = Color (0xFFCD853F)
126 |     public static var pink = Color (0xFFFFC0CB)
    |                       |- warning: static property 'pink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'pink' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'pink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |     public static var plum = Color (0xFFDDA0DD)
128 |     public static var powderBlue = Color (0xFFB0E0E6)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:127:23: warning: static property 'plum' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |     public static var peru = Color (0xFFCD853F)
126 |     public static var pink = Color (0xFFFFC0CB)
127 |     public static var plum = Color (0xFFDDA0DD)
    |                       |- warning: static property 'plum' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'plum' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'plum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     public static var powderBlue = Color (0xFFB0E0E6)
129 |     public static var purple = Color (0xFF800080)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:128:23: warning: static property 'powderBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |     public static var pink = Color (0xFFFFC0CB)
127 |     public static var plum = Color (0xFFDDA0DD)
128 |     public static var powderBlue = Color (0xFFB0E0E6)
    |                       |- warning: static property 'powderBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'powderBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'powderBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |     public static var purple = Color (0xFF800080)
130 |     public static var red = Color (0xFFFF0000)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:129:23: warning: static property 'purple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
127 |     public static var plum = Color (0xFFDDA0DD)
128 |     public static var powderBlue = Color (0xFFB0E0E6)
129 |     public static var purple = Color (0xFF800080)
    |                       |- warning: static property 'purple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'purple' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'purple' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     public static var red = Color (0xFFFF0000)
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:130:23: warning: static property 'red' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
128 |     public static var powderBlue = Color (0xFFB0E0E6)
129 |     public static var purple = Color (0xFF800080)
130 |     public static var red = Color (0xFFFF0000)
    |                       |- warning: static property 'red' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'red' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'red' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
132 |     public static var royalBlue = Color (0xFF4169E1)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:131:23: warning: static property 'rosyBrown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
129 |     public static var purple = Color (0xFF800080)
130 |     public static var red = Color (0xFFFF0000)
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
    |                       |- warning: static property 'rosyBrown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'rosyBrown' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'rosyBrown' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 |     public static var royalBlue = Color (0xFF4169E1)
133 |     public static var saddleBrown = Color (0xFF8B4513)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:132:23: warning: static property 'royalBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
130 |     public static var red = Color (0xFFFF0000)
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
132 |     public static var royalBlue = Color (0xFF4169E1)
    |                       |- warning: static property 'royalBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'royalBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'royalBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     public static var saddleBrown = Color (0xFF8B4513)
134 |     public static var salmon = Color (0xFFFA8072)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:133:23: warning: static property 'saddleBrown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
132 |     public static var royalBlue = Color (0xFF4169E1)
133 |     public static var saddleBrown = Color (0xFF8B4513)
    |                       |- warning: static property 'saddleBrown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'saddleBrown' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'saddleBrown' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |     public static var salmon = Color (0xFFFA8072)
135 |     public static var sandyBrown = Color (0xFFF4A460)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:134:23: warning: static property 'salmon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 |     public static var royalBlue = Color (0xFF4169E1)
133 |     public static var saddleBrown = Color (0xFF8B4513)
134 |     public static var salmon = Color (0xFFFA8072)
    |                       |- warning: static property 'salmon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'salmon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'salmon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |     public static var sandyBrown = Color (0xFFF4A460)
136 |     public static var seaGreen = Color (0xFF2E8B57)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:135:23: warning: static property 'sandyBrown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
133 |     public static var saddleBrown = Color (0xFF8B4513)
134 |     public static var salmon = Color (0xFFFA8072)
135 |     public static var sandyBrown = Color (0xFFF4A460)
    |                       |- warning: static property 'sandyBrown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'sandyBrown' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'sandyBrown' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 |     public static var seaGreen = Color (0xFF2E8B57)
137 |     public static var seaShell = Color (0xFFFFF5EE)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:136:23: warning: static property 'seaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
134 |     public static var salmon = Color (0xFFFA8072)
135 |     public static var sandyBrown = Color (0xFFF4A460)
136 |     public static var seaGreen = Color (0xFF2E8B57)
    |                       |- warning: static property 'seaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'seaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'seaGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
137 |     public static var seaShell = Color (0xFFFFF5EE)
138 |     public static var sienna = Color (0xFFA0522D)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:137:23: warning: static property 'seaShell' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 |     public static var sandyBrown = Color (0xFFF4A460)
136 |     public static var seaGreen = Color (0xFF2E8B57)
137 |     public static var seaShell = Color (0xFFFFF5EE)
    |                       |- warning: static property 'seaShell' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'seaShell' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'seaShell' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 |     public static var sienna = Color (0xFFA0522D)
139 |     public static var silver = Color (0xFFC0C0C0)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:138:23: warning: static property 'sienna' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |     public static var seaGreen = Color (0xFF2E8B57)
137 |     public static var seaShell = Color (0xFFFFF5EE)
138 |     public static var sienna = Color (0xFFA0522D)
    |                       |- warning: static property 'sienna' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'sienna' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'sienna' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |     public static var silver = Color (0xFFC0C0C0)
140 |     public static var skyBlue = Color (0xFF87CEEB)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:139:23: warning: static property 'silver' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
137 |     public static var seaShell = Color (0xFFFFF5EE)
138 |     public static var sienna = Color (0xFFA0522D)
139 |     public static var silver = Color (0xFFC0C0C0)
    |                       |- warning: static property 'silver' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'silver' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'silver' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 |     public static var skyBlue = Color (0xFF87CEEB)
141 |     public static var slateBlue = Color (0xFF6A5ACD)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:140:23: warning: static property 'skyBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 |     public static var sienna = Color (0xFFA0522D)
139 |     public static var silver = Color (0xFFC0C0C0)
140 |     public static var skyBlue = Color (0xFF87CEEB)
    |                       |- warning: static property 'skyBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'skyBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'skyBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |     public static var slateBlue = Color (0xFF6A5ACD)
142 |     public static var slateGray = Color (0xFF708090)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:141:23: warning: static property 'slateBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
139 |     public static var silver = Color (0xFFC0C0C0)
140 |     public static var skyBlue = Color (0xFF87CEEB)
141 |     public static var slateBlue = Color (0xFF6A5ACD)
    |                       |- warning: static property 'slateBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'slateBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'slateBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 |     public static var slateGray = Color (0xFF708090)
143 |     public static var snow = Color (0xFFFFFAFA)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:142:23: warning: static property 'slateGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
140 |     public static var skyBlue = Color (0xFF87CEEB)
141 |     public static var slateBlue = Color (0xFF6A5ACD)
142 |     public static var slateGray = Color (0xFF708090)
    |                       |- warning: static property 'slateGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'slateGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'slateGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
143 |     public static var snow = Color (0xFFFFFAFA)
144 |     public static var springGreen = Color (0xFF00FF7F)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:143:23: warning: static property 'snow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
141 |     public static var slateBlue = Color (0xFF6A5ACD)
142 |     public static var slateGray = Color (0xFF708090)
143 |     public static var snow = Color (0xFFFFFAFA)
    |                       |- warning: static property 'snow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'snow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'snow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
144 |     public static var springGreen = Color (0xFF00FF7F)
145 |     public static var steelBlue = Color (0xFF4682B4)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:144:23: warning: static property 'springGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
142 |     public static var slateGray = Color (0xFF708090)
143 |     public static var snow = Color (0xFFFFFAFA)
144 |     public static var springGreen = Color (0xFF00FF7F)
    |                       |- warning: static property 'springGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'springGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'springGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 |     public static var steelBlue = Color (0xFF4682B4)
146 |     public static var tan = Color (0xFFD2B48C)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:145:23: warning: static property 'steelBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 |     public static var snow = Color (0xFFFFFAFA)
144 |     public static var springGreen = Color (0xFF00FF7F)
145 |     public static var steelBlue = Color (0xFF4682B4)
    |                       |- warning: static property 'steelBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'steelBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'steelBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 |     public static var tan = Color (0xFFD2B48C)
147 |     public static var teal = Color (0xFF008080)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:146:23: warning: static property 'tan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
144 |     public static var springGreen = Color (0xFF00FF7F)
145 |     public static var steelBlue = Color (0xFF4682B4)
146 |     public static var tan = Color (0xFFD2B48C)
    |                       |- warning: static property 'tan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'tan' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'tan' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |     public static var teal = Color (0xFF008080)
148 |     public static var thistle = Color (0xFFD8BFD8)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:147:23: warning: static property 'teal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
145 |     public static var steelBlue = Color (0xFF4682B4)
146 |     public static var tan = Color (0xFFD2B48C)
147 |     public static var teal = Color (0xFF008080)
    |                       |- warning: static property 'teal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'teal' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'teal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
148 |     public static var thistle = Color (0xFFD8BFD8)
149 |     public static var tomato = Color (0xFFFF6347)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:148:23: warning: static property 'thistle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
146 |     public static var tan = Color (0xFFD2B48C)
147 |     public static var teal = Color (0xFF008080)
148 |     public static var thistle = Color (0xFFD8BFD8)
    |                       |- warning: static property 'thistle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'thistle' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'thistle' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 |     public static var tomato = Color (0xFFFF6347)
150 |     public static var turquoise = Color (0xFF40E0D0)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:149:23: warning: static property 'tomato' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
147 |     public static var teal = Color (0xFF008080)
148 |     public static var thistle = Color (0xFFD8BFD8)
149 |     public static var tomato = Color (0xFFFF6347)
    |                       |- warning: static property 'tomato' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'tomato' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'tomato' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |     public static var turquoise = Color (0xFF40E0D0)
151 |     public static var violet = Color (0xFFEE82EE)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:150:23: warning: static property 'turquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
148 |     public static var thistle = Color (0xFFD8BFD8)
149 |     public static var tomato = Color (0xFFFF6347)
150 |     public static var turquoise = Color (0xFF40E0D0)
    |                       |- warning: static property 'turquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'turquoise' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'turquoise' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |     public static var violet = Color (0xFFEE82EE)
152 |     public static var wheat = Color (0xFFF5DEB3)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:151:23: warning: static property 'violet' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
149 |     public static var tomato = Color (0xFFFF6347)
150 |     public static var turquoise = Color (0xFF40E0D0)
151 |     public static var violet = Color (0xFFEE82EE)
    |                       |- warning: static property 'violet' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'violet' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'violet' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |     public static var wheat = Color (0xFFF5DEB3)
153 |     public static var white = Color (0xFFFFFFFF)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:152:23: warning: static property 'wheat' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
150 |     public static var turquoise = Color (0xFF40E0D0)
151 |     public static var violet = Color (0xFFEE82EE)
152 |     public static var wheat = Color (0xFFF5DEB3)
    |                       |- warning: static property 'wheat' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'wheat' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'wheat' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |     public static var white = Color (0xFFFFFFFF)
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:153:23: warning: static property 'white' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
151 |     public static var violet = Color (0xFFEE82EE)
152 |     public static var wheat = Color (0xFFF5DEB3)
153 |     public static var white = Color (0xFFFFFFFF)
    |                       |- warning: static property 'white' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'white' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'white' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
155 |     public static var yellow = Color (0xFFFFFF00)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:154:23: warning: static property 'whiteSmoke' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
152 |     public static var wheat = Color (0xFFF5DEB3)
153 |     public static var white = Color (0xFFFFFFFF)
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
    |                       |- warning: static property 'whiteSmoke' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'whiteSmoke' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'whiteSmoke' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |     public static var yellow = Color (0xFFFFFF00)
156 |     public static var yellowGreen = Color (0xFF9ACD32)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:155:23: warning: static property 'yellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
153 |     public static var white = Color (0xFFFFFFFF)
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
155 |     public static var yellow = Color (0xFFFFFF00)
    |                       |- warning: static property 'yellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'yellow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'yellow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |     public static var yellowGreen = Color (0xFF9ACD32)
157 |     public static var transparent = Color (0x00FFFFFF)
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:156:23: warning: static property 'yellowGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
155 |     public static var yellow = Color (0xFFFFFF00)
156 |     public static var yellowGreen = Color (0xFF9ACD32)
    |                       |- warning: static property 'yellowGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'yellowGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'yellowGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |     public static var transparent = Color (0x00FFFFFF)
158 |
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:157:23: warning: static property 'transparent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
155 |     public static var yellow = Color (0xFFFFFF00)
156 |     public static var yellowGreen = Color (0xFF9ACD32)
157 |     public static var transparent = Color (0x00FFFFFF)
    |                       |- warning: static property 'transparent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'transparent' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'transparent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 |
159 | }
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:25:23: warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |
 24 |     /// The default font manager
 25 |     public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
    |                       |- warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'system' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /// Gets the number of font families available.
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
[40/47] Compiling SkiaKit Surface.swift
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:107:13: warning: variable 'nativeCInfo' was never mutated; consider changing to 'let' constant
105 |     public static func makeRenderTarget(context: GrContext, budgeted: Bool, cinfo: ImageInfo) -> Surface {
106 |         //return ToSurface(SkSurface::MakeRenderTarget(AsGrContext(context), (SkBudgeted)budgeted, AsImageInfo(cinfo), sampleCount, (GrSurfaceOrigin)origin, AsSurfaceProps(props), shouldCreateWithMips).release());
107 |         var nativeCInfo = cinfo.toNative()
    |             `- warning: variable 'nativeCInfo' was never mutated; consider changing to 'let' constant
108 |         return withUnsafePointer(to: nativeCInfo) {
109 |             Surface(handle: sk_surface_new_render_target(context.handle, budgeted, $0, 0, TOP_LEFT_GR_SURFACE_ORIGIN, nil, false))
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |
 26 |     /// The default normal typeface
 27 |     static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
    |                |- warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultTypeface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |     init (handle: OpaquePointer, owns: Bool)
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
[41/47] Compiling SkiaKit SurfaceProperties.swift
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:107:13: warning: variable 'nativeCInfo' was never mutated; consider changing to 'let' constant
105 |     public static func makeRenderTarget(context: GrContext, budgeted: Bool, cinfo: ImageInfo) -> Surface {
106 |         //return ToSurface(SkSurface::MakeRenderTarget(AsGrContext(context), (SkBudgeted)budgeted, AsImageInfo(cinfo), sampleCount, (GrSurfaceOrigin)origin, AsSurfaceProps(props), shouldCreateWithMips).release());
107 |         var nativeCInfo = cinfo.toNative()
    |             `- warning: variable 'nativeCInfo' was never mutated; consider changing to 'let' constant
108 |         return withUnsafePointer(to: nativeCInfo) {
109 |             Surface(handle: sk_surface_new_render_target(context.handle, budgeted, $0, 0, TOP_LEFT_GR_SURFACE_ORIGIN, nil, false))
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |
 26 |     /// The default normal typeface
 27 |     static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
    |                |- warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultTypeface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |     init (handle: OpaquePointer, owns: Bool)
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
[42/47] Compiling SkiaKit TextBlob.swift
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:107:13: warning: variable 'nativeCInfo' was never mutated; consider changing to 'let' constant
105 |     public static func makeRenderTarget(context: GrContext, budgeted: Bool, cinfo: ImageInfo) -> Surface {
106 |         //return ToSurface(SkSurface::MakeRenderTarget(AsGrContext(context), (SkBudgeted)budgeted, AsImageInfo(cinfo), sampleCount, (GrSurfaceOrigin)origin, AsSurfaceProps(props), shouldCreateWithMips).release());
107 |         var nativeCInfo = cinfo.toNative()
    |             `- warning: variable 'nativeCInfo' was never mutated; consider changing to 'let' constant
108 |         return withUnsafePointer(to: nativeCInfo) {
109 |             Surface(handle: sk_surface_new_render_target(context.handle, budgeted, $0, 0, TOP_LEFT_GR_SURFACE_ORIGIN, nil, false))
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |
 26 |     /// The default normal typeface
 27 |     static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
    |                |- warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultTypeface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |     init (handle: OpaquePointer, owns: Bool)
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
[43/47] Compiling SkiaKit Typeface.swift
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:107:13: warning: variable 'nativeCInfo' was never mutated; consider changing to 'let' constant
105 |     public static func makeRenderTarget(context: GrContext, budgeted: Bool, cinfo: ImageInfo) -> Surface {
106 |         //return ToSurface(SkSurface::MakeRenderTarget(AsGrContext(context), (SkBudgeted)budgeted, AsImageInfo(cinfo), sampleCount, (GrSurfaceOrigin)origin, AsSurfaceProps(props), shouldCreateWithMips).release());
107 |         var nativeCInfo = cinfo.toNative()
    |             `- warning: variable 'nativeCInfo' was never mutated; consider changing to 'let' constant
108 |         return withUnsafePointer(to: nativeCInfo) {
109 |             Surface(handle: sk_surface_new_render_target(context.handle, budgeted, $0, 0, TOP_LEFT_GR_SURFACE_ORIGIN, nil, false))
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |
 26 |     /// The default normal typeface
 27 |     static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
    |                |- warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultTypeface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |     init (handle: OpaquePointer, owns: Bool)
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
[44/48] Wrapping AST for SkiaKit for debugging
[46/51] Compiling Samples main.swift
/host/spi-builder-workspace/Samples/Gallery/main.swift:17:8: warning: result of call to 'encode(dest:src:encoder:quality:)' is unused
15 | let stream = SKFileWStream(path: "test.png")!
16 |
17 | Pixmap.encode(dest: stream, src: bitmap, encoder: .png, quality: 100)
   |        `- warning: result of call to 'encode(dest:src:encoder:quality:)' is unused
[47/51] Emitting module Samples
/host/spi-builder-workspace/Samples/Gallery/main.swift:17:8: warning: result of call to 'encode(dest:src:encoder:quality:)' is unused
15 | let stream = SKFileWStream(path: "test.png")!
16 |
17 | Pixmap.encode(dest: stream, src: bitmap, encoder: .png, quality: 100)
   |        `- warning: result of call to 'encode(dest:src:encoder:quality:)' is unused
/host/spi-builder-workspace/Samples/Gallery/2DPathSample.swift:12:16: warning: static property 'title' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct TwoDPathSample {
12 |     static var title = "2D Path Effect"
   |                |- warning: static property 'title' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'title' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public func draw(canvas: Canvas, width: Int32, height: Int32) {
[48/51] Compiling Samples 2DPathSample.swift
/host/spi-builder-workspace/Samples/Gallery/2DPathSample.swift:12:16: warning: static property 'title' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct TwoDPathSample {
12 |     static var title = "2D Path Effect"
   |                |- warning: static property 'title' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'title' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public func draw(canvas: Canvas, width: Int32, height: Int32) {
/host/spi-builder-workspace/Samples/Gallery/2DPathSample.swift:18:36: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |         //let fheight = Float (height)
17 |
18 |         canvas.clear(color: Colors.white)
   |                                    `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |
20 |         let blockSize : Float = 30
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:153:23: note: static property declared here
151 |     public static var violet = Color (0xFFEE82EE)
152 |     public static var wheat = Color (0xFFF5DEB3)
153 |     public static var white = Color (0xFFFFFFFF)
    |                       `- note: static property declared here
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
155 |     public static var yellow = Color (0xFFFFFF00)
/host/spi-builder-workspace/Samples/Gallery/2DPathSample.swift:38:30: warning: reference to static property 'yellow' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |
37 |         paint.pathEffect = PathEffect.make2DPath(matrix: &offsetMatrix, path: path)
38 |         paint.color = Colors.yellow
   |                              `- warning: reference to static property 'yellow' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |
40 |         // draw a rectangle
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:155:23: note: static property declared here
153 |     public static var white = Color (0xFFFFFFFF)
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
155 |     public static var yellow = Color (0xFFFFFF00)
    |                       `- note: static property declared here
156 |     public static var yellowGreen = Color (0xFF9ACD32)
157 |     public static var transparent = Color (0x00FFFFFF)
/host/spi-builder-workspace/Samples/Gallery/2DPathSample.swift:45:31: warning: reference to static property 'blue' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
43 |
44 |         let paint2 = Paint ()
45 |         paint2.color = Colors.blue
   |                               `- warning: reference to static property 'blue' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
46 |         canvas.drawRect(Rect (left: 400, top: 400, right: 200, bottom: 200), paint2)
47 |     }
/host/spi-builder-workspace/Sources/SkiaKit/Colors.swift:26:23: note: static property declared here
 24 |     public static var black = Color (0xFF000000)
 25 |     public static var blanchedAlmond = Color (0xFFFFEBCD)
 26 |     public static var blue = Color (0xFF0000FF)
    |                       `- note: static property declared here
 27 |     public static var blueViolet = Color (0xFF8A2BE2)
 28 |     public static var brown = Color (0xFFA52A2A)
[49/52] Wrapping AST for Samples for debugging
[50/52] Write Objects.LinkFileList
error: link command failed with exit code 1 (use -v to see invocation)
/usr/bin/ld.gold: error: cannot find -lskia
/usr/bin/ld.gold: error: cannot find -lfreetype
/usr/bin/ld.gold: error: cannot find -lfontconfig
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:102: error: undefined reference to 'sk_bitmap_try_alloc_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:48: error: undefined reference to 'sk_bitmap_new'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:58: error: undefined reference to 'sk_bitmap_new'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:67: error: undefined reference to 'sk_bitmap_destructor'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:80: error: undefined reference to 'sk_bitmap_get_row_bytes'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:118: error: undefined reference to 'sk_bitmap_reset'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:130: error: undefined reference to 'sk_bitmap_set_immutable'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:144: error: undefined reference to 'sk_bitmap_erase'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:151: error: undefined reference to 'sk_bitmap_erase_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:156: error: undefined reference to 'sk_bitmap_get_addr_8'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:161: error: undefined reference to 'sk_bitmap_get_addr_16'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:166: error: undefined reference to 'sk_bitmap_get_addr_32'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:171: error: undefined reference to 'sk_bitmap_get_addr'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:176: error: undefined reference to 'sk_bitmap_get_pixel_color'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:264: error: undefined reference to 'sk_bitmap_get_info'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:273: error: undefined reference to 'sk_bitmap_get_info'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:310: error: undefined reference to 'sk_bitmap_get_byte_count'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:317: error: undefined reference to 'sk_bitmap_get_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:323: error: undefined reference to 'sk_bitmap_set_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:345: error: undefined reference to 'sk_bitmap_peek_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:353: error: undefined reference to 'sk_bitmap_is_null'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:360: error: undefined reference to 'sk_bitmap_is_volatile'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:363: error: undefined reference to 'sk_bitmap_set_volatile'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:372: error: undefined reference to 'sk_bitmap_ready_to_draw'
/host/spi-builder-workspace/Sources/SkiaKit/Bitmap.swift:381: error: undefined reference to 'sk_bitmap_notify_pixels_changed'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:154: error: undefined reference to 'sk_canvas_quick_reject'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:207: error: undefined reference to 'sk_canvas_save_layer'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:453: error: undefined reference to 'sk_canvas_clip_rect_with_operation'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:539: error: undefined reference to 'sk_canvas_draw_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:551: error: undefined reference to 'sk_canvas_draw_round_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:558: error: undefined reference to 'sk_canvas_draw_oval'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:607: error: undefined reference to 'sk_canvas_draw_image_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:615: error: undefined reference to 'sk_canvas_draw_image_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:664: error: undefined reference to 'sk_canvas_draw_bitmap_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:693: error: undefined reference to 'sk_canvas_draw_bitmap_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:824: error: undefined reference to 'sk_canvas_set_matrix'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:66: error: undefined reference to 'sk_canvas_new_from_bitmap'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:75: error: undefined reference to 'sk_nodraw_canvas_new'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:82: error: undefined reference to 'sk_overdraw_canvas_new'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:91: error: undefined reference to 'sk_nway_canvas_new'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:103: error: undefined reference to 'sk_canvas_destroy'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:105: error: undefined reference to 'sk_nodraw_canvas_destroy'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:107: error: undefined reference to 'sk_overdraw_canvas_destroy'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:109: error: undefined reference to 'sk_nway_canvas_destroy'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:123: error: undefined reference to 'sk_nway_canvas_add_canvas'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:132: error: undefined reference to 'sk_nway_canvas_remove_canvas'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:141: error: undefined reference to 'sk_nway_canvas_remove_all'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:179: error: undefined reference to 'sk_canvas_save'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:210: error: undefined reference to 'sk_canvas_save_layer'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:222: error: undefined reference to 'sk_canvas_draw_color'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:236: error: undefined reference to 'sk_canvas_draw_line'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:252: error: undefined reference to 'sk_canvas_draw_line'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:279: error: undefined reference to 'sk_canvas_restore'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:291: error: undefined reference to 'sk_canvas_restore_to_count'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:305: error: undefined reference to 'sk_canvas_translate'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:318: error: undefined reference to 'sk_canvas_translate'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:331: error: undefined reference to 'sk_canvas_scale'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:345: error: undefined reference to 'sk_canvas_scale'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:358: error: undefined reference to 'sk_canvas_scale'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:382: error: undefined reference to 'sk_canvas_rotate_degrees'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:395: error: undefined reference to 'sk_canvas_rotate_radians'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:412: error: undefined reference to 'sk_canvas_rotate_degrees'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:430: error: undefined reference to 'sk_canvas_rotate_radians'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:436: error: undefined reference to 'sk_canvas_skew'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:447: error: undefined reference to 'sk_canvas_concat'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:459: error: undefined reference to 'sk_canvas_clip_rrect_with_operation'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:464: error: undefined reference to 'sk_canvas_clip_path_with_operation'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:469: error: undefined reference to 'sk_canvas_clip_region'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:481: error: undefined reference to 'sk_canvas_is_clip_empty'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:493: error: undefined reference to 'sk_canvas_is_clip_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:514: error: undefined reference to 'sk_canvas_get_local_clip_bounds'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:522: error: undefined reference to 'sk_canvas_get_device_clip_bounds'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:528: error: undefined reference to 'sk_canvas_draw_paint'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:533: error: undefined reference to 'sk_canvas_draw_region'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:545: error: undefined reference to 'sk_canvas_draw_rrect'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:564: error: undefined reference to 'sk_canvas_draw_circle'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:569: error: undefined reference to 'sk_canvas_draw_circle'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:574: error: undefined reference to 'sk_canvas_draw_path'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:584: error: undefined reference to 'sk_canvas_draw_points'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:589: error: undefined reference to 'sk_canvas_draw_point'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:601: error: undefined reference to 'sk_canvas_draw_image'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:630: error: undefined reference to 'sk_canvas_draw_picture'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:646: error: undefined reference to 'sk_canvas_draw_picture'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:658: error: undefined reference to 'sk_canvas_draw_bitmap'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:722: error: undefined reference to 'sk_canvas_draw_text_blob'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:751: error: undefined reference to 'sk_canvas_draw_text_blob'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:777: error: undefined reference to 'sk_canvas_flush'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:812: error: undefined reference to 'sk_canvas_reset_matrix'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:838: error: undefined reference to 'sk_canvas_get_total_matrix'
/host/spi-builder-workspace/Sources/SkiaKit/Canvas.swift:852: error: undefined reference to 'sk_canvas_get_save_count'
/host/spi-builder-workspace/Sources/SkiaKit/ColorFilter.swift:23: error: undefined reference to 'sk_colorfilter_unref'
/host/spi-builder-workspace/Sources/SkiaKit/ColorSpace.swift:28: error: undefined reference to 'sk_colorspace_new_srgb'
/host/spi-builder-workspace/Sources/SkiaKit/ColorSpace.swift:32: error: undefined reference to 'sk_colorspace_unref'
/host/spi-builder-workspace/Sources/SkiaKit/Data.swift:30: error: undefined reference to 'sk_data_new_empty'
/host/spi-builder-workspace/Sources/SkiaKit/Data.swift:32: error: undefined reference to 'sk_data_new_uninitialized'
/host/spi-builder-workspace/Sources/SkiaKit/Data.swift:42: error: undefined reference to 'sk_data_new_with_copy'
/host/spi-builder-workspace/Sources/SkiaKit/Data.swift:52: error: undefined reference to 'sk_data_new_subset'
/host/spi-builder-workspace/Sources/SkiaKit/Data.swift:63: error: undefined reference to 'sk_data_new_from_file'
/host/spi-builder-workspace/Sources/SkiaKit/Data.swift:75: error: undefined reference to 'sk_data_unref'
/host/spi-builder-workspace/Sources/SkiaKit/Data.swift:81: error: undefined reference to 'sk_data_get_size'
/host/spi-builder-workspace/Sources/SkiaKit/Data.swift:94: error: undefined reference to 'sk_data_get_data'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:25: error: undefined reference to 'sk_font_new'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:30: error: undefined reference to 'sk_font_new_with_values'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:35: error: undefined reference to 'sk_font_delete'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:40: error: undefined reference to 'sk_font_is_subpixel'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:43: error: undefined reference to 'sk_font_set_subpixel'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:50: error: undefined reference to 'sk_font_is_force_auto_hinting'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:53: error: undefined reference to 'sk_font_set_force_auto_hinting'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:58: error: undefined reference to 'sk_font_is_embedded_bitmaps'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:61: error: undefined reference to 'sk_font_set_embedded_bitmaps'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:66: error: undefined reference to 'sk_font_is_linear_metrics'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:69: error: undefined reference to 'sk_font_set_linear_metrics'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:74: error: undefined reference to 'sk_font_is_embolden'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:77: error: undefined reference to 'sk_font_set_embolden'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:82: error: undefined reference to 'sk_font_is_baseline_snap'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:85: error: undefined reference to 'sk_font_set_baseline_snap'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:90: error: undefined reference to 'sk_font_get_edging'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:93: error: undefined reference to 'sk_font_set_edging'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:99: error: undefined reference to 'sk_font_get_hinting'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:102: error: undefined reference to 'sk_font_set_hinting'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:107: error: undefined reference to 'sk_font_get_typeface'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:111: error: undefined reference to 'sk_font_set_typeface'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:116: error: undefined reference to 'sk_font_get_size'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:119: error: undefined reference to 'sk_font_set_size'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:124: error: undefined reference to 'sk_font_get_scale_x'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:127: error: undefined reference to 'sk_font_set_scale_x'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:132: error: undefined reference to 'sk_font_get_skew_x'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:135: error: undefined reference to 'sk_font_set_skew_x'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:144: error: undefined reference to 'sk_font_text_to_glyphs'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:149: error: undefined reference to 'sk_font_text_to_glyphs'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:157: error: undefined reference to 'sk_font_text_to_glyphs'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:163: error: undefined reference to 'sk_font_get_pos'
/host/spi-builder-workspace/Sources/SkiaKit/Font.swift:169: error: undefined reference to 'sk_font_measure_text'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:25: error: undefined reference to 'sk_fontmgr_ref_default'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:30: error: undefined reference to 'sk_fontmgr_count_families'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:37: error: undefined reference to 'sk_fontmgr_get_family_name'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:55: error: undefined reference to 'sk_fontmgr_create_styleset'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:64: error: undefined reference to 'sk_fontmgr_match_family'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:72: error: undefined reference to 'sk_fontmgr_match_family_style'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:80: error: undefined reference to 'sk_fontmgr_match_face_style'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:88: error: undefined reference to 'sk_fontmgr_create_from_file'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:99: error: undefined reference to 'sk_fontmgr_create_from_stream'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:153: error: undefined reference to 'sk_fontmgr_match_family_style_character'
/host/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:164: error: undefined reference to 'sk_fontmgr_create_from_data'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:32: error: undefined reference to 'sk_fontstyle_new'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:39: error: undefined reference to 'sk_fontstyle_new'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:45: error: undefined reference to 'sk_fontstyle_delete'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:50: error: undefined reference to 'sk_fontstyle_get_weight'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:52: error: undefined reference to 'sk_fontstyle_get_width'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:54: error: undefined reference to 'sk_fontstyle_get_slant'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyleSet.swift:22: error: undefined reference to 'sk_fontstyleset_unref'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyleSet.swift:27: error: undefined reference to 'sk_fontstyleset_create_empty'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyleSet.swift:33: error: undefined reference to 'sk_fontstyleset_get_count'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyleSet.swift:39: error: undefined reference to 'sk_fontstyleset_get_style'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyleSet.swift:57: error: undefined reference to 'sk_fontstyleset_match_style'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyleSet.swift:67: error: undefined reference to 'sk_fontstyleset_create_typeface'
/host/spi-builder-workspace/Sources/SkiaKit/FontStyleSet.swift:78: error: undefined reference to 'sk_fontstyleset_get_style'
/host/spi-builder-workspace/Sources/SkiaKit/GLInterface.swift:11: error: undefined reference to 'gr_glinterface_create_native_interface'
/host/spi-builder-workspace/Sources/SkiaKit/GrBackendRenderTarget.swift:12: error: undefined reference to 'gr_backendrendertarget_new_gl'
/host/spi-builder-workspace/Sources/SkiaKit/GrContext.swift:12: error: undefined reference to 'gr_context_make_gl'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:54: error: undefined reference to 'sk_image_new_from_bitmap'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:77: error: undefined reference to 'sk_image_new_raster_data'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:104: error: undefined reference to 'sk_image_new_raster'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:142: error: undefined reference to 'sk_image_new_from_encoded'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:136: error: undefined reference to 'sk_image_new_from_encoded'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:150: error: undefined reference to 'sk_image_unref'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:163: error: undefined reference to 'sk_image_encode'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:188: error: undefined reference to 'sk_image_encode_specific'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:197: error: undefined reference to 'sk_image_get_width'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:204: error: undefined reference to 'sk_image_get_height'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:215: error: undefined reference to 'sk_image_get_unique_id'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:222: error: undefined reference to 'sk_image_get_alpha_type'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:229: error: undefined reference to 'sk_image_get_color_type'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:244: error: undefined reference to 'sk_image_get_colorspace'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:255: error: undefined reference to 'sk_image_is_alpha_only'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:268: error: undefined reference to 'sk_image_ref_encoded'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:281: error: undefined reference to 'sk_image_make_shader'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:296: error: undefined reference to 'sk_image_make_shader'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:307: error: undefined reference to 'sk_image_peek_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:317: error: undefined reference to 'sk_image_is_texture_backed'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:328: error: undefined reference to 'sk_image_is_lazy_generated'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:393: error: undefined reference to 'sk_image_read_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:424: error: undefined reference to 'sk_image_read_pixels_into_pixmap'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:453: error: undefined reference to 'sk_image_scale_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:466: error: undefined reference to 'sk_image_make_subset'
/host/spi-builder-workspace/Sources/SkiaKit/Image.swift:475: error: undefined reference to 'sk_image_make_non_texture_image'
/host/spi-builder-workspace/Sources/SkiaKit/ImageFilter.swift:23: error: undefined reference to 'sk_imagefilter_unref'
/host/spi-builder-workspace/Sources/SkiaKit/ImageInfo.swift:82: error: undefined reference to 'sk_colortype_get_default_8888'
/host/spi-builder-workspace/Sources/SkiaKit/MaskFilter.swift:23: error: undefined reference to 'sk_maskfilter_unref'
/host/spi-builder-workspace/Sources/SkiaKit/Matrix.swift:101: error: undefined reference to 'sk_matrix_concat'
/host/spi-builder-workspace/Sources/SkiaKit/Matrix.swift:107: error: undefined reference to 'sk_matrix_pre_concat'
/host/spi-builder-workspace/Sources/SkiaKit/Matrix.swift:113: error: undefined reference to 'sk_matrix_post_concat'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:156: error: undefined reference to 'sk_paint_new'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:160: error: undefined reference to 'sk_paint_delete'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:169: error: undefined reference to 'sk_paint_reset'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:177: error: undefined reference to 'sk_paint_is_antialias'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:180: error: undefined reference to 'sk_paint_set_antialias'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:188: error: undefined reference to 'sk_paint_is_dither'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:191: error: undefined reference to 'sk_paint_set_dither'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:206: error: undefined reference to 'sk_paint_get_style'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:209: error: undefined reference to 'sk_paint_set_style'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:215: error: undefined reference to 'sk_paint_get_color'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:218: error: undefined reference to 'sk_paint_set_color'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:224: error: undefined reference to 'sk_paint_get_stroke_width'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:227: error: undefined reference to 'sk_paint_set_stroke_width'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:233: error: undefined reference to 'sk_paint_get_stroke_miter'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:236: error: undefined reference to 'sk_paint_set_stroke_miter'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:242: error: undefined reference to 'sk_paint_get_stroke_cap'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:245: error: undefined reference to 'sk_paint_set_stroke_cap'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:251: error: undefined reference to 'sk_paint_get_stroke_join'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:254: error: undefined reference to 'sk_paint_set_stroke_join'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:260: error: undefined reference to 'sk_paint_get_shader'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:263: error: undefined reference to 'sk_paint_set_shader'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:269: error: undefined reference to 'sk_paint_get_maskfilter'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:272: error: undefined reference to 'sk_paint_set_maskfilter'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:278: error: undefined reference to 'sk_paint_get_colorfilter'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:281: error: undefined reference to 'sk_paint_set_colorfilter'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:287: error: undefined reference to 'sk_paint_get_imagefilter'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:290: error: undefined reference to 'sk_paint_set_imagefilter'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:295: error: undefined reference to 'sk_paint_get_blendmode'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:298: error: undefined reference to 'sk_paint_set_blendmode'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:303: error: undefined reference to 'sk_paint_get_filter_quality'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:306: error: undefined reference to 'sk_paint_set_filter_quality'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:312: error: undefined reference to 'sk_paint_get_path_effect'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:315: error: undefined reference to 'sk_paint_set_path_effect'
/host/spi-builder-workspace/Sources/SkiaKit/Paint.swift:345: error: undefined reference to 'sk_paint_clone'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:46: error: undefined reference to 'sk_path_new'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:54: error: undefined reference to 'sk_path_get_filltype'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:57: error: undefined reference to 'sk_path_set_filltype'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:63: error: undefined reference to 'sk_path_get_convexity'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:66: error: undefined reference to 'sk_path_set_convexity'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:71: error: undefined reference to 'sk_path_count_verbs'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:82: error: undefined reference to 'sk_path_is_oval'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:83: error: undefined reference to 'sk_path_is_rrect'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:84: error: undefined reference to 'sk_path_is_line'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:85: error: undefined reference to 'sk_path_is_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:91: error: undefined reference to 'sk_path_count_points'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:99: error: undefined reference to 'sk_path_get_segment_masks'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:215: error: undefined reference to 'sk_path_get_point'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:117: error: undefined reference to 'sk_path_get_last_point'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:134: error: undefined reference to 'sk_path_get_bounds'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:165: error: undefined reference to 'sk_pathop_tight_bounds'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:174: error: undefined reference to 'sk_path_is_oval'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:183: error: undefined reference to 'sk_path_is_rrect'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:192: error: undefined reference to 'sk_path_is_line'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:204: error: undefined reference to 'sk_path_is_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:226: error: undefined reference to 'sk_path_get_points'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:246: error: undefined reference to 'sk_path_contains'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:257: error: undefined reference to 'sk_path_contains'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:652: error: undefined reference to 'sk_path_transform'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:273: error: undefined reference to 'sk_path_move_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:280: error: undefined reference to 'sk_path_move_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:287: error: undefined reference to 'sk_path_rmove_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:294: error: undefined reference to 'sk_path_rmove_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:301: error: undefined reference to 'sk_path_line_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:308: error: undefined reference to 'sk_path_line_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:315: error: undefined reference to 'sk_path_rline_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:322: error: undefined reference to 'sk_path_rline_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:340: error: undefined reference to 'sk_path_quad_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:347: error: undefined reference to 'sk_path_rquad_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:354: error: undefined reference to 'sk_path_conic_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:361: error: undefined reference to 'sk_path_rconic_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:368: error: undefined reference to 'sk_path_cubic_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:375: error: undefined reference to 'sk_path_cubic_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:382: error: undefined reference to 'sk_path_rcubic_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:389: error: undefined reference to 'sk_path_rcubic_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:415: error: undefined reference to 'sk_path_arc_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:443: error: undefined reference to 'sk_path_rarc_to'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:464: error: undefined reference to 'sk_path_arc_to_with_oval'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:488: error: undefined reference to 'sk_path_arc_to_with_points'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:502: error: undefined reference to 'sk_path_close'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:514: error: undefined reference to 'sk_path_rewind'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:525: error: undefined reference to 'sk_path_reset'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:541: error: undefined reference to 'sk_path_add_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:559: error: undefined reference to 'sk_path_add_rect_start'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:580: error: undefined reference to 'sk_path_add_rrect'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:602: error: undefined reference to 'sk_path_add_rrect_start'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:618: error: undefined reference to 'sk_path_add_oval'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:639: error: undefined reference to 'sk_path_add_arc'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:663: error: undefined reference to 'sk_path_add_path_offset'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:670: error: undefined reference to 'sk_path_add_path'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:678: error: undefined reference to 'sk_path_add_path_matrix'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:685: error: undefined reference to 'sk_path_add_path_reverse'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:692: error: undefined reference to 'sk_path_add_circle'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:703: error: undefined reference to 'sk_path_add_poly'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:709: error: undefined reference to 'sk_pathop_op'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:723: error: undefined reference to 'sk_pathop_simplify'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:736: error: undefined reference to 'sk_path_to_svg_string'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:743: error: undefined reference to 'sk_path_parse_svg_string'
/host/spi-builder-workspace/Sources/SkiaKit/Path.swift:755: error: undefined reference to 'sk_path_delete'
/host/spi-builder-workspace/Sources/SkiaKit/PathEffect.swift:34: error: undefined reference to 'sk_path_effect_create_2d_path'
/host/spi-builder-workspace/Sources/SkiaKit/PathEffect.swift:39: error: undefined reference to 'sk_path_effect_unref'
/host/spi-builder-workspace/Sources/SkiaKit/Picture.swift:24: error: undefined reference to 'sk_picture_get_unique_id'
/host/spi-builder-workspace/Sources/SkiaKit/Picture.swift:32: error: undefined reference to 'sk_picture_get_cull_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Picture.swift:38: error: undefined reference to 'sk_picture_unref'
/host/spi-builder-workspace/Sources/SkiaKit/PictureRecorder.swift:29: error: undefined reference to 'sk_picture_recorder_new'
/host/spi-builder-workspace/Sources/SkiaKit/PictureRecorder.swift:38: error: undefined reference to 'sk_picture_recorder_begin_recording'
/host/spi-builder-workspace/Sources/SkiaKit/PictureRecorder.swift:45: error: undefined reference to 'sk_picture_recorder_end_recording'
/host/spi-builder-workspace/Sources/SkiaKit/PictureRecorder.swift:52: error: undefined reference to 'sk_picture_get_recording_canvas'
/host/spi-builder-workspace/Sources/SkiaKit/PictureRecorder.swift:57: error: undefined reference to 'sk_picture_recorder_delete'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:37: error: undefined reference to 'sk_pixmap_destructor'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:49: error: undefined reference to 'sk_pixmap_new'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:72: error: undefined reference to 'sk_pixmap_new_with_params'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:94: error: undefined reference to 'sk_pixmap_new_with_params'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:106: error: undefined reference to 'sk_pixmap_reset'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:126: error: undefined reference to 'sk_pixmap_reset_with_params'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:134: error: undefined reference to 'sk_pixmap_get_info'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:171: error: undefined reference to 'sk_pixmap_get_row_bytes'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:185: error: undefined reference to 'sk_pixmap_get_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:191: error: undefined reference to 'sk_pixmap_get_pixels_with_xy'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:196: error: undefined reference to 'sk_pixmap_get_pixel_color'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:201: error: undefined reference to 'sk_pixmap_scale_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:230: error: undefined reference to 'sk_pixmap_read_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:280: error: undefined reference to 'sk_pixmap_encode_image'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:311: error: undefined reference to 'sk_pixmap_extract_subset'
/host/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift:322: error: undefined reference to 'sk_pixmap_erase_color'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:30: error: undefined reference to 'sk_region_new'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:55: error: undefined reference to 'sk_region_set_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:84: error: undefined reference to 'sk_region_set_path'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:69: error: undefined reference to 'sk_region_set_path'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:97: error: undefined reference to 'sk_region_op_rect'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:101: error: undefined reference to 'sk_region_delete'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:112: error: undefined reference to 'sk_region_get_bounds'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:119: error: undefined reference to 'sk_region_contains'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:130: error: undefined reference to 'sk_region_intersects'
/host/spi-builder-workspace/Sources/SkiaKit/Region.swift:141: error: undefined reference to 'sk_region_intersects_rect'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:61: error: undefined reference to 'sk_rrect_set_rect'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:68: error: undefined reference to 'sk_rrect_set_rect_xy'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:24: error: undefined reference to 'sk_rrect_new'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:25: error: undefined reference to 'sk_rrect_set_empty'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:30: error: undefined reference to 'sk_rrect_new'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:36: error: undefined reference to 'sk_rrect_new'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:42: error: undefined reference to 'sk_rrect_new_copy'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:49: error: undefined reference to 'sk_rrect_get_rect'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:55: error: undefined reference to 'sk_rrect_set_empty'
/host/spi-builder-workspace/Sources/SkiaKit/RoundRect.swift:73: error: undefined reference to 'sk_rrect_delete'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:47: error: undefined reference to 'sk_stream_is_at_end'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:55: error: undefined reference to 'sk_stream_read_s8'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:62: error: undefined reference to 'sk_stream_read_s16'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:69: error: undefined reference to 'sk_stream_read_s32'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:76: error: undefined reference to 'sk_stream_read_u8'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:83: error: undefined reference to 'sk_stream_read_u16'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:90: error: undefined reference to 'sk_stream_read_u32'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:103: error: undefined reference to 'sk_stream_read'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:120: error: undefined reference to 'sk_stream_peek'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:130: error: undefined reference to 'sk_stream_skip'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:139: error: undefined reference to 'sk_stream_rewind'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:153: error: undefined reference to 'sk_stream_seek'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:166: error: undefined reference to 'sk_stream_move'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:172: error: undefined reference to 'sk_stream_get_memory_base'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:189: error: undefined reference to 'sk_stream_has_position'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:196: error: undefined reference to 'sk_stream_get_position'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:203: error: undefined reference to 'sk_stream_has_length'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:210: error: undefined reference to 'sk_stream_get_length'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:225: error: undefined reference to 'sk_filestream_new'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:235: error: undefined reference to 'sk_filestream_destroy'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:240: error: undefined reference to 'sk_filestream_is_valid'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:249: error: undefined reference to 'sk_memorystream_new'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:258: error: undefined reference to 'sk_memorystream_new_with_length'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:273: error: undefined reference to 'sk_memorystream_new_with_data'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:286: error: undefined reference to 'sk_memorystream_new_with_skdata'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:296: error: undefined reference to 'sk_memorystream_set_memory'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:301: error: undefined reference to 'sk_memorystream_destroy'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:317: error: undefined reference to 'sk_wstream_bytes_written'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:327: error: undefined reference to 'sk_wstream_write'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:336: error: undefined reference to 'sk_wstream_newline'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:342: error: undefined reference to 'sk_wstream_flush'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:348: error: undefined reference to 'sk_wstream_write_stream'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:352: error: undefined reference to 'sk_wstream_write_8'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:354: error: undefined reference to 'sk_wstream_write_16'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:356: error: undefined reference to 'sk_wstream_write_32'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:358: error: undefined reference to 'sk_wstream_write_text'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:367: error: undefined reference to 'sk_filewstream_new'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:377: error: undefined reference to 'sk_filewstream_destroy'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:382: error: undefined reference to 'sk_filewstream_is_valid'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:391: error: undefined reference to 'sk_dynamicmemorywstream_new'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:396: error: undefined reference to 'sk_dynamicmemorywstream_destroy'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:406: error: undefined reference to 'sk_dynamicmemorywstream_copy_to'
/host/spi-builder-workspace/Sources/SkiaKit/SKStream.swift:416: error: undefined reference to 'sk_dynamicmemorywstream_write_to_stream'
/host/spi-builder-workspace/Sources/SkiaKit/SKString.swift:19: error: undefined reference to 'sk_string_new_with_copy'
/host/spi-builder-workspace/Sources/SkiaKit/SKString.swift:24: error: undefined reference to 'sk_string_new_empty'
/host/spi-builder-workspace/Sources/SkiaKit/SKString.swift:29: error: undefined reference to 'sk_string_get_c_str'
/host/spi-builder-workspace/Sources/SkiaKit/SKString.swift:33: error: undefined reference to 'sk_string_destructor'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:34: error: undefined reference to 'sk_shader_new_empty'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:39: error: undefined reference to 'sk_shader_new_color'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:52: error: undefined reference to 'sk_shader_with_local_matrix'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:80: error: undefined reference to 'sk_shader_new_linear_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:82: error: undefined reference to 'sk_shader_new_linear_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:109: error: undefined reference to 'sk_shader_new_linear_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:111: error: undefined reference to 'sk_shader_new_linear_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:141: error: undefined reference to 'sk_shader_new_radial_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:143: error: undefined reference to 'sk_shader_new_radial_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:174: error: undefined reference to 'sk_shader_new_sweep_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:176: error: undefined reference to 'sk_shader_new_sweep_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:209: error: undefined reference to 'sk_shader_new_two_point_conical_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:211: error: undefined reference to 'sk_shader_new_two_point_conical_gradient'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:235: error: undefined reference to 'sk_shader_new_perlin_noise_fractal_noise'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:253: error: undefined reference to 'sk_shader_new_perlin_noise_turbulence'
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:258: error: undefined reference to 'sk_shader_unref'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:109: error: undefined reference to 'sk_surface_new_render_target'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:56: error: undefined reference to 'sk_surface_new_raster_direct'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:81: error: undefined reference to 'sk_surface_new_raster'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:114: error: undefined reference to 'sk_surface_new_backend_render_target'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:124: error: undefined reference to 'sk_surface_new_null'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:136: error: undefined reference to 'sk_surface_get_canvas'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:141: error: undefined reference to 'sk_surface_get_props'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:153: error: undefined reference to 'sk_surface_new_image_snapshot'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:171: error: undefined reference to 'sk_surface_draw'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:185: error: undefined reference to 'sk_surface_peek_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/Surface.swift:223: error: undefined reference to 'sk_surface_read_pixels'
/host/spi-builder-workspace/Sources/SkiaKit/SurfaceProperties.swift:31: error: undefined reference to 'sk_surfaceprops_new'
/host/spi-builder-workspace/Sources/SkiaKit/SurfaceProperties.swift:37: error: undefined reference to 'sk_surfaceprops_delete'
/host/spi-builder-workspace/Sources/SkiaKit/SurfaceProperties.swift:42: error: undefined reference to 'sk_surfaceprops_get_pixel_geometry'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:36: error: undefined reference to 'sk_font_text_to_glyphs'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:39: error: undefined reference to 'sk_font_get_pos'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:40: error: undefined reference to 'sk_textblob_builder_make'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:179: error: undefined reference to 'sk_textblob_builder_alloc_run_text_pos'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:181: error: undefined reference to 'sk_textblob_builder_alloc_run_text_pos'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:46: error: undefined reference to 'sk_textblob_get_unique_id'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:53: error: undefined reference to 'sk_textblob_get_bounds'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:59: error: undefined reference to 'sk_textblob_unref'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:77: error: undefined reference to 'sk_textblob_builder_new'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:83: error: undefined reference to 'sk_textblob_builder_delete'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:93: error: undefined reference to 'sk_textblob_builder_make'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:151: error: undefined reference to 'sk_textblob_builder_alloc_run_text'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:153: error: undefined reference to 'sk_textblob_builder_alloc_run_text'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:165: error: undefined reference to 'sk_textblob_builder_alloc_run_text_pos_h'
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:167: error: undefined reference to 'sk_textblob_builder_alloc_run_text_pos_h'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27: error: undefined reference to 'sk_typeface_ref_default'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:38: error: undefined reference to 'sk_typeface_create_default'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:59: error: undefined reference to 'sk_typeface_create_from_name'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:89: error: undefined reference to 'sk_typeface_create_from_file'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:104: error: undefined reference to 'sk_typeface_create_from_stream'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:120: error: undefined reference to 'sk_typeface_create_from_stream'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:138: error: undefined reference to 'sk_typeface_get_family_name'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:147: error: undefined reference to 'sk_typeface_get_fontstyle'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:152: error: undefined reference to 'sk_typeface_get_font_weight'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:159: error: undefined reference to 'sk_typeface_get_font_width'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:166: error: undefined reference to 'sk_typeface_get_font_slant'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:171: error: undefined reference to 'sk_typeface_get_units_per_em'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:174: error: undefined reference to 'sk_typeface_count_tables'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:178: error: undefined reference to 'sk_typeface_get_table_size'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:223: error: undefined reference to 'sk_typeface_get_table_data'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:251: error: undefined reference to 'sk_typeface_open_stream'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:260: error: undefined reference to 'sk_typeface_count_glyphs'
/host/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:266: error: undefined reference to 'sk_typeface_unref'
clang: error: linker command failed with exit code 1 (use -v to see invocation)
[51/52] Linking Samples
BUILD FAILURE 6.0 linux