The Swift Package Index logo.Swift Package Index

Build Information

Failed to build ShapeScript, reference 1.10.1 (00f0d2), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 4 Mar 2026 06:18:00 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ShapeScript-Package -destination platform=macOS,arch=arm64

Build Log

               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:694:16: warning: static property 'path' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let path: Symbols = _merge(pathShape, childTransform, font, pathPoints)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:694:16: note: add '@MainActor' to make static property 'path' part of global actor 'MainActor'
    static let path: Symbols = _merge(pathShape, childTransform, font, pathPoints)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:694:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let path: Symbols = _merge(pathShape, childTransform, font, pathPoints)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:695:16: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let definition: Symbols = _merge(root, pathPoints)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:695:16: note: add '@MainActor' to make static property 'definition' part of global actor 'MainActor'
    static let definition: Symbols = _merge(root, pathPoints)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:695:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let definition: Symbols = _merge(root, pathPoints)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:696:16: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let all: Symbols = _merge(definition, shape, path)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:696:16: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    static let all: Symbols = _merge(definition, shape, path)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:696:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let all: Symbols = _merge(definition, shape, path)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/String+Matching.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/String+Ordinals.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Mesh+IO.swift, Mesh+OBJ.swift, Mesh+OFF.swift, Mesh+STL.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 Compiling\ EvaluationDelegate.swift,\ Geometry.swift,\ GeometryCache.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationDelegate.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationDelegate.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:16:17: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    private let cache: LRUCache<Key, (mesh: Mesh, associatedData: [Material: Any])>
                ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:19:35: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    public var count: Int { cache.count }
                                  ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:24:22: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        self.cache = LRUCache(totalCostLimit: memoryLimit)
                     ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:24:22: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        self.cache = LRUCache(totalCostLimit: memoryLimit)
                     ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:39:21: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        get { cache.value(forKey: geometry.cacheKey)?.mesh }
                    ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:42:23: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
                cache.removeValue(forKey: geometry.cacheKey)
                      ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:45:19: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
            cache.setValue(
                  ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:55:19: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
            cache.value(forKey: geometry.cacheKey)?
                  ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:59:34: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
            if var value = cache.value(forKey: geometry.cacheKey) {
                                 ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:61:23: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
                cache.setValue(value, forKey: geometry.cacheKey)
                      ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
SwiftDriverJobDiscovery normal arm64 Compiling Color.swift, Euclid+AppKit.swift, Euclid+CoreGraphics.swift, Euclid+CoreText.swift, Euclid+RealityKit.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 Compiling\ Euclid+Extensions.swift,\ Euclid+SVGPath.swift,\ EvaluationContext.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+Extensions.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+SVGPath.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationContext.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+Extensions.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+SVGPath.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationContext.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling URL+FileType.swift, Value+JSON.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftDriver\ Compilation Euclid normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Euclid' from project 'Euclid')
    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 Euclid -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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 -suppress-warnings -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 -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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid-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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.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/Euclid.build/Debug/Euclid.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for ShapeScript (in target 'ShapeScript' from project 'ShapeScript')
SwiftDriver\ Compilation\ Requirements ShapeScript normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ShapeScript' from project 'ShapeScript')
    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 ShapeScript -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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.15 -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 -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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript-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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.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/ShapeScript.build/Debug/ShapeScript.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript-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/Euclid.o normal (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid
    /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 -w -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 -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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid_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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Euclid.o
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/ShapeScript-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript-Swift.h (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/ShapeScript-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling RandomSequence.swift, Scene+SceneKit.swift, Scene.swift (in target 'ShapeScript' from project 'ShapeScript')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ShapeScript.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.swiftmodule (in target 'ShapeScript' from project 'ShapeScript')
    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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ShapeScript.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ShapeScript.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.swiftdoc (in target 'ShapeScript' from project 'ShapeScript')
    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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ShapeScript.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ShapeScript.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.abi.json (in target 'ShapeScript' from project 'ShapeScript')
    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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ShapeScript.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ShapeScript.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.swiftsourceinfo (in target 'ShapeScript' from project 'ShapeScript')
    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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ShapeScript.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/LRUCache.o (in target 'LRUCache' from project 'LRUCache')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/LRUCache
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/LRUCache.o
SwiftDriver shapescript normal arm64 com.apple.xcode.tools.swift.compiler (in target 'shapescript' from project 'ShapeScript')
    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 shapescript -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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.15 -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 -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/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript-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/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ shapescript (in target 'shapescript' from project 'ShapeScript')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+Extensions.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+SVGPath.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationContext.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationDelegate.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Interpreter.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Lexer.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Material+Brightness.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Material+SceneKit.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Material.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Members.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Parser.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/ProgramError.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/RandomSequence.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Scene.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/String+Matching.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/String+Ordinals.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/URL+FileType.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Value+JSON.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Value+Logging.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Values.swift -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -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 -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript_const_extract_protocols.json -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-experimental-feature DebugDescriptionMacro -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -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/ShapeScript.build/Debug/shapescript.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name shapescript -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.4 -target-sdk-name macosx15.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.abi.json
EmitSwiftModule normal arm64 (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift:927:43: error: cannot find type 'ShapeScript' in scope
    func materialToVertexColors(material: ShapeScript.Material?) -> Path {
                                          ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift:947:43: error: cannot find type 'ShapeScript' in scope
    func vertexColorsToMaterial(material: ShapeScript.Material) -> Polygon {
                                          ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift:965:43: error: cannot find type 'ShapeScript' in scope
    func materialToVertexColors(material: ShapeScript.Material?) -> Polygon {
                                          ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift:985:43: error: cannot find type 'ShapeScript' in scope
    func vertexColorsToMaterial(material: ShapeScript.Material) -> Mesh {
                                          ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift:1003:43: error: cannot find type 'ShapeScript' in scope
    func materialToVertexColors(material: ShapeScript.Material?) -> Mesh {
                                          ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:16:17: warning: type 'GeometryCache.Key' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    private let cache: LRUCache<Key, (mesh: Mesh, associatedData: [Material: Any])>
                ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift:29:12: note: consider making struct 'Key' conform to the 'Sendable' protocol
    struct Key: Hashable {
           ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:21:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Camera' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Self = .init(antialiased: true)
                      ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:11:15: note: consider making struct 'Camera' conform to the 'Sendable' protocol
public struct Camera: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:21:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default`: Self = .init(antialiased: true)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Self = .init(antialiased: true)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:38:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Light' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Self = .init(
                      ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:30:15: note: consider making struct 'Light' conform to the 'Sendable' protocol
public struct Light: Hashable {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:38:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default`: Self = .init(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Self = .init(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:56:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ExtrudeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Self = .init(along: [], twist: .zero, align: nil)
                      ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:51:15: note: consider making struct 'ExtrudeOptions' conform to the 'Sendable' protocol
public struct ExtrudeOptions: Hashable {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:56:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default`: Self = .init(along: [], twist: .zero, align: nil)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Self = .init(along: [], twist: .zero, align: nil)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Lexer.swift:134:16: warning: stored property 'type' of 'Sendable'-conforming struct 'LexerError' has non-sendable type 'LexerErrorType'; this is an error in the Swift 6 language mode
    public let type: LexerErrorType
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Lexer.swift:125:13: note: consider making enum 'LexerErrorType' conform to the 'Sendable' protocol
public enum LexerErrorType: Equatable {
            ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Material.swift:87:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Material' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default`: Material = .init()
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Material.swift:77:15: note: consider making struct 'Material' conform to the 'Sendable' protocol
public struct Material: Hashable {
              ^
                                , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Material.swift:87:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    static let `default`: Material = .init()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Material.swift:87:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default`: Material = .init()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Members.swift:88:24: warning: static property 'memberTypes' is not concurrency-safe because non-'Sendable' type '[String : ValueType]' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let memberTypes: [String: ValueType] = [
                       ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:14:6: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
enum ValueType: Hashable {
     ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Members.swift:88:24: note: add '@MainActor' to make static property 'memberTypes' part of global actor 'MainActor'
    private static let memberTypes: [String: ValueType] = [
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Members.swift:88:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let memberTypes: [String: ValueType] = [
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Parser.swift:104:16: warning: stored property 'type' of 'Sendable'-conforming struct 'ParserError' has non-sendable type 'ParserErrorType'; this is an error in the Swift 6 language mode
    public let type: ParserErrorType
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Parser.swift:97:13: note: consider making enum 'ParserErrorType' conform to the 'Sendable' protocol
public enum ParserErrorType: Equatable {
            ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:87:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Scene.OutputOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `default` = OutputOptions()
                          ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:86:12: note: consider making struct 'OutputOptions' conform to the 'Sendable' protocol
    struct OutputOptions: Hashable {
           ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:87:27: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
        public static let `default` = OutputOptions()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:87:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `default` = OutputOptions()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:132:13: warning: var 'scnNodeKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var scnNodeKey: UInt8 = 1
            ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:132:13: note: convert 'scnNodeKey' to a 'let' constant to make 'Sendable' shared state immutable
private var scnNodeKey: UInt8 = 1
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:132:13: note: add '@MainActor' to make var 'scnNodeKey' part of global actor 'MainActor'
private var scnNodeKey: UInt8 = 1
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:132:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var scnNodeKey: UInt8 = 1
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:133:13: warning: var 'scnGeometryKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var scnGeometryKey: UInt8 = 1
            ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:133:13: note: convert 'scnGeometryKey' to a 'let' constant to make 'Sendable' shared state immutable
private var scnGeometryKey: UInt8 = 1
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:133:13: note: add '@MainActor' to make var 'scnGeometryKey' part of global actor 'MainActor'
private var scnGeometryKey: UInt8 = 1
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift:133:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var scnGeometryKey: UInt8 = 1
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene.swift:42:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Scene' may have shared mutable state; this is an error in the Swift 6 language mode
    static let empty = Scene(background: .color(.clear), children: [], cache: nil)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene.swift:12:20: note: class 'Scene' does not conform to the 'Sendable' protocol
public final class Scene {
                   ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene.swift:42:16: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
    static let empty = Scene(background: .color(.clear), children: [], cache: nil)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Scene.swift:42:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let empty = Scene(background: .color(.clear), children: [], cache: nil)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:36:16: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let transform: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:36:16: note: add '@MainActor' to make static property 'transform' part of global actor 'MainActor'
    static let transform: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let transform: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:54:16: warning: static property 'childTransform' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let childTransform: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:54:16: note: add '@MainActor' to make static property 'childTransform' part of global actor 'MainActor'
    static let childTransform: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:54:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let childTransform: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:69:16: warning: static property 'colors' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let colors: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:69:16: note: add '@MainActor' to make static property 'colors' part of global actor 'MainActor'
    static let colors: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let colors: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:82:16: warning: static property 'color' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let color: Symbols = colors + [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:82:16: note: add '@MainActor' to make static property 'color' part of global actor 'MainActor'
    static let color: Symbols = colors + [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:82:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let color: Symbols = colors + [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:90:16: warning: static property 'material' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let material: Symbols = color + [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:90:16: note: add '@MainActor' to make static property 'material' part of global actor 'MainActor'
    static let material: Symbols = color + [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let material: Symbols = color + [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:146:16: warning: static property 'polygons' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let polygons: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:146:16: note: add '@MainActor' to make static property 'polygons' part of global actor 'MainActor'
    static let polygons: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:146:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let polygons: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:156:16: warning: static property 'meshes' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let meshes: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:156:16: note: add '@MainActor' to make static property 'meshes' part of global actor 'MainActor'
    static let meshes: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:156:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let meshes: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:302:16: warning: static property 'paths' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let paths: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:302:16: note: add '@MainActor' to make static property 'paths' part of global actor 'MainActor'
    static let paths: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:302:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let paths: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:426:16: warning: static property 'points' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let points: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:426:16: note: add '@MainActor' to make static property 'points' part of global actor 'MainActor'
    static let points: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:426:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let points: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:435:16: warning: static property 'pathPoints' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let pathPoints: Symbols = _merge(points, [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:435:16: note: add '@MainActor' to make static property 'pathPoints' part of global actor 'MainActor'
    static let pathPoints: Symbols = _merge(points, [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:435:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pathPoints: Symbols = _merge(points, [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:444:16: warning: static property 'functions' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let functions: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:444:16: note: add '@MainActor' to make static property 'functions' part of global actor 'MainActor'
    static let functions: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:444:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let functions: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:597:35: error: cannot find 'ShapeScript' in scope
            var result = [String: ShapeScript.Value]()
                                  ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:597:26: error: cannot call value of non-function type '[AnyHashable : Any]'
            var result = [String: ShapeScript.Value]()
                         ^                          ~~

/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:597:27: error: cannot convert value of type 'String.Type' to expected dictionary key type 'AnyHashable'
            var result = [String: ShapeScript.Value]()
                          ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:605:16: warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let name: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:605:16: note: add '@MainActor' to make static property 'name' part of global actor 'MainActor'
    static let name: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:605:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let name: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:613:16: warning: static property 'background' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let background: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:613:16: note: add '@MainActor' to make static property 'background' part of global actor 'MainActor'
    static let background: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:613:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let background: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:619:16: warning: static property 'font' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let font: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:619:16: note: add '@MainActor' to make static property 'font' part of global actor 'MainActor'
    static let font: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:619:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let font: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:627:16: warning: static property 'detail' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let detail: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:627:16: note: add '@MainActor' to make static property 'detail' part of global actor 'MainActor'
    static let detail: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:627:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let detail: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:636:16: warning: static property 'smoothing' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let smoothing: Symbols = [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:636:16: note: add '@MainActor' to make static property 'smoothing' part of global actor 'MainActor'
    static let smoothing: Symbols = [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:636:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let smoothing: Symbols = [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:646:16: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let root: Symbols = _merge(global, font, detail, smoothing, material, childTransform, [
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:646:16: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
    static let root: Symbols = _merge(global, font, detail, smoothing, material, childTransform, [
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:646:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let root: Symbols = _merge(global, font, detail, smoothing, material, childTransform, [
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:684:16: warning: static property 'global' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let global: Symbols = _merge(functions, colors, meshes, paths)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:684:16: note: add '@MainActor' to make static property 'global' part of global actor 'MainActor'
    static let global: Symbols = _merge(functions, colors, meshes, paths)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:684:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let global: Symbols = _merge(functions, colors, meshes, paths)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:685:16: warning: static property 'node' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let node: Symbols = _merge(transform, name, background)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:685:16: note: add '@MainActor' to make static property 'node' part of global actor 'MainActor'
    static let node: Symbols = _merge(transform, name, background)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:685:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let node: Symbols = _merge(transform, name, background)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:686:16: warning: static property 'shape' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let shape: Symbols = _merge(node, detail, smoothing, material)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:686:16: note: add '@MainActor' to make static property 'shape' part of global actor 'MainActor'
    static let shape: Symbols = _merge(node, detail, smoothing, material)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:686:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shape: Symbols = _merge(node, detail, smoothing, material)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:687:16: warning: static property 'group' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let group: Symbols = _merge(shape, childTransform, font)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:687:16: note: add '@MainActor' to make static property 'group' part of global actor 'MainActor'
    static let group: Symbols = _merge(shape, childTransform, font)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:687:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let group: Symbols = _merge(shape, childTransform, font)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:688:16: warning: static property 'user' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let user: Symbols = _merge(shape, font)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:688:16: note: add '@MainActor' to make static property 'user' part of global actor 'MainActor'
    static let user: Symbols = _merge(shape, font)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:688:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let user: Symbols = _merge(shape, font)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:689:16: warning: static property 'builder' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let builder: Symbols = group
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:689:16: note: add '@MainActor' to make static property 'builder' part of global actor 'MainActor'
    static let builder: Symbols = group
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:689:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let builder: Symbols = group
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:690:16: warning: static property 'hull' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let hull: Symbols = _merge(group, points)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:690:16: note: add '@MainActor' to make static property 'hull' part of global actor 'MainActor'
    static let hull: Symbols = _merge(group, points)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:690:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let hull: Symbols = _merge(group, points)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:691:16: warning: static property 'polygon' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let polygon: Symbols = _merge(transform, childTransform, points, color)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:691:16: note: add '@MainActor' to make static property 'polygon' part of global actor 'MainActor'
    static let polygon: Symbols = _merge(transform, childTransform, points, color)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:691:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let polygon: Symbols = _merge(transform, childTransform, points, color)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:692:16: warning: static property 'mesh' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let mesh: Symbols = _merge(node, smoothing, color, childTransform, polygons)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:692:16: note: add '@MainActor' to make static property 'mesh' part of global actor 'MainActor'
    static let mesh: Symbols = _merge(node, smoothing, color, childTransform, polygons)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:692:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mesh: Symbols = _merge(node, smoothing, color, childTransform, polygons)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:693:16: warning: static property 'pathShape' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let pathShape: Symbols = _merge(transform, detail, color, background)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:693:16: note: add '@MainActor' to make static property 'pathShape' part of global actor 'MainActor'
    static let pathShape: Symbols = _merge(transform, detail, color, background)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:693:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pathShape: Symbols = _merge(transform, detail, color, background)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:694:16: warning: static property 'path' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let path: Symbols = _merge(pathShape, childTransform, font, pathPoints)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:694:16: note: add '@MainActor' to make static property 'path' part of global actor 'MainActor'
    static let path: Symbols = _merge(pathShape, childTransform, font, pathPoints)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:694:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let path: Symbols = _merge(pathShape, childTransform, font, pathPoints)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:695:16: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let definition: Symbols = _merge(root, pathPoints)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:695:16: note: add '@MainActor' to make static property 'definition' part of global actor 'MainActor'
    static let definition: Symbols = _merge(root, pathPoints)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:695:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let definition: Symbols = _merge(root, pathPoints)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:696:16: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'Symbols' (aka 'Dictionary<String, Symbol>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let all: Symbols = _merge(definition, shape, path)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift:13:6: note: consider making enum 'Symbol' conform to the 'Sendable' protocol
enum Symbol {
     ^
            : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:696:16: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    static let all: Symbols = _merge(definition, shape, path)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift:696:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let all: Symbols = _merge(definition, shape, path)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:100:16: warning: static property 'void' is not concurrency-safe because non-'Sendable' type 'ValueType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let void: ValueType = .tuple([])
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:14:6: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
enum ValueType: Hashable {
     ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:100:16: note: add '@MainActor' to make static property 'void' part of global actor 'MainActor'
    static let void: ValueType = .tuple([])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:100:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let void: ValueType = .tuple([])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:101:16: warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ValueType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sequence: ValueType = .union([.range, .list(.any)])
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:14:6: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
enum ValueType: Hashable {
     ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:101:16: note: add '@MainActor' to make static property 'sequence' part of global actor 'MainActor'
    static let sequence: ValueType = .union([.range, .list(.any)])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:101:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sequence: ValueType = .union([.range, .list(.any)])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:102:16: warning: static property 'anyObject' is not concurrency-safe because non-'Sendable' type 'ValueType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let anyObject: ValueType = .object(["*": .any])
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:14:6: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
enum ValueType: Hashable {
     ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:102:16: note: add '@MainActor' to make static property 'anyObject' part of global actor 'MainActor'
    static let anyObject: ValueType = .object(["*": .any])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:102:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let anyObject: ValueType = .object(["*": .any])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:103:16: warning: static property 'numberPair' is not concurrency-safe because non-'Sendable' type 'ValueType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let numberPair: ValueType = .tuple([.number, .number])
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:14:6: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
enum ValueType: Hashable {
     ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:103:16: note: add '@MainActor' to make static property 'numberPair' part of global actor 'MainActor'
    static let numberPair: ValueType = .tuple([.number, .number])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:103:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let numberPair: ValueType = .tuple([.number, .number])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:104:16: warning: static property 'colorOrTexture' is not concurrency-safe because non-'Sendable' type 'ValueType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let colorOrTexture: ValueType = .union([.color, .texture])
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:14:6: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
enum ValueType: Hashable {
     ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:104:16: note: add '@MainActor' to make static property 'colorOrTexture' part of global actor 'MainActor'
    static let colorOrTexture: ValueType = .union([.color, .texture])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:104:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let colorOrTexture: ValueType = .union([.color, .texture])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:105:16: warning: static property 'numberOrTexture' is not concurrency-safe because non-'Sendable' type 'ValueType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let numberOrTexture: ValueType = .union([.number, .texture])
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:14:6: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
enum ValueType: Hashable {
     ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:105:16: note: add '@MainActor' to make static property 'numberOrTexture' part of global actor 'MainActor'
    static let numberOrTexture: ValueType = .union([.number, .texture])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:105:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let numberOrTexture: ValueType = .union([.number, .texture])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:106:16: warning: static property 'numberOrVector' is not concurrency-safe because non-'Sendable' type 'ValueType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let numberOrVector: ValueType = .union([.number, .radians, .list(.number), .list(.radians)])
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:14:6: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
enum ValueType: Hashable {
     ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:106:16: note: add '@MainActor' to make static property 'numberOrVector' part of global actor 'MainActor'
    static let numberOrVector: ValueType = .union([.number, .radians, .list(.number), .list(.radians)])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:106:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let numberOrVector: ValueType = .union([.number, .radians, .list(.number), .list(.radians)])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:352:16: warning: static property 'builder' is not concurrency-safe because non-'Sendable' type 'BlockType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let builder: Self = .init(.builder, [:], .path, .mesh)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:337:8: note: consider making struct 'BlockType' conform to the 'Sendable' protocol
struct BlockType {
       ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:352:16: note: add '@MainActor' to make static property 'builder' part of global actor 'MainActor'
    static let builder: Self = .init(.builder, [:], .path, .mesh)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:352:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let builder: Self = .init(.builder, [:], .path, .mesh)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:353:16: warning: static property 'shape' is not concurrency-safe because non-'Sendable' type 'BlockType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shape: Self = .init(.shape, [:], .void, .mesh)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:337:8: note: consider making struct 'BlockType' conform to the 'Sendable' protocol
struct BlockType {
       ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:353:16: note: add '@MainActor' to make static property 'shape' part of global actor 'MainActor'
    static let shape: Self = .init(.shape, [:], .void, .mesh)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:353:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shape: Self = .init(.shape, [:], .void, .mesh)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:354:16: warning: static property 'group' is not concurrency-safe because non-'Sendable' type 'BlockType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let group: Self = .init(.group, [:], .mesh, .mesh)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:337:8: note: consider making struct 'BlockType' conform to the 'Sendable' protocol
struct BlockType {
       ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:354:16: note: add '@MainActor' to make static property 'group' part of global actor 'MainActor'
    static let group: Self = .init(.group, [:], .mesh, .mesh)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:354:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let group: Self = .init(.group, [:], .mesh, .mesh)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:355:16: warning: static property 'path' is not concurrency-safe because non-'Sendable' type 'BlockType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let path: Self = .init(.path, [:], .union([.point, .path]), .path)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:337:8: note: consider making struct 'BlockType' conform to the 'Sendable' protocol
struct BlockType {
       ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:355:16: note: add '@MainActor' to make static property 'path' part of global actor 'MainActor'
    static let path: Self = .init(.path, [:], .union([.point, .path]), .path)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:355:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let path: Self = .init(.path, [:], .union([.point, .path]), .path)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:356:16: warning: static property 'pathShape' is not concurrency-safe because non-'Sendable' type 'BlockType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let pathShape: Self = .init(.pathShape, [:], .void, .path)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:337:8: note: consider making struct 'BlockType' conform to the 'Sendable' protocol
struct BlockType {
       ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:356:16: note: add '@MainActor' to make static property 'pathShape' part of global actor 'MainActor'
    static let pathShape: Self = .init(.pathShape, [:], .void, .path)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:356:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pathShape: Self = .init(.pathShape, [:], .void, .path)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:357:16: warning: static property 'mesh' is not concurrency-safe because non-'Sendable' type 'BlockType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mesh: Self = .init(.mesh, [:], .union([.polygon, .mesh]), .mesh)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:337:8: note: consider making struct 'BlockType' conform to the 'Sendable' protocol
struct BlockType {
       ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:357:16: note: add '@MainActor' to make static property 'mesh' part of global actor 'MainActor'
    static let mesh: Self = .init(.mesh, [:], .union([.polygon, .mesh]), .mesh)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:357:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mesh: Self = .init(.mesh, [:], .union([.polygon, .mesh]), .mesh)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:358:16: warning: static property 'hull' is not concurrency-safe because non-'Sendable' type 'BlockType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let hull: Self = .init(.hull, [:], .union([.point, .path, .mesh]), .mesh)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:337:8: note: consider making struct 'BlockType' conform to the 'Sendable' protocol
struct BlockType {
       ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:358:16: note: add '@MainActor' to make static property 'hull' part of global actor 'MainActor'
    static let hull: Self = .init(.hull, [:], .union([.point, .path, .mesh]), .mesh)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:358:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let hull: Self = .init(.hull, [:], .union([.point, .path, .mesh]), .mesh)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:359:16: warning: static property 'minkowski' is not concurrency-safe because non-'Sendable' type 'BlockType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let minkowski: Self = .init(.group, [:], .mesh, .mesh)
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:337:8: note: consider making struct 'BlockType' conform to the 'Sendable' protocol
struct BlockType {
       ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:359:16: note: add '@MainActor' to make static property 'minkowski' part of global actor 'MainActor'
    static let minkowski: Self = .init(.group, [:], .mesh, .mesh)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift:359:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let minkowski: Self = .init(.group, [:], .mesh, .mesh)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/ShapeScript/Values.swift:133:16: warning: static property 'void' is not concurrency-safe because non-'Sendable' type 'Value.Value' (aka 'Value') may have shared mutable state; this is an error in the Swift 6 language mode
    static let void: Value = .tuple([])
               ^
/Users/admin/builder/spi-builder-workspace/ShapeScript/Values.swift:12:6: note: consider making enum 'Value' conform to the 'Sendable' protocol
enum Value: Hashable {
     ^
                    , Sendable
/Users/admin/builder/spi-builder-workspace/ShapeScript/Values.swift:133:16: note: add '@MainActor' to make static property 'void' part of global actor 'MainActor'
    static let void: Value = .tuple([])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/ShapeScript/Values.swift:133:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let void: Value = .tuple([])
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Members.swift,\ Parser.swift,\ ProgramError.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Members.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Parser.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/ProgramError.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Members.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Parser.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/ProgramError.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ GeometryType.swift,\ Interpreter.swift,\ Lexer.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Interpreter.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Lexer.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryType.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Interpreter.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Lexer.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling StandardLibrary.swift, String+Matching.swift, String+Ordinals.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 Compiling\ RandomSequence.swift,\ Scene+SceneKit.swift,\ Scene.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/RandomSequence.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Scene.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/RandomSequence.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Scene+SceneKit.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Scene.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Material+Brightness.swift, Material+SceneKit.swift, Material.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 Compiling\ URL+FileType.swift,\ Value+JSON.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/URL+FileType.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Value+JSON.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/URL+FileType.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Value+JSON.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Symbols.swift, Types.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 Compiling\ Material+Brightness.swift,\ Material+SceneKit.swift,\ Material.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Material+Brightness.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Material+SceneKit.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Material.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Material+Brightness.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Material+SceneKit.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Material.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Value+Logging.swift, Values.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 Compiling\ Euclid+Extensions.swift,\ Euclid+SVGPath.swift,\ EvaluationContext.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+Extensions.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+SVGPath.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationContext.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+Extensions.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Euclid+SVGPath.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationContext.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling EvaluationDelegate.swift, Geometry.swift, GeometryCache.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 Compiling\ StandardLibrary.swift,\ String+Matching.swift,\ String+Ordinals.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/String+Matching.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/String+Ordinals.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/StandardLibrary.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/String+Matching.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/String+Ordinals.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Euclid+Extensions.swift, Euclid+SVGPath.swift, EvaluationContext.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 Compiling\ Value+Logging.swift,\ Values.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Value+Logging.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Values.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Value+Logging.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Values.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling URL+FileType.swift, Value+JSON.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 Compiling\ Symbols.swift,\ Types.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift (in target 'shapescript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Symbols.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/ShapeScript/Types.swift (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Members.swift, Parser.swift, ProgramError.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 Compiling\ EvaluationDelegate.swift,\ Geometry.swift,\ GeometryCache.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationDelegate.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift (in target 'shapescript' from project 'ShapeScript')
Command SwiftCompile failed with a nonzero exit code
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:efe215a35f6ae067503757d17ad1406eedb8ef4a, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:efe215a35f6ae067503757d17ad1406eedb8ef4a, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:efe215a35f6ae067503757d17ad1406eedb8ef4a, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:efe215a35f6ae067503757d17ad1406eedb8ef4a, name:My Mac }
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ shapescript (in target 'shapescript' from project 'ShapeScript')
	EmitSwiftModule normal arm64 (in target 'shapescript' from project 'ShapeScript')
	SwiftCompile normal arm64 Compiling\ EvaluationDelegate.swift,\ Geometry.swift,\ GeometryCache.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/EvaluationDelegate.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/Geometry.swift /Users/admin/builder/spi-builder-workspace/ShapeScript/GeometryCache.swift (in target 'shapescript' from project 'ShapeScript')
	Building workspace spi-builder-workspace with scheme ShapeScript-Package
(4 failures)
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
  Euclid: https://github.com/nicklockwood/Euclid.git @ 0.8.14
  ShapeScript: /Users/admin/builder/spi-builder-workspace
  LRUCache: https://github.com/nicklockwood/LRUCache.git @ 1.1.2
  SVGPath: https://github.com/nicklockwood/SVGPath.git @ 1.2.0
resolved source packages: Euclid, ShapeScript, LRUCache, SVGPath
{
  "dependencies" : [
    {
      "identity" : "euclid",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.8.14",
            "upper_bound" : "0.9.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nicklockwood/Euclid.git"
    },
    {
      "identity" : "lrucache",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.2",
            "upper_bound" : "1.2.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nicklockwood/LRUCache.git"
    },
    {
      "identity" : "svgpath",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "1.3.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nicklockwood/SVGPath.git"
    }
  ],
  "manifest_display_name" : "ShapeScript",
  "name" : "ShapeScript",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "ShapeScript",
      "targets" : [
        "ShapeScript"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "shapescript",
      "targets" : [
        "CLI"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ShapeScriptTests",
      "module_type" : "SwiftTarget",
      "name" : "ShapeScriptTests",
      "path" : "ShapeScriptTests",
      "sources" : [
        "GeometryTests.swift",
        "ImportExportTests.swift",
        "InterpreterTests.swift",
        "LexerTests.swift",
        "LoggingTests.swift",
        "MemberTests.swift",
        "MetadataTests.swift",
        "ParserTests.swift",
        "PlatformTests.swift",
        "RegressionTests.swift",
        "SVGPathTests.swift",
        "StandardLibraryTests.swift",
        "StringMatchingTests.swift",
        "TestDelegate.swift",
        "TypesystemTests.swift"
      ],
      "target_dependencies" : [
        "ShapeScript"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ShapeScript",
      "module_type" : "SwiftTarget",
      "name" : "ShapeScript",
      "path" : "ShapeScript",
      "product_dependencies" : [
        "Euclid",
        "LRUCache",
        "SVGPath"
      ],
      "product_memberships" : [
        "ShapeScript",
        "shapescript"
      ],
      "sources" : [
        "Euclid+Extensions.swift",
        "Euclid+SVGPath.swift",
        "EvaluationContext.swift",
        "EvaluationDelegate.swift",
        "Geometry.swift",
        "GeometryCache.swift",
        "GeometryType.swift",
        "Interpreter.swift",
        "Lexer.swift",
        "Material+Brightness.swift",
        "Material+SceneKit.swift",
        "Material.swift",
        "Members.swift",
        "Parser.swift",
        "ProgramError.swift",
        "RandomSequence.swift",
        "Scene+SceneKit.swift",
        "Scene.swift",
        "StandardLibrary.swift",
        "String+Matching.swift",
        "String+Ordinals.swift",
        "Symbols.swift",
        "Types.swift",
        "URL+FileType.swift",
        "Value+JSON.swift",
        "Value+Logging.swift",
        "Values.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CLI",
      "module_type" : "SwiftTarget",
      "name" : "CLI",
      "path" : "Viewer/CLI",
      "product_memberships" : [
        "shapescript"
      ],
      "sources" : [
        "CLI+Export.swift",
        "CLI.swift",
        "Geometry+ModelInfo.swift",
        "ProgramError+Formatting.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "ShapeScript"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.7"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "shapescript",
      "ShapeScript",
      "ShapeScript-Package"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ShapeScript-Package -destination platform=macOS,arch=arm64
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme ShapeScript-Package -destination platform=macOS,arch=arm64
Resolve Package Graph
Resolved source packages:
  SVGPath: https://github.com/nicklockwood/SVGPath.git @ 1.2.0
  Euclid: https://github.com/nicklockwood/Euclid.git @ 0.8.14
  ShapeScript: /Users/admin/builder/spi-builder-workspace
  LRUCache: https://github.com/nicklockwood/LRUCache.git @ 1.1.2
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (9 targets)
    Target 'shapescript' in project 'ShapeScript'
        ➜ Explicit dependency on target 'ShapeScript' in project 'ShapeScript'
        ➜ Explicit dependency on target 'Euclid' in project 'Euclid'
        ➜ Explicit dependency on target 'LRUCache' in project 'LRUCache'
        ➜ Explicit dependency on target 'SVGPath' in project 'SVGPath'
    Target 'ShapeScript' in project 'ShapeScript'
        ➜ Explicit dependency on target 'ShapeScript' in project 'ShapeScript'
        ➜ Explicit dependency on target 'Euclid' in project 'Euclid'
        ➜ Explicit dependency on target 'LRUCache' in project 'LRUCache'
        ➜ Explicit dependency on target 'SVGPath' in project 'SVGPath'
    Target 'ShapeScript' in project 'ShapeScript'
        ➜ Explicit dependency on target 'Euclid' in project 'Euclid'
        ➜ Explicit dependency on target 'LRUCache' in project 'LRUCache'
        ➜ Explicit dependency on target 'SVGPath' in project 'SVGPath'
    Target 'SVGPath' in project 'SVGPath'
        ➜ Explicit dependency on target 'SVGPath' in project 'SVGPath'
    Target 'SVGPath' in project 'SVGPath' (no dependencies)
    Target 'LRUCache' in project 'LRUCache'
        ➜ Explicit dependency on target 'LRUCache' in project 'LRUCache'
    Target 'LRUCache' in project 'LRUCache' (no dependencies)
    Target 'Euclid' in project 'Euclid'
        ➜ Explicit dependency on target 'Euclid' in project 'Euclid'
    Target 'Euclid' in project 'Euclid' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: a573e3f758cc9235c30d34d7c17f07a9
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/a573e3f758cc9235c30d34d7c17f07a9.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/shapescript.DependencyStaticMetadataFileList (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/shapescript.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.SwiftFileList (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.LinkFileList (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript-OutputFileMap.json (in target 'shapescript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/shapescript-OutputFileMap.json
SwiftDriver SVGPath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SVGPath' from project 'SVGPath')
    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 SVGPath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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 -suppress-warnings -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 -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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath-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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.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/SVGPath.build/Debug/SVGPath.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver Euclid normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Euclid' from project 'Euclid')
    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 Euclid -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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 -suppress-warnings -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 -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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid-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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.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/Euclid.build/Debug/Euclid.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver LRUCache normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LRUCache' from project 'LRUCache')
    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 LRUCache -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -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 -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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache-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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.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/LRUCache.build/Debug/LRUCache.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ LRUCache (in target 'LRUCache' from project 'LRUCache')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/LRUCache/Sources/LRUCache.swift (in target 'LRUCache' from project 'LRUCache')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftCompile normal arm64 Compiling\ SVGPath+CoreGraphics.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SVGPath/Sources/SVGPath+CoreGraphics.swift (in target 'SVGPath' from project 'SVGPath')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SVGPath/Sources/SVGPath+CoreGraphics.swift (in target 'SVGPath' from project 'SVGPath')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ Rotation.swift,\ Stretchable.swift,\ Transform.swift,\ Transformable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Rotation.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Stretchable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Transform.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Transformable.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Rotation.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Stretchable.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Transform.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Transformable.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ PlaneComparable.swift,\ PointComparable.swift,\ Polygon+CSG.swift,\ Polygon.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/PlaneComparable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/PointComparable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Polygon+CSG.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Polygon.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/PlaneComparable.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/PointComparable.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Polygon+CSG.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Polygon.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Path+Shapes.swift,\ Path.swift,\ PathPoint.swift,\ Plane.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Path+Shapes.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Path.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/PathPoint.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Plane.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Path+Shapes.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Path.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/PathPoint.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Plane.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Color.swift,\ Euclid+AppKit.swift,\ Euclid+CoreGraphics.swift,\ Euclid+CoreText.swift,\ Euclid+RealityKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+AppKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+CoreGraphics.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+CoreText.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+RealityKit.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Color.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+AppKit.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+CoreGraphics.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+CoreText.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+RealityKit.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Euclid+SIMD.swift,\ Euclid+SceneKit.swift,\ Euclid+UIKit.swift,\ Interpolatable.swift,\ Line.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+SIMD.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+SceneKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+UIKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Interpolatable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Line.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+SIMD.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+SceneKit.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Euclid+UIKit.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Interpolatable.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Line.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for LRUCache (in target 'LRUCache' from project 'LRUCache')
SwiftDriver\ Compilation\ Requirements LRUCache normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LRUCache' from project 'LRUCache')
    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 LRUCache -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -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 -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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache-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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.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/LRUCache.build/Debug/LRUCache.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for SVGPath (in target 'SVGPath' from project 'SVGPath')
SwiftCompile normal arm64 Compiling\ Utilities.swift,\ Vector.swift,\ Vertex.swift,\ VertexSet.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Utilities.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Vector.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Vertex.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/VertexSet.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Utilities.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Vector.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Vertex.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/VertexSet.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriver\ Compilation\ Requirements SVGPath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SVGPath' from project 'SVGPath')
    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 SVGPath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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 -suppress-warnings -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 -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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath-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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.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/SVGPath.build/Debug/SVGPath.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling SVGPath+CoreGraphics.swift (in target 'SVGPath' from project 'SVGPath')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/LRUCache.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.abi.json (in target 'LRUCache' from project 'LRUCache')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/LRUCache
    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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/LRUCache.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SVGPath.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.abi.json (in target 'SVGPath' from project 'SVGPath')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SVGPath
    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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SVGPath.swiftmodule/arm64-apple-macos.abi.json
SwiftCompile normal arm64 Compiling\ LineComparable.swift,\ LineSegment+CSG.swift,\ LineSegment.swift,\ Mesh+CSG.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/LineComparable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/LineSegment+CSG.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/LineSegment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+CSG.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/LineComparable.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/LineSegment+CSG.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/LineSegment.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+CSG.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Mesh+Shapes.swift,\ Mesh+Texcoords.swift,\ Mesh.swift,\ Path+CSG.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+Shapes.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+Texcoords.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Path+CSG.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+Shapes.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+Texcoords.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Path+CSG.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling LRUCache.swift (in target 'LRUCache' from project 'LRUCache')
SwiftDriver\ Compilation LRUCache normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LRUCache' from project 'LRUCache')
    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 LRUCache -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -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 -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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache-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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.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/LRUCache.build/Debug/LRUCache.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling SVGPath.swift (in target 'SVGPath' from project 'SVGPath')
SwiftDriver\ Compilation SVGPath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SVGPath' from project 'SVGPath')
    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 SVGPath -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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 -suppress-warnings -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 -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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath-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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.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/SVGPath.build/Debug/SVGPath.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ Mesh+IO.swift,\ Mesh+OBJ.swift,\ Mesh+OFF.swift,\ Mesh+STL.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+IO.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+OBJ.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+OFF.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+STL.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+IO.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+OBJ.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+OFF.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Mesh+STL.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Angle.swift,\ ApproximateEquality.swift,\ BSP.swift,\ Bounded.swift,\ Bounds.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Angle.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/ApproximateEquality.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/BSP.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Bounded.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Bounds.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Angle.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/ApproximateEquality.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/BSP.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Bounded.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid/Sources/Bounds.swift (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for Euclid (in target 'Euclid' from project 'Euclid')
SwiftDriver\ Compilation\ Requirements Euclid normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Euclid' from project 'Euclid')
    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 Euclid -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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 -suppress-warnings -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 -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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid-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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.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/Euclid.build/Debug/Euclid.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Rotation.swift, Stretchable.swift, Transform.swift, Transformable.swift (in target 'Euclid' from project 'Euclid')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SVGPath.o normal (in target 'SVGPath' from project 'SVGPath')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SVGPath
    /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 -w -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 -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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath_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/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SVGPath.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/LRUCache.o normal (in target 'LRUCache' from project 'LRUCache')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/LRUCache
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -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 -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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache_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/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/LRUCache.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Euclid.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.abi.json (in target 'Euclid' from project 'Euclid')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Euclid
    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/Euclid.build/Debug/Euclid.build/Objects-normal/arm64/Euclid.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Euclid.swiftmodule/arm64-apple-macos.abi.json
ExtractAppIntentsMetadata (in target 'SVGPath' from project 'SVGPath')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SVGPath
    /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 SVGPath --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 svgpath.SVGPath --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SVGPath.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SVGPath.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/SVGPath.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/SVGPath.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SVGPath.build/Debug/SVGPath.build/Objects-normal/arm64/SVGPath.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-03-03 22:17:59.809 appintentsmetadataprocessor[940:5527] Starting appintentsmetadataprocessor export
2026-03-03 22:17:59.846 appintentsmetadataprocessor[940:5527] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'LRUCache' from project 'LRUCache')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/LRUCache
    /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 LRUCache --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.15 --bundle-identifier lrucache.LRUCache --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/LRUCache.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/LRUCache.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/LRUCache.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/LRUCache.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LRUCache.build/Debug/LRUCache.build/Objects-normal/arm64/LRUCache.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-03-03 22:17:59.847 appintentsmetadataprocessor[941:5531] Starting appintentsmetadataprocessor export
2026-03-03 22:17:59.885 appintentsmetadataprocessor[941:5531] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Color.swift, Euclid+AppKit.swift, Euclid+CoreGraphics.swift, Euclid+CoreText.swift, Euclid+RealityKit.swift (in target 'Euclid' from project 'Euclid')
SwiftDriver ShapeScript normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ShapeScript' from project 'ShapeScript')
    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 ShapeScript -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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.15 -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 -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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript-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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript.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/ShapeScript.build/Debug/ShapeScript.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.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/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SVGPath.o (in target 'SVGPath' from project 'SVGPath')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SVGPath
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SVGPath.o
SwiftEmitModule normal arm64 Emitting\ module\ for\ ShapeScript (in target 'ShapeScript' from project 'ShapeScript')
EmitSwiftModule normal arm64 (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Geometry+ModelInfo.swift /Users/admin/builder/spi-builder-workspace/Viewer/CLI/Geometry+ModelInfo.swift (in target 'ShapeScript' from project 'ShapeScript')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Viewer/CLI/CLI+Export.swift /Users/admin/builder/spi-builder-workspace/Viewer/CLI/CLI.swift -primary-file /Users/admin/builder/spi-builder-workspace/Viewer/CLI/Geometry+ModelInfo.swift /Users/admin/builder/spi-builder-workspace/Viewer/CLI/ProgramError+Formatting.swift /Users/admin/builder/spi-builder-workspace/Viewer/CLI/main.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/Geometry+ModelInfo.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/Geometry+ModelInfo.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/Geometry+ModelInfo.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/Geometry+ModelInfo.dia -target arm64-apple-macos10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -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 -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/Objects-normal/arm64/ShapeScript_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/ShapeScript.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ShapeScript -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.4 -target-sdk-name macosx15.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/Geometry+ModelInfo.o -index-unit-output-path /ShapeScript.build/Debug/shapescript.build/Objects-normal/arm64/Geometry+ModelInfo.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Viewer/CLI/Geometry+ModelInfo.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Viewer/CLI/Geometry+ModelInfo.swift:9:8: warning: file 'Geometry+ModelInfo.swift' is part of module 'ShapeScript'; ignoring import
import ShapeScript
       ^
/Users/admin/builder/spi-builder-workspace/Viewer/CLI/Geometry+ModelInfo.swift:11:11: error: cannot find type 'Geometry' in scope
extension Geometry {
          ^~~~~~~~
SwiftCompile normal arm64 Compiling\ main.swift /Users/admin/builder/spi-builder-workspace/Viewer/CLI/main.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Viewer/CLI/main.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Euclid+SIMD.swift, Euclid+SceneKit.swift, Euclid+UIKit.swift, Interpolatable.swift, Line.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 Compiling\ ProgramError+Formatting.swift /Users/admin/builder/spi-builder-workspace/Viewer/CLI/ProgramError+Formatting.swift (in target 'ShapeScript' from project 'ShapeScript')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Viewer/CLI/ProgramError+Formatting.swift (in target 'ShapeScript' from project 'ShapeScript')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling LineComparable.swift, LineSegment+CSG.swift, LineSegment.swift, Mesh+CSG.swift (in target 'Euclid' from project 'Euclid')
SwiftCompile normal arm64 Compiling\ CLI.swift /Users/admin/builder/spi-builder-workspace/Viewer/CLI/CLI.swift (in target 'ShapeScript' from project 'ShapeScript')
Command SwiftCompile failed with a nonzero exit code
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:efe215a35f6ae067503757d17ad1406eedb8ef4a, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:efe215a35f6ae067503757d17ad1406eedb8ef4a, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:efe215a35f6ae067503757d17ad1406eedb8ef4a, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:efe215a35f6ae067503757d17ad1406eedb8ef4a, name:My Mac }
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ Geometry+ModelInfo.swift /Users/admin/builder/spi-builder-workspace/Viewer/CLI/Geometry+ModelInfo.swift (in target 'ShapeScript' from project 'ShapeScript')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Viewer/CLI/Geometry+ModelInfo.swift (in target 'ShapeScript' from project 'ShapeScript')
	SwiftCompile normal arm64 Compiling\ CLI.swift /Users/admin/builder/spi-builder-workspace/Viewer/CLI/CLI.swift (in target 'ShapeScript' from project 'ShapeScript')
	Building workspace spi-builder-workspace with scheme ShapeScript-Package
(4 failures)
BUILD FAILURE 6.1 macosXcodebuild