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 Doggie, reference main (d49683), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 30 Apr 2025 06:27:11 UTC.

Swift 6 data race errors: 203

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Doggie-Package -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

        static let LCS_PROFILE_LINKED: ColorSpaceType                      = "LINK"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:925:20: warning: static property 'LCS_PROFILE_EMBEDDED' is not concurrency-safe because non-'Sendable' type 'BITMAPINFOHEADER.ColorSpaceType' may have shared mutable state; this is an error in the Swift 6 language mode
        static let LCS_PROFILE_EMBEDDED: ColorSpaceType                    = "MBED"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:913:12: note: consider making struct 'ColorSpaceType' conform to the 'Sendable' protocol
    struct ColorSpaceType: SignatureProtocol {
           ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:925:20: note: add '@MainActor' to make static property 'LCS_PROFILE_EMBEDDED' part of global actor 'MainActor'
        static let LCS_PROFILE_EMBEDDED: ColorSpaceType                    = "MBED"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:925:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let LCS_PROFILE_EMBEDDED: ColorSpaceType                    = "MBED"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:940:20: warning: static property 'LCS_GM_ABS_COLORIMETRIC' is not concurrency-safe because non-'Sendable' type 'BITMAPINFOHEADER.IntentType' may have shared mutable state; this is an error in the Swift 6 language mode
        static let LCS_GM_ABS_COLORIMETRIC: IntentType                     = 0x00000008
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:928:12: note: consider making struct 'IntentType' conform to the 'Sendable' protocol
    struct IntentType: RawRepresentable, Hashable, ExpressibleByIntegerLiteral, ByteCodable {
           ^
                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:940:20: note: add '@MainActor' to make static property 'LCS_GM_ABS_COLORIMETRIC' part of global actor 'MainActor'
        static let LCS_GM_ABS_COLORIMETRIC: IntentType                     = 0x00000008
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:940:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let LCS_GM_ABS_COLORIMETRIC: IntentType                     = 0x00000008
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:941:20: warning: static property 'LCS_GM_BUSINESS' is not concurrency-safe because non-'Sendable' type 'BITMAPINFOHEADER.IntentType' may have shared mutable state; this is an error in the Swift 6 language mode
        static let LCS_GM_BUSINESS: IntentType                             = 0x00000001
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:928:12: note: consider making struct 'IntentType' conform to the 'Sendable' protocol
    struct IntentType: RawRepresentable, Hashable, ExpressibleByIntegerLiteral, ByteCodable {
           ^
                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:941:20: note: add '@MainActor' to make static property 'LCS_GM_BUSINESS' part of global actor 'MainActor'
        static let LCS_GM_BUSINESS: IntentType                             = 0x00000001
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:941:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let LCS_GM_BUSINESS: IntentType                             = 0x00000001
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:942:20: warning: static property 'LCS_GM_GRAPHICS' is not concurrency-safe because non-'Sendable' type 'BITMAPINFOHEADER.IntentType' may have shared mutable state; this is an error in the Swift 6 language mode
        static let LCS_GM_GRAPHICS: IntentType                             = 0x00000002
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:928:12: note: consider making struct 'IntentType' conform to the 'Sendable' protocol
    struct IntentType: RawRepresentable, Hashable, ExpressibleByIntegerLiteral, ByteCodable {
           ^
                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:942:20: note: add '@MainActor' to make static property 'LCS_GM_GRAPHICS' part of global actor 'MainActor'
        static let LCS_GM_GRAPHICS: IntentType                             = 0x00000002
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:942:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let LCS_GM_GRAPHICS: IntentType                             = 0x00000002
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:943:20: warning: static property 'LCS_GM_IMAGES' is not concurrency-safe because non-'Sendable' type 'BITMAPINFOHEADER.IntentType' may have shared mutable state; this is an error in the Swift 6 language mode
        static let LCS_GM_IMAGES: IntentType                               = 0x00000004
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:928:12: note: consider making struct 'IntentType' conform to the 'Sendable' protocol
    struct IntentType: RawRepresentable, Hashable, ExpressibleByIntegerLiteral, ByteCodable {
           ^
                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:943:20: note: add '@MainActor' to make static property 'LCS_GM_IMAGES' part of global actor 'MainActor'
        static let LCS_GM_IMAGES: IntentType                               = 0x00000004
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Decoder/BMPDecoder.swift:943:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let LCS_GM_IMAGES: IntentType                               = 0x00000004
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageContext/ImageContext.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
public struct AnyColor: ColorProtocol {
              ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageContext/ImageContext.swift:28:16: note: add '@MainActor' to make static property 'defaultShadowColor' part of global actor 'MainActor'
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageContext/ImageContext.swift:28:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageFilter/SVGTurbulence.swift:27:13: warning: var 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var cache: [SVGNoiseGenerator] = []
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageFilter/SVGTurbulence.swift:27:13: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
private var cache: [SVGNoiseGenerator] = []
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageFilter/SVGTurbulence.swift:27:13: note: add '@MainActor' to make var 'cache' part of global actor 'MainActor'
private var cache: [SVGNoiseGenerator] = []
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ImageFilter/SVGTurbulence.swift:27:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var cache: [SVGNoiseGenerator] = []
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
public struct AnyColor: ColorProtocol {
              ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: note: add '@MainActor' to make static property 'defaultShadowColor' part of global actor 'MainActor'
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGContext.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
public struct AnyColor: ColorProtocol {
              ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGContext.swift:28:16: note: add '@MainActor' to make static property 'defaultShadowColor' part of global actor 'MainActor'
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGContext.swift:28:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ SVGNoiseGenerator.swift,\ SimplexNoise.swift,\ PDFContext.swift,\ PDFContextEncoder.swift,\ PDFContextImage.swift,\ PDFContextPage.swift,\ PDFDecoder.swift,\ PDFDocument.swift,\ ASCII85Filter.swift,\ ASCIIHexFilter.swift,\ PDFFilter.swift,\ PDFName.swift,\ PDFNumber.swift,\ PDFObject.swift,\ PDFPage.swift,\ PDFBitmap.swift,\ PDFColorSpace.swift,\ PDFCommand.swift,\ PDFDrawPage.swift,\ PDFFunction.swift,\ PDFRenderer.swift,\ PDFStream.swift,\ PDFString.swift,\ PDFXref.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Noise/SVGNoiseGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Noise/SimplexNoise.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextImage.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFDocument.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFFilter/ASCII85Filter.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFFilter/ASCIIHexFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFFilter/PDFFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFName.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFNumber.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFObject.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFPage.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFBitmap.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFColorSpace.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFCommand.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFDrawPage.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFFunction.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFRenderer.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFStream.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFString.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFXref.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Noise/SVGNoiseGenerator.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Noise/SimplexNoise.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContext.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextEncoder.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextImage.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
public struct AnyColor: ColorProtocol {
              ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: note: add '@MainActor' to make static property 'defaultShadowColor' part of global actor 'MainActor'
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFDecoder.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFDocument.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFFilter/ASCII85Filter.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFFilter/ASCIIHexFilter.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFFilter/PDFFilter.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFName.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFNumber.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFObject.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFPage.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFBitmap.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFColorSpace.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFCommand.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFDrawPage.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFFunction.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFRenderer/PDFRenderer.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFStream.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFString.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/PDFDocument/PDFXref.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling AppleExported.swift, CGColor.swift, CGColorSpace.swift, CGContext.swift, CGFont.swift, CGGradient.swift, CGPattern.swift, CGShading.swift, CoreText.swift, CGImage.swift, CVPixelFormat.swift, CoreVideo.swift, IOSurface.swift, NSImage.swift, UIImage.swift, AVDepthData.swift, AVPortraitEffectsMatte.swift, CGAnimatedImage.swift, CGImageDestination.swift, CGImageRep.swift, CGImageSource.swift, Metal.swift, CIContext.swift, CIContextPool.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftCompile normal arm64 Compiling\ AvailableColorSpaces.swift,\ AvailableFonts.swift,\ Prespecialize.swift,\ SVGContext.swift,\ SVGBlendEffect.swift,\ SVGColorMatrixEffect.swift,\ SVGComponentTransferEffect.swift,\ SVGConvolveMatrixEffect.swift,\ SVGDisplacementMapEffect.swift,\ SVGDropShadowEffect.swift,\ SVGEffect.swift,\ SVGFloodEffect.swift,\ SVGGaussianBlurEffect.swift,\ SVGHueRotateEffect.swift,\ SVGImageEffect.swift,\ SVGLightingEffect.swift,\ SVGLuminanceToAlphaEffect.swift,\ SVGMergeEffect.swift,\ SVGMorphologyEffect.swift,\ SVGOffsetEffect.swift,\ SVGSaturateEffect.swift,\ SVGTileEffect.swift,\ SVGTurbulenceEffect.swift,\ FixedNumber.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Platform/AvailableColorSpaces.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Platform/AvailableFonts.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Prespecialize.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGBlendEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGColorMatrixEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGComponentTransferEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGConvolveMatrixEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGDisplacementMapEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGDropShadowEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGFloodEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGGaussianBlurEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGHueRotateEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGImageEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGLightingEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGLuminanceToAlphaEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGMergeEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGMorphologyEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGOffsetEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGSaturateEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGTileEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGTurbulenceEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Serialization/FixedNumber.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Platform/AvailableColorSpaces.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Platform/AvailableFonts.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Prespecialize.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGContext.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGContext.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
public struct AnyColor: ColorProtocol {
              ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGContext.swift:28:16: note: add '@MainActor' to make static property 'defaultShadowColor' part of global actor 'MainActor'
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGContext.swift:28:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGBlendEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGColorMatrixEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGComponentTransferEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGConvolveMatrixEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGDisplacementMapEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGDropShadowEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGFloodEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGGaussianBlurEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGHueRotateEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGImageEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGLightingEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGLuminanceToAlphaEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGMergeEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGMorphologyEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGOffsetEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGSaturateEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGTileEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/SVGContext/SVGEffect/SVGTurbulenceEffect.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Serialization/FixedNumber.swift (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling FloatComponentPixel.swift, Gray16ColorPixel.swift, Gray32ColorPixel.swift, GrayColorPixel.swift, ABGR32ColorPixel.swift, ARGB32ColorPixel.swift, ARGB64ColorPixel.swift, BGRA32ColorPixel.swift, RGBA32ColorPixel.swift, RGBA64ColorPixel.swift, RGBColorPixel.swift, AnyColorSpace.swift, ChromaticAdaptationAlgorithm.swift, ColorSpace.swift, CIELabColorSpace.swift, CIELuvColorSpace.swift, CIEXYZColorSpace.swift, CIEYxyColorSpace.swift, CalibratedGrayColorSpace.swift, AdobeRGB.swift, CalibratedRGBColorSpace.swift, displayP3.swift, sRGB.swift, ColorSpaceBaseProtocol.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling Stroke.swift, Exported.swift, CFF2Decoder.swift, CFF2INDEX.swift, CFFCharStrings.swift, CFFDICT.swift, CFFDecoder.swift, CFFEncoding.swift, CFFFDSelect.swift, CFFFontFace.swift, CFFINDEX.swift, FontDecoder.swift, OpenTypeDecoder.swift, AATStateTable.swift, OTFFeatureList.swift, OTFGDEF.swift, OTFGPOS.swift, OTFGSUB.swift, OTFLookupList.swift, OTFScriptList.swift, SFNTCMAP.swift, SFNTFEAT.swift, SFNTFontFace.swift, SFNTGLYF.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling SFNTHEAD.swift, SFNTHHEA.swift, SFNTLTAG.swift, SFNTMAXP.swift, SFNTMORX.swift, SFNTNAME.swift, SFNTOS2.swift, SFNTPOST.swift, SFNTPlatform.swift, SFNTSBIX.swift, SFNTVHEA.swift, TTCDecoder.swift, WOFFDecoder.swift, FontFaceEncoder.swift, OTFEncoder.swift, WOFFEncoder.swift, Font.swift, FontCollection.swift, AnyImage.swift, Image.swift, ImageOrientation.swift, ImageProtocol.swift, RawPixelProtocol.swift, Resampling.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling ICC Creator.swift, ICCColorSpace.swift, iccProfile.swift, iccCurve.swift, iccLUTTransform.swift, iccMultiLocalizedUnicode.swift, iccNamedColor.swift, iccTagData.swift, iccTextDescription.swift, iccTransform.swift, iccDateTimeNumber.swift, iccMatrix.swift, iccType.swift, iccXYZNumber.swift, LinearToneColorSpace.swift, PredefinedColorSpace.swift, WrappedColorSpace.swift, ColorSpaceProtocol.swift, Illuminant.swift, RenderingIntent.swift, DrawableContext.swift, Gradient.swift, MeshGradient.swift, Pattern.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling TIFFDecoder.swift, WEBPDecoder.swift, BMPEncoder.swift, ImageRepEncoder.swift, JPEGEncoder.swift, PNGEncoder.swift, TIFFEncoder.swift, WEBPEncoder.swift, ImageRep.swift, FastDecode.swift, _fast_decode_alpha_first.swift, _fast_decode_alpha_last.swift, _fast_decode_alpha_none.swift, _fast_decode_float.swift, _fast_decode_pixel.swift, RawBitmap.swift, SlowDecode.swift, _aligned_channel.swift, _aligned_float_channel.swift, _channel_to_double.swift, _float_channel.swift, _unsigned_aligned_channel.swift, _unsigned_channel.swift, _unsigned_pixel.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling AvailableColorSpaces.swift, AvailableFonts.swift, Prespecialize.swift, SVGContext.swift, SVGBlendEffect.swift, SVGColorMatrixEffect.swift, SVGComponentTransferEffect.swift, SVGConvolveMatrixEffect.swift, SVGDisplacementMapEffect.swift, SVGDropShadowEffect.swift, SVGEffect.swift, SVGFloodEffect.swift, SVGGaussianBlurEffect.swift, SVGHueRotateEffect.swift, SVGImageEffect.swift, SVGLightingEffect.swift, SVGLuminanceToAlphaEffect.swift, SVGMergeEffect.swift, SVGMorphologyEffect.swift, SVGOffsetEffect.swift, SVGSaturateEffect.swift, SVGTileEffect.swift, SVGTurbulenceEffect.swift, FixedNumber.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling DrawGradient.swift, DrawImage.swift, DrawMeshGradient.swift, DrawPattern.swift, DrawShadow.swift, DrawShape.swift, ImageContext.swift, ImageContextExtension.swift, PixelBlender.swift, Rasterizer.swift, Rendering.swift, SetClip.swift, Stencil.swift, BayerDithering.swift, BilateralFilter.swift, ColorSeparation.swift, DifferenceOfGaussian.swift, DisplacementMap.swift, GaussianBlur.swift, ImageConvolution.swift, LaplacianOfGaussian.swift, SVGTurbulence.swift, Underpainting.swift, kMeansClustering.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling SwiftPlayground.swift, AnyColor.swift, Color.swift, ColorProtocol.swift, PredefinedColor.swift, ColorBlendKernel.swift, ColorBlendMode.swift, ColorModel.swift, CMYColorModel.swift, CMYKColorModel.swift, DeviceNColorModel.swift, GrayColorModel.swift, LabColorModel.swift, LuvColorModel.swift, RGBColorModel.swift, XYZColorModel.swift, YCbCrColorModel.swift, YxyColorModel.swift, ColorCompositingKernel.swift, ColorCompositingMode.swift, ColorPixel.swift, Float16ColorPixel.swift, Float32ColorPixel.swift, Float64ColorPixel.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling Resolution.swift, StencilTexture.swift, Texture.swift, TextureProtocol.swift, GrayPixelDecoder.swift, PNGChunk.swift, PNGFilter0.swift, PNGInterlace.swift, PNGRegion.swift, RGBPixelDecoder.swift, TIFFCompression.swift, TIFFLZWCompression.swift, TIFFPackBitsCompression.swift, TIFFEncodablePixel.swift, TIFFPrediction.swift, TIFFRawRepresentable.swift, AnimatedImage.swift, PNGAnimatedEncoder.swift, WEBPAnimatedEncoder.swift, APNGDecoder.swift, BMPDecoder.swift, ImageRepDecoder.swift, JPEGDecoder.swift, PNGDecoder.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling SVGNoiseGenerator.swift, SimplexNoise.swift, PDFContext.swift, PDFContextEncoder.swift, PDFContextImage.swift, PDFContextPage.swift, PDFDecoder.swift, PDFDocument.swift, ASCII85Filter.swift, ASCIIHexFilter.swift, PDFFilter.swift, PDFName.swift, PDFNumber.swift, PDFObject.swift, PDFPage.swift, PDFBitmap.swift, PDFColorSpace.swift, PDFCommand.swift, PDFDrawPage.swift, PDFFunction.swift, PDFRenderer.swift, PDFStream.swift, PDFString.swift, PDFXref.swift (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Emitting module for DoggieGraphics (in target 'DoggieGraphics' from project 'Doggie')
SwiftDriver\ Compilation\ Requirements DoggieGraphics normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DoggieGraphics -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/brotli.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/libwebp.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/zlib_c.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics-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/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.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/Doggie.build/Debug/DoggieGraphics.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/brotli/dependencies/brotli/c/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libwebp/dependencies/libwebp/src/webp -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libjpeg/Sources/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/zlib_c/include -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/Doggie.build/Debug/DoggieGraphics.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation DoggieGraphics normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DoggieGraphics -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/brotli.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/libwebp.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/zlib_c.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics-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/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.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/Doggie.build/Debug/DoggieGraphics.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/brotli/dependencies/brotli/c/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libwebp/dependencies/libwebp/src/webp -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libjpeg/Sources/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/zlib_c/include -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/Doggie.build/Debug/DoggieGraphics.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/DoggieGraphics-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics-Swift.h (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/DoggieGraphics-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.swiftmodule (in target 'DoggieGraphics' from project 'Doggie')
    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/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.abi.json (in target 'DoggieGraphics' from project 'Doggie')
    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/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.swiftdoc (in target 'DoggieGraphics' from project 'Doggie')
    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/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.swiftsourceinfo (in target 'DoggieGraphics' from project 'Doggie')
    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/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.o normal (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.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 -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.o
SwiftDriver DoggieGPU normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DoggieGPU -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/brotli.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/libwebp.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/zlib_c.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU-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/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.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/Doggie.build/Debug/DoggieGPU.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/brotli/dependencies/brotli/c/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libwebp/dependencies/libwebp/src/webp -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libjpeg/Sources/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/zlib_c/include -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/Doggie.build/Debug/DoggieGPU.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ SVGTurbulenceKernel.swift,\ ShaderLoader.swift,\ WrapTileKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/WrapTileKernel.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
        private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
        private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var cache: [SVGNoiseGeneratorBuffer] = []
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
        static var cache: [SVGNoiseGeneratorBuffer] = []
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
        static var cache: [SVGNoiseGeneratorBuffer] = []
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var cache: [SVGNoiseGeneratorBuffer] = []
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:31:24: warning: static property 'libraries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:31:24: note: convert 'libraries' to a 'let' constant to make 'Sendable' shared state immutable
    private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:31:24: note: add '@MainActor' to make static property 'libraries' part of global actor 'MainActor'
    private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:31:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:32:24: warning: static property 'pipelines' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:32:24: note: convert 'pipelines' to a 'let' constant to make 'Sendable' shared state immutable
    private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:32:24: note: add '@MainActor' to make static property 'pipelines' part of global actor 'MainActor'
    private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:32:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/WrapTileKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
@interface MTLFunctionConstantValues : NSObject <NSCopying>
           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        private static var function_constants: [String: MTLFunctionConstantValues] = [:]
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
        private static var function_constants: [String: MTLFunctionConstantValues] = [:]
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
        private static var function_constants: [String: MTLFunctionConstantValues] = [:]
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var function_constants: [String: MTLFunctionConstantValues] = [:]
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
@interface MTLFunctionConstantValues : NSObject <NSCopying>
           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
        private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
        private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var cache: [SVGNoiseGeneratorBuffer] = []
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
        static var cache: [SVGNoiseGeneratorBuffer] = []
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
        static var cache: [SVGNoiseGeneratorBuffer] = []
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var cache: [SVGNoiseGeneratorBuffer] = []
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:31:24: warning: static property 'libraries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:31:24: note: convert 'libraries' to a 'let' constant to make 'Sendable' shared state immutable
    private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:31:24: note: add '@MainActor' to make static property 'libraries' part of global actor 'MainActor'
    private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:31:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:32:24: warning: static property 'pipelines' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:32:24: note: convert 'pipelines' to a 'let' constant to make 'Sendable' shared state immutable
    private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:32:24: note: add '@MainActor' to make static property 'pipelines' part of global actor 'MainActor'
    private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:32:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift:105:24: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'CIImage' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let black: CIImage = {
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
@interface CIImage : NSObject <NSSecureCoding, NSCopying>
           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift:105:24: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
    private static let black: CIImage = {
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift:105:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let black: CIImage = {
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: warning: static property 'pipeline' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: note: convert 'pipeline' to a 'let' constant to make 'Sendable' shared state immutable
    private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: note: add '@MainActor' to make static property 'pipeline' part of global actor 'MainActor'
    private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ GPContextExtension.swift,\ GPContextPattern.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContextExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContextPattern.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContextExtension.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContextPattern.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ MorphologyKernel.swift,\ PalettizeKernel.swift,\ SVGComponentTransferKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/MorphologyKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/PalettizeKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/MorphologyKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/PalettizeKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
@interface MTLFunctionConstantValues : NSObject <NSCopying>
           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ MeshGradientKernel.swift,\ MTLDevice.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/Metal/MTLDevice.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: warning: static property 'pipeline' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: note: convert 'pipeline' to a 'let' constant to make 'Sendable' shared state immutable
    private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: note: add '@MainActor' to make static property 'pipeline' part of global actor 'MainActor'
    private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/Metal/MTLDevice.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ CGPathProcessorKernel.swift,\ GPContext.swift,\ GPContextBase.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/CGPathProcessorKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContextBase.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/CGPathProcessorKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift:105:24: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'CIImage' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let black: CIImage = {
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
@interface CIImage : NSObject <NSSecureCoding, NSCopying>
           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift:105:24: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
    private static let black: CIImage = {
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift:105:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let black: CIImage = {
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContextBase.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SVGConvolveKernel.swift,\ SVGDisplacementMapKernel.swift,\ SVGLightingKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGLightingKernel.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        private static var function_constants: [String: MTLFunctionConstantValues] = [:]
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
        private static var function_constants: [String: MTLFunctionConstantValues] = [:]
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
        private static var function_constants: [String: MTLFunctionConstantValues] = [:]
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var function_constants: [String: MTLFunctionConstantValues] = [:]
                           ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
@interface MTLFunctionConstantValues : NSObject <NSCopying>
           ^
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let function_constants: [String: MTLFunctionConstantValues] = {
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGLightingKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ BilateralFilter.swift,\ CIImage.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/BilateralFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/CIImage.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DerivedSources/resource_bundle_accessor.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/BilateralFilter.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/CIImage.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/SIMD.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ CIVector.swift,\ ConvolveKernel.swift,\ CoreImage.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/CIVector.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ConvolveKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/CoreImage.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/CIVector.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ConvolveKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/CoreImage.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ kMeansClusteringKernel.swift,\ Exported.swift,\ CGContextProcessorKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/kMeansClusteringKernel.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/Exported.swift /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/CGContextProcessorKernel.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/kMeansClusteringKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/Exported.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/CGContextProcessorKernel.swift (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Packed.swift, SIMD.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling GPContextExtension.swift, GPContextPattern.swift (in target 'DoggieGPU' from project 'Doggie')
ExtractAppIntentsMetadata (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DoggieGraphics --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.DoggieGraphics --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/DoggieGraphics.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/DoggieGraphics.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGraphics.build/Objects-normal/arm64/DoggieGraphics.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 23:27:07.950 appintentsmetadataprocessor[1653:8068] Starting appintentsmetadataprocessor export
2025-04-29 23:27:07.998 appintentsmetadataprocessor[1653:8068] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling SVGTurbulenceKernel.swift, ShaderLoader.swift, WrapTileKernel.swift (in target 'DoggieGPU' from project 'Doggie')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.o (in target 'DoggieGraphics' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGraphics.o
SwiftDriverJobDiscovery normal arm64 Emitting module for DoggieGPU (in target 'DoggieGPU' from project 'Doggie')
SwiftDriver\ Compilation\ Requirements DoggieGPU normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DoggieGPU -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/brotli.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/libwebp.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/zlib_c.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU-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/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.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/Doggie.build/Debug/DoggieGPU.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/brotli/dependencies/brotli/c/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libwebp/dependencies/libwebp/src/webp -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libjpeg/Sources/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/zlib_c/include -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/Doggie.build/Debug/DoggieGPU.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling MeshGradientKernel.swift, MTLDevice.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling CGPathProcessorKernel.swift, GPContext.swift, GPContextBase.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/DoggieGPU-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU-Swift.h (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/DoggieGPU-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.abi.json (in target 'DoggieGPU' from project 'Doggie')
    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/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.swiftdoc (in target 'DoggieGPU' from project 'Doggie')
    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/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.swiftmodule (in target 'DoggieGPU' from project 'Doggie')
    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/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.swiftsourceinfo (in target 'DoggieGPU' from project 'Doggie')
    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/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriver Doggie normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Doggie' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Doggie -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/brotli.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/libwebp.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/zlib_c.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie-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/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.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/Doggie.build/Debug/Doggie.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/brotli/dependencies/brotli/c/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libwebp/dependencies/libwebp/src/webp -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libjpeg/Sources/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/zlib_c/include -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/Doggie.build/Debug/Doggie.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ Doggie (in target 'Doggie' from project 'Doggie')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Doggie/Exported.swift (in target 'Doggie' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling kMeansClusteringKernel.swift, Exported.swift, CGContextProcessorKernel.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Emitting module for Doggie (in target 'Doggie' from project 'Doggie')
SwiftDriver\ Compilation\ Requirements Doggie normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Doggie' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Doggie -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/brotli.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/libwebp.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/zlib_c.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie-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/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.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/Doggie.build/Debug/Doggie.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/brotli/dependencies/brotli/c/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libwebp/dependencies/libwebp/src/webp -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libjpeg/Sources/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/zlib_c/include -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/Doggie.build/Debug/Doggie.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Doggie-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie-Swift.h (in target 'Doggie' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Doggie-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.abi.json (in target 'Doggie' from project 'Doggie')
    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/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.swiftdoc (in target 'Doggie' from project 'Doggie')
    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/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.swiftmodule (in target 'Doggie' from project 'Doggie')
    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/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.swiftsourceinfo (in target 'Doggie' from project 'Doggie')
    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/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Exported.swift (in target 'Doggie' from project 'Doggie')
SwiftDriver\ Compilation Doggie normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Doggie' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Doggie -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/brotli.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/libwebp.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/zlib_c.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie-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/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.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/Doggie.build/Debug/Doggie.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/brotli/dependencies/brotli/c/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libwebp/dependencies/libwebp/src/webp -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libjpeg/Sources/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/zlib_c/include -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/Doggie.build/Debug/Doggie.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CIVector.swift, ConvolveKernel.swift, CoreImage.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling MorphologyKernel.swift, PalettizeKernel.swift, SVGComponentTransferKernel.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling SVGConvolveKernel.swift, SVGDisplacementMapKernel.swift, SVGLightingKernel.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, BilateralFilter.swift, CIImage.swift (in target 'DoggieGPU' from project 'Doggie')
SwiftDriver\ Compilation DoggieGPU normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DoggieGPU -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/brotli.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/libwebp.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/zlib_c.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU-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/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.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/Doggie.build/Debug/DoggieGPU.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/brotli/dependencies/brotli/c/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libwebp/dependencies/libwebp/src/webp -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/libjpeg/Sources/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/zlib_c/include -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/Doggie.build/Debug/DoggieGPU.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.o normal (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.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 -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.o
ExtractAppIntentsMetadata (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DoggieGPU --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.DoggieGPU --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DoggieGPU.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/DoggieGPU.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/DoggieGPU.build/Objects-normal/arm64/DoggieGPU.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 23:27:09.807 appintentsmetadataprocessor[1658:8117] Starting appintentsmetadataprocessor export
2025-04-29 23:27:09.840 appintentsmetadataprocessor[1658:8117] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.o (in target 'DoggieGPU' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/DoggieGPU.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.o normal (in target 'Doggie' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.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 -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.o
ExtractAppIntentsMetadata (in target 'Doggie' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Doggie --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.Doggie --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Doggie.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Doggie.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Doggie.build/Debug/Doggie.build/Objects-normal/arm64/Doggie.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 23:27:09.889 appintentsmetadataprocessor[1661:8132] Starting appintentsmetadataprocessor export
2025-04-29 23:27:09.921 appintentsmetadataprocessor[1661:8132] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.o (in target 'Doggie' from project 'Doggie')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Doggie.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:ec78d1320aed48cdb484f9b0cb72298044177b73, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:ec78d1320aed48cdb484f9b0cb72298044177b73, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:ec78d1320aed48cdb484f9b0cb72298044177b73, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:ec78d1320aed48cdb484f9b0cb72298044177b73, name:My Mac }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-numerics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-numerics"
    },
    {
      "identity" : "swift-algorithms",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-algorithms"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections"
    },
    {
      "identity" : "float16",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/Float16"
    },
    {
      "identity" : "brotli",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/brotli"
    },
    {
      "identity" : "libwebp",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/libwebp"
    },
    {
      "identity" : "libjpeg",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/libjpeg"
    }
  ],
  "manifest_display_name" : "Doggie",
  "name" : "Doggie",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "DoggieCore",
      "targets" : [
        "DoggieCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieMath",
      "targets" : [
        "DoggieMath"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieGeometry",
      "targets" : [
        "DoggieGeometry"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieGraphics",
      "targets" : [
        "DoggieGraphics"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieGPU",
      "targets" : [
        "DoggieGPU"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Doggie",
      "targets" : [
        "Doggie"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "zlib_c",
      "module_type" : "ClangTarget",
      "name" : "zlib_c",
      "path" : "Sources/zlib_c",
      "product_memberships" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "empty.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieTests",
      "module_type" : "SwiftTarget",
      "name" : "DoggieTests",
      "path" : "Tests/DoggieTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/DoggieTests/images",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ArithmeticTest.swift",
        "BrotliTest.swift",
        "CollectionTest.swift",
        "ColorSpaceTest.swift",
        "ColorTest.swift",
        "ConcurrencyTest.swift",
        "FontTest.swift",
        "FourierSpeedTest.swift",
        "FourierTest.swift",
        "GeometryTest.swift",
        "ImageCodecTest.swift",
        "ImageContextTest.swift",
        "ImageTest.swift",
        "JsonTest.swift",
        "LayoutTest.swift",
        "MappedBufferTest.swift",
        "MathTest.swift",
        "PDFContextTest.swift",
        "PolynomialTest.swift",
        "ShapeRegionTest.swift",
        "XMLTest.swift",
        "ZlibTest.swift"
      ],
      "target_dependencies" : [
        "Doggie"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DoggieMath",
      "module_type" : "SwiftTarget",
      "name" : "DoggieMath",
      "path" : "Sources/DoggieMath",
      "product_memberships" : [
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "Accelerate/CircularConvolve.swift",
        "Accelerate/CircularConvolve2D.swift",
        "Accelerate/CooleyTukey2D.swift",
        "Accelerate/DirectConvolve.swift",
        "Accelerate/LinearAlgebra.swift",
        "Accelerate/Move.swift",
        "Accelerate/OverlapAddConvolve.swift",
        "Accelerate/Radix2CooleyTukey/HalfInverseRadix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/HalfRadix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/InverseRadix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/Radix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_16.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_2.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_4.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_8.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_16.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_2.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_4.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_8.swift",
        "Accelerate/Wrapper.swift",
        "Arithmetic.swift",
        "Complex.swift",
        "Exported.swift",
        "Extension.swift",
        "Fourier.swift",
        "Maths.swift",
        "Polynomial.swift",
        "Rational.swift",
        "SafeFunction.swift"
      ],
      "target_dependencies" : [
        "DoggieCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieGraphics",
      "module_type" : "SwiftTarget",
      "name" : "DoggieGraphics",
      "path" : "Sources/DoggieGraphics",
      "product_dependencies" : [
        "libwebp",
        "libjpeg"
      ],
      "product_memberships" : [
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "ApplePlatform/AppleExported.swift",
        "ApplePlatform/Graphic/CGColor.swift",
        "ApplePlatform/Graphic/CGColorSpace.swift",
        "ApplePlatform/Graphic/CGContext.swift",
        "ApplePlatform/Graphic/CGFont.swift",
        "ApplePlatform/Graphic/CGGradient.swift",
        "ApplePlatform/Graphic/CGPattern.swift",
        "ApplePlatform/Graphic/CGShading.swift",
        "ApplePlatform/Graphic/CoreText.swift",
        "ApplePlatform/Image/CGImage.swift",
        "ApplePlatform/Image/CVPixelFormat.swift",
        "ApplePlatform/Image/CoreVideo.swift",
        "ApplePlatform/Image/IOSurface.swift",
        "ApplePlatform/Image/NSImage.swift",
        "ApplePlatform/Image/UIImage.swift",
        "ApplePlatform/ImageIO/AVDepthData.swift",
        "ApplePlatform/ImageIO/AVPortraitEffectsMatte.swift",
        "ApplePlatform/ImageIO/CGAnimatedImage.swift",
        "ApplePlatform/ImageIO/CGImageDestination.swift",
        "ApplePlatform/ImageIO/CGImageRep.swift",
        "ApplePlatform/ImageIO/CGImageSource.swift",
        "ApplePlatform/Metal.swift",
        "ApplePlatform/Performance/CIContext.swift",
        "ApplePlatform/Performance/CIContextPool.swift",
        "ApplePlatform/SwiftPlayground.swift",
        "Color/AnyColor.swift",
        "Color/Color.swift",
        "Color/ColorProtocol.swift",
        "Color/PredefinedColor.swift",
        "ColorModel/ColorBlendKernel.swift",
        "ColorModel/ColorBlendMode.swift",
        "ColorModel/ColorModel.swift",
        "ColorModel/Model/CMYColorModel.swift",
        "ColorModel/Model/CMYKColorModel.swift",
        "ColorModel/Model/DeviceNColorModel.swift",
        "ColorModel/Model/GrayColorModel.swift",
        "ColorModel/Model/LabColorModel.swift",
        "ColorModel/Model/LuvColorModel.swift",
        "ColorModel/Model/RGBColorModel.swift",
        "ColorModel/Model/XYZColorModel.swift",
        "ColorModel/Model/YCbCrColorModel.swift",
        "ColorModel/Model/YxyColorModel.swift",
        "ColorPixel/ColorCompositingKernel.swift",
        "ColorPixel/ColorCompositingMode.swift",
        "ColorPixel/ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/Float16ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/Float32ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/Float64ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/FloatComponentPixel.swift",
        "ColorPixel/Gray/Gray16ColorPixel.swift",
        "ColorPixel/Gray/Gray32ColorPixel.swift",
        "ColorPixel/Gray/GrayColorPixel.swift",
        "ColorPixel/RGB/ABGR32ColorPixel.swift",
        "ColorPixel/RGB/ARGB32ColorPixel.swift",
        "ColorPixel/RGB/ARGB64ColorPixel.swift",
        "ColorPixel/RGB/BGRA32ColorPixel.swift",
        "ColorPixel/RGB/RGBA32ColorPixel.swift",
        "ColorPixel/RGB/RGBA64ColorPixel.swift",
        "ColorPixel/RGB/RGBColorPixel.swift",
        "ColorSpace/AnyColorSpace.swift",
        "ColorSpace/ChromaticAdaptationAlgorithm.swift",
        "ColorSpace/ColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIELabColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIELuvColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIEXYZColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIEYxyColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CalibratedGrayColorSpace/CalibratedGrayColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/AdobeRGB.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/CalibratedRGBColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/displayP3.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift",
        "ColorSpace/ColorSpaceBase/ColorSpaceBaseProtocol.swift",
        "ColorSpace/ColorSpaceBase/ICC/ICC Creator.swift",
        "ColorSpace/ColorSpaceBase/ICC/ICCColorSpace.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccProfile.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccCurve.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccLUTTransform.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccMultiLocalizedUnicode.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccNamedColor.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTagData.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTextDescription.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTransform.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccDateTimeNumber.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccMatrix.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccType.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccXYZNumber.swift",
        "ColorSpace/ColorSpaceBase/LinearToneColorSpace.swift",
        "ColorSpace/ColorSpaceBase/PredefinedColorSpace.swift",
        "ColorSpace/ColorSpaceBase/WrappedColorSpace.swift",
        "ColorSpace/ColorSpaceProtocol.swift",
        "ColorSpace/Illuminant.swift",
        "ColorSpace/RenderingIntent.swift",
        "DrawableContext/DrawableContext.swift",
        "DrawableContext/Gradient.swift",
        "DrawableContext/MeshGradient.swift",
        "DrawableContext/Pattern.swift",
        "DrawableContext/Stroke.swift",
        "Exported.swift",
        "Font/Decoder/CFF2Decoder/CFF2Decoder.swift",
        "Font/Decoder/CFF2Decoder/CFF2INDEX.swift",
        "Font/Decoder/CFFDecoder/CFFCharStrings.swift",
        "Font/Decoder/CFFDecoder/CFFDICT.swift",
        "Font/Decoder/CFFDecoder/CFFDecoder.swift",
        "Font/Decoder/CFFDecoder/CFFEncoding.swift",
        "Font/Decoder/CFFDecoder/CFFFDSelect.swift",
        "Font/Decoder/CFFDecoder/CFFFontFace.swift",
        "Font/Decoder/CFFDecoder/CFFINDEX.swift",
        "Font/Decoder/FontDecoder.swift",
        "Font/Decoder/OpenTypeDecoder.swift",
        "Font/Decoder/SFNTFontFace/AATStateTable.swift",
        "Font/Decoder/SFNTFontFace/OTFFeatureList.swift",
        "Font/Decoder/SFNTFontFace/OTFGDEF.swift",
        "Font/Decoder/SFNTFontFace/OTFGPOS.swift",
        "Font/Decoder/SFNTFontFace/OTFGSUB.swift",
        "Font/Decoder/SFNTFontFace/OTFLookupList.swift",
        "Font/Decoder/SFNTFontFace/OTFScriptList.swift",
        "Font/Decoder/SFNTFontFace/SFNTCMAP.swift",
        "Font/Decoder/SFNTFontFace/SFNTFEAT.swift",
        "Font/Decoder/SFNTFontFace/SFNTFontFace.swift",
        "Font/Decoder/SFNTFontFace/SFNTGLYF.swift",
        "Font/Decoder/SFNTFontFace/SFNTHEAD.swift",
        "Font/Decoder/SFNTFontFace/SFNTHHEA.swift",
        "Font/Decoder/SFNTFontFace/SFNTLTAG.swift",
        "Font/Decoder/SFNTFontFace/SFNTMAXP.swift",
        "Font/Decoder/SFNTFontFace/SFNTMORX.swift",
        "Font/Decoder/SFNTFontFace/SFNTNAME.swift",
        "Font/Decoder/SFNTFontFace/SFNTOS2.swift",
        "Font/Decoder/SFNTFontFace/SFNTPOST.swift",
        "Font/Decoder/SFNTFontFace/SFNTPlatform.swift",
        "Font/Decoder/SFNTFontFace/SFNTSBIX.swift",
        "Font/Decoder/SFNTFontFace/SFNTVHEA.swift",
        "Font/Decoder/TTCDecoder.swift",
        "Font/Decoder/WOFFDecoder.swift",
        "Font/Encoder/FontFaceEncoder.swift",
        "Font/Encoder/OTFEncoder.swift",
        "Font/Encoder/WOFFEncoder.swift",
        "Font/Font.swift",
        "Font/FontCollection.swift",
        "Image/AnyImage.swift",
        "Image/Image.swift",
        "Image/ImageOrientation.swift",
        "Image/ImageProtocol.swift",
        "Image/RawPixelProtocol.swift",
        "Image/Resampling.swift",
        "Image/Resolution.swift",
        "Image/StencilTexture.swift",
        "Image/Texture.swift",
        "Image/TextureProtocol.swift",
        "ImageCodec/Algorithm/GrayPixelDecoder.swift",
        "ImageCodec/Algorithm/PNG/PNGChunk.swift",
        "ImageCodec/Algorithm/PNG/PNGFilter0.swift",
        "ImageCodec/Algorithm/PNG/PNGInterlace.swift",
        "ImageCodec/Algorithm/PNG/PNGRegion.swift",
        "ImageCodec/Algorithm/RGBPixelDecoder.swift",
        "ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFCompression.swift",
        "ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFLZWCompression.swift",
        "ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFPackBitsCompression.swift",
        "ImageCodec/Algorithm/TIFF/TIFFEncodablePixel.swift",
        "ImageCodec/Algorithm/TIFF/TIFFPrediction.swift",
        "ImageCodec/Algorithm/TIFF/TIFFRawRepresentable.swift",
        "ImageCodec/AnimatedEncoder/AnimatedImage.swift",
        "ImageCodec/AnimatedEncoder/PNGAnimatedEncoder.swift",
        "ImageCodec/AnimatedEncoder/WEBPAnimatedEncoder.swift",
        "ImageCodec/Decoder/APNGDecoder.swift",
        "ImageCodec/Decoder/BMPDecoder.swift",
        "ImageCodec/Decoder/ImageRepDecoder.swift",
        "ImageCodec/Decoder/JPEGDecoder.swift",
        "ImageCodec/Decoder/PNGDecoder.swift",
        "ImageCodec/Decoder/TIFFDecoder.swift",
        "ImageCodec/Decoder/WEBPDecoder.swift",
        "ImageCodec/Encoder/BMPEncoder.swift",
        "ImageCodec/Encoder/ImageRepEncoder.swift",
        "ImageCodec/Encoder/JPEGEncoder.swift",
        "ImageCodec/Encoder/PNGEncoder.swift",
        "ImageCodec/Encoder/TIFFEncoder.swift",
        "ImageCodec/Encoder/WEBPEncoder.swift",
        "ImageCodec/ImageRep.swift",
        "ImageCodec/RawBitmap/FastDecode.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_first.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_last.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_none.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_float.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_pixel.swift",
        "ImageCodec/RawBitmap/RawBitmap.swift",
        "ImageCodec/RawBitmap/SlowDecode.swift",
        "ImageCodec/RawBitmap/SlowDecode/_aligned_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_aligned_float_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_channel_to_double.swift",
        "ImageCodec/RawBitmap/SlowDecode/_float_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_unsigned_aligned_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_unsigned_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_unsigned_pixel.swift",
        "ImageContext/DrawGradient.swift",
        "ImageContext/DrawImage.swift",
        "ImageContext/DrawMeshGradient.swift",
        "ImageContext/DrawPattern.swift",
        "ImageContext/DrawShadow.swift",
        "ImageContext/DrawShape.swift",
        "ImageContext/ImageContext.swift",
        "ImageContext/ImageContextExtension.swift",
        "ImageContext/PixelBlender.swift",
        "ImageContext/Rasterizer.swift",
        "ImageContext/Rendering.swift",
        "ImageContext/SetClip.swift",
        "ImageContext/Stencil.swift",
        "ImageFilter/BayerDithering.swift",
        "ImageFilter/BilateralFilter.swift",
        "ImageFilter/ColorSeparation.swift",
        "ImageFilter/DifferenceOfGaussian.swift",
        "ImageFilter/DisplacementMap.swift",
        "ImageFilter/GaussianBlur.swift",
        "ImageFilter/ImageConvolution.swift",
        "ImageFilter/LaplacianOfGaussian.swift",
        "ImageFilter/SVGTurbulence.swift",
        "ImageFilter/Underpainting.swift",
        "ImageFilter/kMeansClustering.swift",
        "Noise/SVGNoiseGenerator.swift",
        "Noise/SimplexNoise.swift",
        "PDFContext/PDFContext.swift",
        "PDFContext/PDFContextEncoder.swift",
        "PDFContext/PDFContextImage.swift",
        "PDFContext/PDFContextPage.swift",
        "PDFDocument/PDFDecoder.swift",
        "PDFDocument/PDFDocument.swift",
        "PDFDocument/PDFFilter/ASCII85Filter.swift",
        "PDFDocument/PDFFilter/ASCIIHexFilter.swift",
        "PDFDocument/PDFFilter/PDFFilter.swift",
        "PDFDocument/PDFName.swift",
        "PDFDocument/PDFNumber.swift",
        "PDFDocument/PDFObject.swift",
        "PDFDocument/PDFPage.swift",
        "PDFDocument/PDFRenderer/PDFBitmap.swift",
        "PDFDocument/PDFRenderer/PDFColorSpace.swift",
        "PDFDocument/PDFRenderer/PDFCommand.swift",
        "PDFDocument/PDFRenderer/PDFDrawPage.swift",
        "PDFDocument/PDFRenderer/PDFFunction.swift",
        "PDFDocument/PDFRenderer/PDFRenderer.swift",
        "PDFDocument/PDFStream.swift",
        "PDFDocument/PDFString.swift",
        "PDFDocument/PDFXref.swift",
        "Platform/AvailableColorSpaces.swift",
        "Platform/AvailableFonts.swift",
        "Prespecialize.swift",
        "SVGContext/SVGContext.swift",
        "SVGContext/SVGEffect/SVGBlendEffect.swift",
        "SVGContext/SVGEffect/SVGColorMatrixEffect.swift",
        "SVGContext/SVGEffect/SVGComponentTransferEffect.swift",
        "SVGContext/SVGEffect/SVGConvolveMatrixEffect.swift",
        "SVGContext/SVGEffect/SVGDisplacementMapEffect.swift",
        "SVGContext/SVGEffect/SVGDropShadowEffect.swift",
        "SVGContext/SVGEffect/SVGEffect.swift",
        "SVGContext/SVGEffect/SVGFloodEffect.swift",
        "SVGContext/SVGEffect/SVGGaussianBlurEffect.swift",
        "SVGContext/SVGEffect/SVGHueRotateEffect.swift",
        "SVGContext/SVGEffect/SVGImageEffect.swift",
        "SVGContext/SVGEffect/SVGLightingEffect.swift",
        "SVGContext/SVGEffect/SVGLuminanceToAlphaEffect.swift",
        "SVGContext/SVGEffect/SVGMergeEffect.swift",
        "SVGContext/SVGEffect/SVGMorphologyEffect.swift",
        "SVGContext/SVGEffect/SVGOffsetEffect.swift",
        "SVGContext/SVGEffect/SVGSaturateEffect.swift",
        "SVGContext/SVGEffect/SVGTileEffect.swift",
        "SVGContext/SVGEffect/SVGTurbulenceEffect.swift",
        "Serialization/FixedNumber.swift"
      ],
      "target_dependencies" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieGeometry",
      "module_type" : "SwiftTarget",
      "name" : "DoggieGeometry",
      "path" : "Sources/DoggieGeometry",
      "product_memberships" : [
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "ApplePlatform/AppleExported.swift",
        "ApplePlatform/Geometry/CGAffineTransform.swift",
        "ApplePlatform/Geometry/CGPath.swift",
        "ApplePlatform/Geometry/CGPoint.swift",
        "ApplePlatform/Geometry/CGRect.swift",
        "ApplePlatform/Geometry/CGSize.swift",
        "ApplePlatform/SwiftPlayground.swift",
        "Arithmetic.swift",
        "Bezier/Bezier.swift",
        "Bezier/BezierArc.swift",
        "Bezier/BezierOffset.swift",
        "Bezier/BezierProtocol.swift",
        "Bezier/CubicBezier.swift",
        "Bezier/CubicBezierPatch.swift",
        "Bezier/CubicBezierTriangularPatch.swift",
        "Bezier/LineSegment.swift",
        "Bezier/QuadBezier.swift",
        "Exported.swift",
        "Extension.swift",
        "Geometry/EdgeInsets.swift",
        "Geometry/Ellipse.swift",
        "Geometry/Geometry.swift",
        "Geometry/Matrix.swift",
        "Geometry/Point.swift",
        "Geometry/Rect.swift",
        "Geometry/SDTransform.swift",
        "Geometry/Size.swift",
        "Geometry/Tensor.swift",
        "Geometry/Vector.swift",
        "Shape/PathCoder.swift",
        "Shape/PathStroke.swift",
        "Shape/SVGPathCoder.swift",
        "Shape/Shape.swift",
        "Shape/ShapeSegment.swift",
        "Shape/ShapeTweening.swift",
        "Shape/ShapeWinding.swift",
        "Shape/VariableRoundStroke.swift",
        "ShapeRegion/BreakLoop.swift",
        "ShapeRegion/PathBuilder.swift",
        "ShapeRegion/ShapeRegion.swift",
        "ShapeRegion/ShapeRegionOp.swift",
        "ShapeRegion/ShapeRegionWinding.swift"
      ],
      "target_dependencies" : [
        "DoggieCore",
        "DoggieMath"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieGPU",
      "module_type" : "SwiftTarget",
      "name" : "DoggieGPU",
      "path" : "Sources/DoggieGPU",
      "product_memberships" : [
        "DoggieGPU",
        "Doggie"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/BilateralFilter.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/PalettizeKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGComponentTransferKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGConvolveKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGDisplacementMapKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGLightingKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGTurbulenceKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/WrapTileKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/kMeansClusteringKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/Shaders/MeshGradientKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CoreImage/BilateralFilter.swift",
        "CoreImage/CIImage.swift",
        "CoreImage/CIVector.swift",
        "CoreImage/ConvolveKernel.swift",
        "CoreImage/CoreImage.swift",
        "CoreImage/MorphologyKernel.swift",
        "CoreImage/PalettizeKernel.swift",
        "CoreImage/SVGComponentTransferKernel.swift",
        "CoreImage/SVGConvolveKernel.swift",
        "CoreImage/SVGDisplacementMapKernel.swift",
        "CoreImage/SVGLightingKernel.swift",
        "CoreImage/SVGTurbulenceKernel.swift",
        "CoreImage/ShaderLoader.swift",
        "CoreImage/WrapTileKernel.swift",
        "CoreImage/kMeansClusteringKernel.swift",
        "Exported.swift",
        "GPContext/CGContextProcessorKernel.swift",
        "GPContext/CGPathProcessorKernel.swift",
        "GPContext/GPContext.swift",
        "GPContext/GPContextBase.swift",
        "GPContext/GPContextExtension.swift",
        "GPContext/GPContextPattern.swift",
        "GPContext/MeshGradientKernel.swift",
        "Metal/MTLDevice.swift",
        "Packed.swift",
        "SIMD.swift"
      ],
      "target_dependencies" : [
        "DoggieGraphics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieCore",
      "module_type" : "SwiftTarget",
      "name" : "DoggieCore",
      "path" : "Sources/DoggieCore",
      "product_dependencies" : [
        "RealModule",
        "Algorithms",
        "Collections",
        "Float16",
        "brotli"
      ],
      "product_memberships" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "ApplePlatform/AppleCompression.swift",
        "ApplePlatform/AppleExported.swift",
        "ApplePlatform/Metal.swift",
        "ApplePlatform/NSItemProvider.swift",
        "Compression/CompressionCodec.swift",
        "Compression/brotli/BrotliDecoder.swift",
        "Compression/brotli/BrotliEncoder.swift",
        "Compression/zlib/Deflate.swift",
        "Compression/zlib/Inflate.swift",
        "Compression/zlib/zlib.swift",
        "Concurrency/Sendable.swift",
        "Concurrency/SerialRunLoop.swift",
        "Concurrency/UnsafeSendable.swift",
        "Exported.swift",
        "Foundation/Algorithm.swift",
        "Foundation/Cache.swift",
        "Foundation/ContiguousBuffer.swift",
        "Foundation/Data.swift",
        "Foundation/Date.swift",
        "Foundation/FileManager.swift",
        "Foundation/Graph.swift",
        "Foundation/Locking.swift",
        "Foundation/MappedBuffer.swift",
        "Foundation/Parallel.swift",
        "Foundation/TypePunned.swift",
        "Foundation/TypedData.swift",
        "Foundation/URLComponents.swift",
        "Foundation/UUID.swift",
        "Foundation/WeakDictionary.swift",
        "Foundation/WeakSet.swift",
        "Json/Json.swift",
        "Json/JsonCodable.swift",
        "Json/JsonConvertible.swift",
        "Json/JsonNumber.swift",
        "Json/JsonNumberCodable.swift",
        "MediaType/FileExtension.swift",
        "MediaType/MIMEType.swift",
        "MediaType/MediaType.swift",
        "Serialization/BinaryFixedPoint.swift",
        "Serialization/ByteCodable.swift",
        "Serialization/Endianness.swift",
        "Serialization/Signature.swift",
        "Swift/CollectionExtension.swift",
        "Swift/Decimal.swift",
        "Swift/Dictionary.swift",
        "Swift/Equatable.swift",
        "Swift/FloatingPoint.swift",
        "Swift/Integer.swift",
        "Swift/OptionOneCollection.swift",
        "Swift/Policy.swift",
        "Swift/RawBitPattern.swift",
        "Swift/String.swift",
        "Swift/replaceValue.swift",
        "XML/SDXMLAttribute.swift",
        "XML/SDXMLDocument.swift",
        "XML/SDXMLElement.swift",
        "XML/SDXMLParser.swift",
        "XML/SDXMLString.swift"
      ],
      "target_dependencies" : [
        "zlib_c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Doggie",
      "module_type" : "SwiftTarget",
      "name" : "Doggie",
      "path" : "Sources/Doggie",
      "product_memberships" : [
        "Doggie"
      ],
      "sources" : [
        "Exported.swift"
      ],
      "target_dependencies" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.