This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Asheron with Swift 6.0 for macOS (Xcode) using Xcode 16.0.

Swift 6 data race errors: 55

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Asheron-Package -destination platform=macos,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:27:27: warning: static property 'collidable' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let collidable = Flags(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:26:19: note: consider making struct 'Flags' conform to the 'Sendable' protocol
    public struct Flags : OptionSet, CustomStringConvertible, Packable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:27:27: note: annotate 'collidable' with '@MainActor' if property should only be accessed from the main actor
        public static let collidable = Flags(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:27:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let collidable = Flags(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:28:27: warning: static property 'renderable' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let renderable = Flags(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:26:19: note: consider making struct 'Flags' conform to the 'Sendable' protocol
    public struct Flags : OptionSet, CustomStringConvertible, Packable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:28:27: note: annotate 'renderable' with '@MainActor' if property should only be accessed from the main actor
        public static let renderable = Flags(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:28:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let renderable = Flags(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:29:27: warning: static property 'degradable' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let degradable = Flags(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:26:19: note: consider making struct 'Flags' conform to the 'Sendable' protocol
    public struct Flags : OptionSet, CustomStringConvertible, Packable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:29:27: note: annotate 'degradable' with '@MainActor' if property should only be accessed from the main actor
        public static let degradable = Flags(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:29:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let degradable = Flags(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:95:27: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.StipplingType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let none: StipplingType = []
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:94:19: note: consider making struct 'StipplingType' conform to the 'Sendable' protocol
    public struct StipplingType : OptionSet, Hashable, CustomStringConvertible, Packable {
                  ^
                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:95:27: note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
        public static let none: StipplingType = []
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:95:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let none: StipplingType = []
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:96:27: warning: static property 'positive' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.StipplingType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let positive = StipplingType(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:94:19: note: consider making struct 'StipplingType' conform to the 'Sendable' protocol
    public struct StipplingType : OptionSet, Hashable, CustomStringConvertible, Packable {
                  ^
                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:96:27: note: annotate 'positive' with '@MainActor' if property should only be accessed from the main actor
        public static let positive = StipplingType(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:96:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let positive = StipplingType(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:97:27: warning: static property 'negative' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.StipplingType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let negative = StipplingType(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:94:19: note: consider making struct 'StipplingType' conform to the 'Sendable' protocol
    public struct StipplingType : OptionSet, Hashable, CustomStringConvertible, Packable {
                  ^
                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:97:27: note: annotate 'negative' with '@MainActor' if property should only be accessed from the main actor
        public static let negative = StipplingType(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:97:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let negative = StipplingType(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:98:27: warning: static property 'both' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.StipplingType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let both: StipplingType = [.positive, .negative]
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:94:19: note: consider making struct 'StipplingType' conform to the 'Sendable' protocol
    public struct StipplingType : OptionSet, Hashable, CustomStringConvertible, Packable {
                  ^
                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:98:27: note: annotate 'both' with '@MainActor' if property should only be accessed from the main actor
        public static let both: StipplingType = [.positive, .negative]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:98:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let both: StipplingType = [.positive, .negative]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:99:27: warning: static property 'noPosUVs' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.StipplingType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noPosUVs = StipplingType(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:94:19: note: consider making struct 'StipplingType' conform to the 'Sendable' protocol
    public struct StipplingType : OptionSet, Hashable, CustomStringConvertible, Packable {
                  ^
                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:99:27: note: annotate 'noPosUVs' with '@MainActor' if property should only be accessed from the main actor
        public static let noPosUVs = StipplingType(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:99:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noPosUVs = StipplingType(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:100:27: warning: static property 'noNegUVs' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.StipplingType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noNegUVs = StipplingType(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:94:19: note: consider making struct 'StipplingType' conform to the 'Sendable' protocol
    public struct StipplingType : OptionSet, Hashable, CustomStringConvertible, Packable {
                  ^
                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:100:27: note: annotate 'noNegUVs' with '@MainActor' if property should only be accessed from the main actor
        public static let noNegUVs = StipplingType(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:100:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noNegUVs = StipplingType(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:101:27: warning: static property 'noUVs' is not concurrency-safe because non-'Sendable' type 'GraphicsObject.StipplingType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noUVs: StipplingType = [.noPosUVs, .noNegUVs]
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:94:19: note: consider making struct 'StipplingType' conform to the 'Sendable' protocol
    public struct StipplingType : OptionSet, Hashable, CustomStringConvertible, Packable {
                  ^
                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:101:27: note: annotate 'noUVs' with '@MainActor' if property should only be accessed from the main actor
        public static let noUVs: StipplingType = [.noPosUVs, .noNegUVs]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift:101:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noUVs: StipplingType = [.noPosUVs, .noNegUVs]
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/GraphicsObject.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/GraphicsObject.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/GraphicsObject.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/GraphicsObject.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Identifier.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Identifier.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Identifier.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Identifier.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/GraphicsObject.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Identifier.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/GraphicsObject.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Identifier.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:34:23: warning: static property 'landBlock' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let landBlock = DBType(source: .cell, name: "LandBlock", enumCode: 1, idRange: nil, fileExtension: [])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:34:23: note: annotate 'landBlock' with '@MainActor' if property should only be accessed from the main actor
    public static let landBlock = DBType(source: .cell, name: "LandBlock", enumCode: 1, idRange: nil, fileExtension: [])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let landBlock = DBType(source: .cell, name: "LandBlock", enumCode: 1, idRange: nil, fileExtension: [])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:35:23: warning: static property 'lbi' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lbi = DBType(source: .cell, name: "LandBlockInfo", enumCode: 2, idRange: nil, fileExtension: ["lbi"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:35:23: note: annotate 'lbi' with '@MainActor' if property should only be accessed from the main actor
    public static let lbi = DBType(source: .cell, name: "LandBlockInfo", enumCode: 2, idRange: nil, fileExtension: ["lbi"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lbi = DBType(source: .cell, name: "LandBlockInfo", enumCode: 2, idRange: nil, fileExtension: ["lbi"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:36:23: warning: static property 'envCell' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let envCell = DBType(source: .cell, name: "EnvCell", enumCode: 3, idRange: UInt32(0x01010000)...UInt32(0x013EFFFF), fileExtension: [])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:36:23: note: annotate 'envCell' with '@MainActor' if property should only be accessed from the main actor
    public static let envCell = DBType(source: .cell, name: "EnvCell", enumCode: 3, idRange: UInt32(0x01010000)...UInt32(0x013EFFFF), fileExtension: [])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let envCell = DBType(source: .cell, name: "EnvCell", enumCode: 3, idRange: UInt32(0x01010000)...UInt32(0x013EFFFF), fileExtension: [])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:37:23: warning: static property 'lbo' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lbo = DBType(source: .unknown, name: "LandBlockObjects", enumCode: 4, idRange: nil, fileExtension: ["lbo"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:37:23: note: annotate 'lbo' with '@MainActor' if property should only be accessed from the main actor
    public static let lbo = DBType(source: .unknown, name: "LandBlockObjects", enumCode: 4, idRange: nil, fileExtension: ["lbo"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lbo = DBType(source: .unknown, name: "LandBlockObjects", enumCode: 4, idRange: nil, fileExtension: ["lbo"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:38:23: warning: static property 'instantiation' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instantiation = DBType(source: .unknown, name: "Instantiation", enumCode: 5, idRange: nil, fileExtension: ["ins"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:38:23: note: annotate 'instantiation' with '@MainActor' if property should only be accessed from the main actor
    public static let instantiation = DBType(source: .unknown, name: "Instantiation", enumCode: 5, idRange: nil, fileExtension: ["ins"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instantiation = DBType(source: .unknown, name: "Instantiation", enumCode: 5, idRange: nil, fileExtension: ["ins"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:39:23: warning: static property 'gfxObj' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let gfxObj = DBType(source: .portal, name: "GraphicsObject", enumCode: 6, idRange: UInt32(0x01000000)...UInt32(0x0100FFFF), fileExtension: ["obj"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:39:23: note: annotate 'gfxObj' with '@MainActor' if property should only be accessed from the main actor
    public static let gfxObj = DBType(source: .portal, name: "GraphicsObject", enumCode: 6, idRange: UInt32(0x01000000)...UInt32(0x0100FFFF), fileExtension: ["obj"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let gfxObj = DBType(source: .portal, name: "GraphicsObject", enumCode: 6, idRange: UInt32(0x01000000)...UInt32(0x0100FFFF), fileExtension: ["obj"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:40:23: warning: static property 'setup' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let setup = DBType(source: .portal, name: "Setup", enumCode: 7, idRange: UInt32(0x02000000)...UInt32(0x0200FFFF), fileExtension: ["set"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:40:23: note: annotate 'setup' with '@MainActor' if property should only be accessed from the main actor
    public static let setup = DBType(source: .portal, name: "Setup", enumCode: 7, idRange: UInt32(0x02000000)...UInt32(0x0200FFFF), fileExtension: ["set"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let setup = DBType(source: .portal, name: "Setup", enumCode: 7, idRange: UInt32(0x02000000)...UInt32(0x0200FFFF), fileExtension: ["set"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:41:23: warning: static property 'anim' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let anim = DBType(source: .portal, name: "Animation", enumCode: 8, idRange: UInt32(0x03000000)...UInt32(0x0300FFFF), fileExtension: ["anm"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:41:23: note: annotate 'anim' with '@MainActor' if property should only be accessed from the main actor
    public static let anim = DBType(source: .portal, name: "Animation", enumCode: 8, idRange: UInt32(0x03000000)...UInt32(0x0300FFFF), fileExtension: ["anm"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let anim = DBType(source: .portal, name: "Animation", enumCode: 8, idRange: UInt32(0x03000000)...UInt32(0x0300FFFF), fileExtension: ["anm"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:42:23: warning: static property 'animationHook' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let animationHook = DBType(source: .unknown, name: "AnimationHook", enumCode: 9, idRange: nil, fileExtension: ["hk"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:42:23: note: annotate 'animationHook' with '@MainActor' if property should only be accessed from the main actor
    public static let animationHook = DBType(source: .unknown, name: "AnimationHook", enumCode: 9, idRange: nil, fileExtension: ["hk"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let animationHook = DBType(source: .unknown, name: "AnimationHook", enumCode: 9, idRange: nil, fileExtension: ["hk"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:43:23: warning: static property 'palette' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let palette = DBType(source: .portal, name: "Palette", enumCode: 10, idRange: UInt32(0x04000000)...UInt32(0x0400FFFF), fileExtension: ["pal"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:43:23: note: annotate 'palette' with '@MainActor' if property should only be accessed from the main actor
    public static let palette = DBType(source: .portal, name: "Palette", enumCode: 10, idRange: UInt32(0x04000000)...UInt32(0x0400FFFF), fileExtension: ["pal"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let palette = DBType(source: .portal, name: "Palette", enumCode: 10, idRange: UInt32(0x04000000)...UInt32(0x0400FFFF), fileExtension: ["pal"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:44:23: warning: static property 'surfaceTexture' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let surfaceTexture = DBType(source: .portal, name: "SurfaceTexture", enumCode: 11, idRange: UInt32(0x05000000)...UInt32(0x05FFFFFF), fileExtension: ["texture"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:44:23: note: annotate 'surfaceTexture' with '@MainActor' if property should only be accessed from the main actor
    public static let surfaceTexture = DBType(source: .portal, name: "SurfaceTexture", enumCode: 11, idRange: UInt32(0x05000000)...UInt32(0x05FFFFFF), fileExtension: ["texture"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let surfaceTexture = DBType(source: .portal, name: "SurfaceTexture", enumCode: 11, idRange: UInt32(0x05000000)...UInt32(0x05FFFFFF), fileExtension: ["texture"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:45:23: warning: static property 'renderSurface' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let renderSurface = DBType(source: .portal, name: "Texture", enumCode: 12, idRange: UInt32(0x06000000)...UInt32(0x07FFFFFF), fileExtension: ["bmp", "jpg", "dds", "tga", "iff", "256", "csi", "alp"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:45:23: note: annotate 'renderSurface' with '@MainActor' if property should only be accessed from the main actor
    public static let renderSurface = DBType(source: .portal, name: "Texture", enumCode: 12, idRange: UInt32(0x06000000)...UInt32(0x07FFFFFF), fileExtension: ["bmp", "jpg", "dds", "tga", "iff", "256", "csi", "alp"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let renderSurface = DBType(source: .portal, name: "Texture", enumCode: 12, idRange: UInt32(0x06000000)...UInt32(0x07FFFFFF), fileExtension: ["bmp", "jpg", "dds", "tga", "iff", "256", "csi", "alp"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:46:23: warning: static property 'surface' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let surface = DBType(source: .portal, name: "Surface", enumCode: 13, idRange: UInt32(0x08000000)...UInt32(0x0800FFFF), fileExtension: ["surface"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:46:23: note: annotate 'surface' with '@MainActor' if property should only be accessed from the main actor
    public static let surface = DBType(source: .portal, name: "Surface", enumCode: 13, idRange: UInt32(0x08000000)...UInt32(0x0800FFFF), fileExtension: ["surface"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let surface = DBType(source: .portal, name: "Surface", enumCode: 13, idRange: UInt32(0x08000000)...UInt32(0x0800FFFF), fileExtension: ["surface"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:47:23: warning: static property 'mtable' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let mtable = DBType(source: .portal, name: "MotionTable", enumCode: 14, idRange: UInt32(0x09000000)...UInt32(0x0900FFFF), fileExtension: ["dsc"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:47:23: note: annotate 'mtable' with '@MainActor' if property should only be accessed from the main actor
    public static let mtable = DBType(source: .portal, name: "MotionTable", enumCode: 14, idRange: UInt32(0x09000000)...UInt32(0x0900FFFF), fileExtension: ["dsc"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let mtable = DBType(source: .portal, name: "MotionTable", enumCode: 14, idRange: UInt32(0x09000000)...UInt32(0x0900FFFF), fileExtension: ["dsc"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:48:23: warning: static property 'wave' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let wave = DBType(source: .portal, name: "Wave", enumCode: 15, idRange: UInt32(0x0A000000)...UInt32(0x0A00FFFF), fileExtension: ["wav", "mp3"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:48:23: note: annotate 'wave' with '@MainActor' if property should only be accessed from the main actor
    public static let wave = DBType(source: .portal, name: "Wave", enumCode: 15, idRange: UInt32(0x0A000000)...UInt32(0x0A00FFFF), fileExtension: ["wav", "mp3"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let wave = DBType(source: .portal, name: "Wave", enumCode: 15, idRange: UInt32(0x0A000000)...UInt32(0x0A00FFFF), fileExtension: ["wav", "mp3"])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:49:23: warning: static property 'environment' is not concurrency-safe because non-'Sendable' type 'DBType' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let environment = DBType(source: .portal, name: "Environment", enumCode: 16, idRange: UInt32(0x0A000000)...UInt32(0x0A00FFFF), fileExtension: ["env"])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:25:15: note: consider making struct 'DBType' conform to the 'Sendable' protocol
public struct DBType {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:49:23: note: annotate 'environment' with '@MainActor' if property should only be accessed from the main actor
    public static let environment = DBType(source: .portal, name: "Environment", enumCode: 16, idRange: UInt32(0x0A000000)...UInt32(0x0A00FFFF), fileExtension: ["env"])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let environment = DBType(source: .portal, name: "Environment", enumCode: 16, idRange: UInt32(0x0A000000)...UInt32(0x0A00FFFF), fileExtension: ["env"])
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ PixelFormat.swift,\ Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/PixelFormat.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Region.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:47:27: warning: static property 'hasSound' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasSound     = PartsMask(rawValue: 0b0000000001)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:47:27: note: annotate 'hasSound' with '@MainActor' if property should only be accessed from the main actor
        public static let hasSound     = PartsMask(rawValue: 0b0000000001)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasSound     = PartsMask(rawValue: 0b0000000001)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:48:27: warning: static property 'hasScene' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasScene     = PartsMask(rawValue: 0b0000000010)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:48:27: note: annotate 'hasScene' with '@MainActor' if property should only be accessed from the main actor
        public static let hasScene     = PartsMask(rawValue: 0b0000000010)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:48:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasScene     = PartsMask(rawValue: 0b0000000010)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:49:27: warning: static property 'hasTerrain' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasTerrain   = PartsMask(rawValue: 0b0000000100)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:49:27: note: annotate 'hasTerrain' with '@MainActor' if property should only be accessed from the main actor
        public static let hasTerrain   = PartsMask(rawValue: 0b0000000100)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:49:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasTerrain   = PartsMask(rawValue: 0b0000000100)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:50:27: warning: static property 'hasEncounter' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasEncounter = PartsMask(rawValue: 0b0000001000)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:50:27: note: annotate 'hasEncounter' with '@MainActor' if property should only be accessed from the main actor
        public static let hasEncounter = PartsMask(rawValue: 0b0000001000)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:50:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasEncounter = PartsMask(rawValue: 0b0000001000)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:51:27: warning: static property 'hasSky' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasSky       = PartsMask(rawValue: 0b0000010000)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:51:27: note: annotate 'hasSky' with '@MainActor' if property should only be accessed from the main actor
        public static let hasSky       = PartsMask(rawValue: 0b0000010000)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:51:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasSky       = PartsMask(rawValue: 0b0000010000)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:52:27: warning: static property 'hasWater' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasWater     = PartsMask(rawValue: 0b0000100000)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:52:27: note: annotate 'hasWater' with '@MainActor' if property should only be accessed from the main actor
        public static let hasWater     = PartsMask(rawValue: 0b0000100000)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasWater     = PartsMask(rawValue: 0b0000100000)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:53:27: warning: static property 'hasFog' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasFog       = PartsMask(rawValue: 0b0001000000)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:53:27: note: annotate 'hasFog' with '@MainActor' if property should only be accessed from the main actor
        public static let hasFog       = PartsMask(rawValue: 0b0001000000)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:53:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasFog       = PartsMask(rawValue: 0b0001000000)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:54:27: warning: static property 'hasDistFog' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasDistFog   = PartsMask(rawValue: 0b0010000000)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:54:27: note: annotate 'hasDistFog' with '@MainActor' if property should only be accessed from the main actor
        public static let hasDistFog   = PartsMask(rawValue: 0b0010000000)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasDistFog   = PartsMask(rawValue: 0b0010000000)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:55:27: warning: static property 'hasRegionMap' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasRegionMap = PartsMask(rawValue: 0b0100000000)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:55:27: note: annotate 'hasRegionMap' with '@MainActor' if property should only be accessed from the main actor
        public static let hasRegionMap = PartsMask(rawValue: 0b0100000000)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:55:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasRegionMap = PartsMask(rawValue: 0b0100000000)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:56:27: warning: static property 'hasMisc' is not concurrency-safe because non-'Sendable' type 'Region.PartsMask' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hasMisc      = PartsMask(rawValue: 0b1000000000)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:46:19: note: consider making struct 'PartsMask' conform to the 'Sendable' protocol
    public struct PartsMask : OptionSet, Packable {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:56:27: note: annotate 'hasMisc' with '@MainActor' if property should only be accessed from the main actor
        public static let hasMisc      = PartsMask(rawValue: 0b1000000000)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift:56:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hasMisc      = PartsMask(rawValue: 0b1000000000)
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ DXT.swift,\ DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DXT.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DatFile.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift:85:27: warning: static property 'nextNodeCount' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var nextNodeCount = entryCount + 1
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift:85:27: note: convert 'nextNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
        public static var nextNodeCount = entryCount + 1
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift:85:27: note: annotate 'nextNodeCount' with '@MainActor' if property should only be accessed from the main actor
        public static var nextNodeCount = entryCount + 1
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift:85:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var nextNodeCount = entryCount + 1
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Packable.swift,\ Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Packable.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Palette.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ DataStream.swift,\ Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/DataStream.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Geometry.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ AnimHook.swift,\ Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/AnimHook.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DXT.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DatFile.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/DataStream.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/GraphicsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Packable.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/PixelFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Region.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SoundType.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Surface.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/SurfaceTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Texture.swift /Users/admin/builder/spi-builder-workspace/Sources/Asheron/Wave.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -enable-bare-slash-regex -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name Asheron -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/AnimHook.o -index-unit-output-path /Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Bitmap.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift:28:23: warning: static property 'byteSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var byteSize: UInt32 = 14
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift:28:23: note: convert 'byteSize' to a 'let' constant to make 'Sendable' shared state immutable
    public static var byteSize: UInt32 = 14
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift:28:23: note: annotate 'byteSize' with '@MainActor' if property should only be accessed from the main actor
    public static var byteSize: UInt32 = 14
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Asheron/Bitmap.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var byteSize: UInt32 = 14
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for Asheron (in target 'Asheron' from project 'Asheron')
SwiftDriver\ Compilation\ Requirements Asheron normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Asheron -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.15 -enable-bare-slash-regex -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Surface.swift, SurfaceTexture.swift (in target 'Asheron' from project 'Asheron')
SwiftDriverJobDiscovery normal arm64 Compiling Setup.swift, SoundType.swift (in target 'Asheron' from project 'Asheron')
SwiftDriverJobDiscovery normal arm64 Compiling PixelFormat.swift, Region.swift (in target 'Asheron' from project 'Asheron')
SwiftDriverJobDiscovery normal arm64 Compiling GraphicsObject.swift, Identifier.swift (in target 'Asheron' from project 'Asheron')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Headers/Asheron-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron-Swift.h (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Headers/Asheron-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Modules/Asheron.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.abi.json (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Modules/Asheron.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Modules/Asheron.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.swiftdoc (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Modules/Asheron.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Modules/Asheron.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.swiftmodule (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Modules/Asheron.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Modules/Asheron.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.swiftsourceinfo (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Modules/Asheron.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Packable.swift, Palette.swift (in target 'Asheron' from project 'Asheron')
SwiftDriverJobDiscovery normal arm64 Compiling DataStream.swift, Geometry.swift (in target 'Asheron' from project 'Asheron')
SwiftDriverJobDiscovery normal arm64 Compiling Texture.swift (in target 'Asheron' from project 'Asheron')
SwiftDriverJobDiscovery normal arm64 Compiling Wave.swift (in target 'Asheron' from project 'Asheron')
SwiftDriverJobDiscovery normal arm64 Compiling AnimHook.swift, Bitmap.swift (in target 'Asheron' from project 'Asheron')
SwiftDriverJobDiscovery normal arm64 Compiling DXT.swift, DatFile.swift (in target 'Asheron' from project 'Asheron')
SwiftDriver\ Compilation Asheron normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Asheron -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.15 -enable-bare-slash-regex -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Asheron normal (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -dynamiclib -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.LinkFileList -install_name @rpath/Asheron.framework/Versions/A/Asheron -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/macosx -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.swiftmodule -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Asheron
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.SwiftConstValuesFileList (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.SwiftConstValuesFileList
ExtractAppIntentsMetadata (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Resources --toolchain-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain --module-name Asheron --sdk-root /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk --xcode-version 15E204a --platform-family macOS --deployment-target 10.15 --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Asheron --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.SwiftFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Asheron.build/Debug/Asheron.build/Objects-normal/arm64/Asheron.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing
note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'Asheron' from project 'Asheron')
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Asheron.framework/Versions/A/Asheron.tbd (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A/Asheron -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Asheron.framework/Versions/A/Asheron.tbd
CodeSign /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace

    Signing Identity:     "-"

    /usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework/Versions/A
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Asheron.framework
SymLink /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Asheron.framework/Asheron.tbd /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Asheron.framework/Versions/A/Asheron.tbd (in target 'Asheron' from project 'Asheron')
    cd /Users/admin/builder/spi-builder-workspace
    /bin/ln -sfh /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Asheron.framework/Versions/A/Asheron.tbd /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/Asheron.framework/Asheron.tbd
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:tvOS Simulator, id:8B1ABE64-0401-443E-812F-247A4FBB5BDB, OS:17.4, name:Apple TV }
{ platform:tvOS Simulator, id:1CFD7C1E-15D0-43C5-AF27-909F7506EEF8, OS:17.4, name:Apple TV 4K (3rd generation) }
{ platform:tvOS Simulator, id:2F8EA46A-629D-4072-B00C-F903D55C3177, OS:17.4, name:Apple TV 4K (3rd generation) (at 1080p) }
{ platform:watchOS Simulator, id:DE04AC0A-986B-4FBA-9496-F35677425C97, OS:10.4, name:Apple Watch SE (40mm) (2nd generation) }
{ platform:watchOS Simulator, id:4BE5427F-5FC7-449C-B254-3F404CE79B2F, OS:10.4, name:Apple Watch SE (44mm) (2nd generation) }
{ platform:watchOS Simulator, id:B1E30F2A-196D-43FB-B903-C3CF777EDD8E, OS:10.4, name:Apple Watch Series 5 (40mm) }
{ platform:watchOS Simulator, id:2F36C8D1-FB3D-4D85-A931-07B6EFBD4E4F, OS:10.4, name:Apple Watch Series 5 (44mm) }
{ platform:watchOS Simulator, id:CF595720-5AAE-408E-8353-1C54D9068D3E, OS:10.4, name:Apple Watch Series 6 (40mm) }
{ platform:watchOS Simulator, id:8F6954D5-8415-4A06-8701-3C7F4ACB2488, OS:10.4, name:Apple Watch Series 6 (44mm) }
{ platform:watchOS Simulator, id:F60A3AB2-C846-4E63-9A50-5E6DBD6A2777, OS:10.4, name:Apple Watch Series 7 (41mm) }
{ platform:watchOS Simulator, id:F72F2121-983A-4C32-A0D4-0C7BA61073C9, OS:10.4, name:Apple Watch Series 7 (45mm) }
{ platform:watchOS Simulator, id:86A5CFD7-08C3-40A4-B2A6-2F3A8CB8BDA5, OS:10.4, name:Apple Watch Series 9 (41mm) }
{ platform:watchOS Simulator, id:B22A08B0-18B6-43BC-94F1-5C2F83724B73, OS:10.4, name:Apple Watch Series 9 (45mm) }
{ platform:watchOS Simulator, id:797FC64C-7930-4151-8822-6349FA58EFA0, OS:10.4, name:Apple Watch Ultra 2 (49mm) }
{ platform:iOS Simulator, id:80B3B926-14C6-407B-AD45-937DD9D118A2, OS:17.4, name:iPad (10th generation) }
{ platform:iOS Simulator, id:DCA453EF-4DA0-4BCB-9EDB-B627F480EC88, OS:17.4, name:iPad Air (5th generation) }
{ platform:iOS Simulator, id:1DD2445B-C99B-432E-99AB-F239A53F76A7, OS:17.4, name:iPad Pro (11-inch) (4th generation) }
{ platform:iOS Simulator, id:63A2100A-3ABC-479B-927E-0927E96A78B0, OS:17.4, name:iPad Pro (12.9-inch) (6th generation) }
{ platform:iOS Simulator, id:182006EF-3CD1-439B-B898-2FF003963B39, OS:17.4, name:iPad mini (6th generation) }
{ platform:iOS Simulator, id:E86EA00F-56E9-4BD5-BE25-B4AE5E09CD43, OS:17.4, name:iPhone 15 }
{ platform:iOS Simulator, id:724EDFB5-2285-4CCF-A274-5CEAC57CE7ED, OS:17.4, name:iPhone 15 Plus }
{ platform:iOS Simulator, id:FA8EB545-B4CA-4062-86F4-C39DEAD04F1E, OS:17.4, name:iPhone 15 Pro }
{ platform:iOS Simulator, id:4C84A4B0-ABA2-4072-B35C-2EF2B0D49AA7, OS:17.4, name:iPhone 15 Pro Max }
{ platform:iOS Simulator, id:82B3845C-C246-4FEC-B1FB-D4892A314D10, OS:17.4, name:iPhone SE (3rd generation) }
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Asheron",
  "name" : "Asheron",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Asheron",
      "targets" : [
        "Asheron"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Asheron",
      "module_type" : "SwiftTarget",
      "name" : "Asheron",
      "path" : "Sources/Asheron",
      "product_memberships" : [
        "Asheron"
      ],
      "sources" : [
        "AnimHook.swift",
        "Bitmap.swift",
        "DXT.swift",
        "DatFile.swift",
        "DataStream.swift",
        "Geometry.swift",
        "GraphicsObject.swift",
        "Identifier.swift",
        "Packable.swift",
        "Palette.swift",
        "PixelFormat.swift",
        "Region.swift",
        "Setup.swift",
        "SoundType.swift",
        "Surface.swift",
        "SurfaceTexture.swift",
        "Texture.swift",
        "Wave.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.