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

The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build PythonKit with Swift 6.0 for tvOS using Xcode 16.0.

Build Command

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

Build Log

    |                        |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     private static let pythonLegacySymbolName = "PyString_AsString"
 33 |     private static var librarySymbolsLoaded = false
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: warning: static property 'librarySymbolsLoaded' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 31 |     private static let shared = PythonLibrary()
 32 |     private static let pythonLegacySymbolName = "PyString_AsString"
 33 |     private static var librarySymbolsLoaded = false
    |                        |- warning: static property 'librarySymbolsLoaded' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'librarySymbolsLoaded' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'librarySymbolsLoaded' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     private let pythonLibraryHandle: UnsafeMutableRawPointer
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: warning: static property 'libraryNames' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
155 |
156 |     #if canImport(Darwin)
157 |     static var libraryNames = ["Python.framework/Versions/:/Python"]
    |                |- warning: static property 'libraryNames' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'libraryNames' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'libraryNames' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 |     static var libraryPathExtensions = [""]
159 |     static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: warning: static property 'libraryPathExtensions' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
156 |     #if canImport(Darwin)
157 |     static var libraryNames = ["Python.framework/Versions/:/Python"]
158 |     static var libraryPathExtensions = [""]
    |                |- warning: static property 'libraryPathExtensions' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'libraryPathExtensions' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'libraryPathExtensions' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |     static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
160 |     static var libraryVersionSeparator = "."
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: warning: static property 'librarySearchPaths' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
157 |     static var libraryNames = ["Python.framework/Versions/:/Python"]
158 |     static var libraryPathExtensions = [""]
159 |     static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
    |                |- warning: static property 'librarySearchPaths' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'librarySearchPaths' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'librarySearchPaths' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
160 |     static var libraryVersionSeparator = "."
161 |     #elseif os(Linux)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: warning: static property 'libraryVersionSeparator' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
158 |     static var libraryPathExtensions = [""]
159 |     static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
160 |     static var libraryVersionSeparator = "."
    |                |- warning: static property 'libraryVersionSeparator' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'libraryVersionSeparator' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'libraryVersionSeparator' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
161 |     #elseif os(Linux)
162 |     static var libraryNames = ["libpython:", "libpython:m"]
SwiftCompile normal arm64 Compiling\ PythonLibrary+Symbols.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.o -index-unit-output-path /PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.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/PythonKit/PythonLibrary+Symbols.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.o -index-unit-output-path /PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:181:5: warning: let '_Py_ZeroStruct' is not concurrency-safe because non-'Sendable' type 'PyObjectPointer' (aka 'UnsafeMutableRawPointer') may have shared mutable state; this is an error in the Swift 6 language mode
let _Py_ZeroStruct: PyObjectPointer =
    ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:181:5: note: annotate '_Py_ZeroStruct' with '@MainActor' if property should only be accessed from the main actor
let _Py_ZeroStruct: PyObjectPointer =
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:181:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let _Py_ZeroStruct: PyObjectPointer =
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:184:5: warning: let '_Py_TrueStruct' is not concurrency-safe because non-'Sendable' type 'PyObjectPointer' (aka 'UnsafeMutableRawPointer') may have shared mutable state; this is an error in the Swift 6 language mode
let _Py_TrueStruct: PyObjectPointer =
    ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:184:5: note: annotate '_Py_TrueStruct' with '@MainActor' if property should only be accessed from the main actor
let _Py_TrueStruct: PyObjectPointer =
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:184:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let _Py_TrueStruct: PyObjectPointer =
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:187:5: warning: let 'PyBool_Type' is not concurrency-safe because non-'Sendable' type 'PyObjectPointer' (aka 'UnsafeMutableRawPointer') may have shared mutable state; this is an error in the Swift 6 language mode
let PyBool_Type: PyObjectPointer =
    ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:187:5: note: annotate 'PyBool_Type' with '@MainActor' if property should only be accessed from the main actor
let PyBool_Type: PyObjectPointer =
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:187:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let PyBool_Type: PyObjectPointer =
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:190:5: warning: let 'PySlice_Type' is not concurrency-safe because non-'Sendable' type 'PyObjectPointer' (aka 'UnsafeMutableRawPointer') may have shared mutable state; this is an error in the Swift 6 language mode
let PySlice_Type: PyObjectPointer =
    ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:190:5: note: annotate 'PySlice_Type' with '@MainActor' if property should only be accessed from the main actor
let PySlice_Type: PyObjectPointer =
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:190:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let PySlice_Type: PyObjectPointer =
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ NumpyConversion.swift /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.o -index-unit-output-path /PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.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/PythonKit/NumpyConversion.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.o -index-unit-output-path /PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/NumpyConversion.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:21:13: warning: let 'np' is not concurrency-safe because non-'Sendable' type 'PythonObject' may have shared mutable state; this is an error in the Swift 6 language mode
private let np = Python.import("numpy")
            ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:21:13: note: annotate 'np' with '@MainActor' if property should only be accessed from the main actor
private let np = Python.import("numpy")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:21:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let np = Python.import("numpy")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:630:12: warning: let 'Python' is not concurrency-safe because non-'Sendable' type 'PythonInterface' may have shared mutable state; this is an error in the Swift 6 language mode
public let Python = PythonInterface()
           ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:640:15: note: consider making struct 'PythonInterface' conform to the 'Sendable' protocol
public struct PythonInterface {
              ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:630:12: note: annotate 'Python' with '@MainActor' if property should only be accessed from the main actor
public let Python = PythonInterface()
           ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:630:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let Python = PythonInterface()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:22:13: warning: let 'ctypes' is not concurrency-safe because non-'Sendable' type 'PythonObject' may have shared mutable state; this is an error in the Swift 6 language mode
private let ctypes = Python.import("ctypes")
            ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:22:13: note: annotate 'ctypes' with '@MainActor' if property should only be accessed from the main actor
private let ctypes = Python.import("ctypes")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:22:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let ctypes = Python.import("ctypes")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:40:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.bool_, Python.bool]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:40:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.bool_, Python.bool]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.bool_, Python.bool]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:45:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.uint8]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:45:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.uint8]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.uint8]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:50:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.int8]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:50:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.int8]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.int8]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:55:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.uint16]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:55:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.uint16]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.uint16]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:60:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.int16]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:60:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.int16]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.int16]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:65:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.uint32]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:65:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.uint32]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.uint32]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:70:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.int32]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:70:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.int32]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.int32]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:75:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.uint64]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:75:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.uint64]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.uint64]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:80:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.int64]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:80:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.int64]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.int64]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:85:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.float32]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:85:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.float32]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:85:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.float32]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:90:23: warning: static property 'numpyScalarTypes' is not concurrency-safe because non-'Sendable' type '[PythonObject]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpyScalarTypes = [np.float64]
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:90:23: note: annotate 'numpyScalarTypes' with '@MainActor' if property should only be accessed from the main actor
    public static let numpyScalarTypes = [np.float64]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpyScalarTypes = [np.float64]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:140:34: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
            buffPtr.baseAddress!.assign(from: ptr, count: scalarCount)
                                 ^
/Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift:140:34: note: use 'update(from:count:)' instead
            buffPtr.baseAddress!.assign(from: ptr, count: scalarCount)
                                 ^~~~~~
                                 update
SwiftCompile normal arm64 Compiling\ PythonLibrary.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.o -index-unit-output-path /PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.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/PythonKit/PythonLibrary.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.o -index-unit-output-path /PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonLibrary.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:31:24: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PythonLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let shared = PythonLibrary()
                       ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:30:15: note: consider making struct 'PythonLibrary' conform to the 'Sendable' protocol
public struct PythonLibrary {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:31:24: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    private static let shared = PythonLibrary()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:31:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let shared = PythonLibrary()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: warning: static property 'librarySymbolsLoaded' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var librarySymbolsLoaded = false
                       ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: note: convert 'librarySymbolsLoaded' to a 'let' constant to make 'Sendable' shared state immutable
    private static var librarySymbolsLoaded = false
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: note: annotate 'librarySymbolsLoaded' with '@MainActor' if property should only be accessed from the main actor
    private static var librarySymbolsLoaded = false
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var librarySymbolsLoaded = false
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: warning: static property 'libraryNames' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    static var libraryNames = ["Python.framework/Versions/:/Python"]
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: note: convert 'libraryNames' to a 'let' constant to make 'Sendable' shared state immutable
    static var libraryNames = ["Python.framework/Versions/:/Python"]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: note: annotate 'libraryNames' with '@MainActor' if property should only be accessed from the main actor
    static var libraryNames = ["Python.framework/Versions/:/Python"]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var libraryNames = ["Python.framework/Versions/:/Python"]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: warning: static property 'libraryPathExtensions' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    static var libraryPathExtensions = [""]
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: note: convert 'libraryPathExtensions' to a 'let' constant to make 'Sendable' shared state immutable
    static var libraryPathExtensions = [""]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: note: annotate 'libraryPathExtensions' with '@MainActor' if property should only be accessed from the main actor
    static var libraryPathExtensions = [""]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var libraryPathExtensions = [""]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: warning: static property 'librarySearchPaths' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: note: convert 'librarySearchPaths' to a 'let' constant to make 'Sendable' shared state immutable
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: note: annotate 'librarySearchPaths' with '@MainActor' if property should only be accessed from the main actor
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: warning: static property 'libraryVersionSeparator' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    static var libraryVersionSeparator = "."
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: note: convert 'libraryVersionSeparator' to a 'let' constant to make 'Sendable' shared state immutable
    static var libraryVersionSeparator = "."
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: note: annotate 'libraryVersionSeparator' with '@MainActor' if property should only be accessed from the main actor
    static var libraryVersionSeparator = "."
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var libraryVersionSeparator = "."
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.o -index-unit-output-path /PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.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/PythonKit/Python.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.o -index-unit-output-path /PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/Python.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:40:17: error: type referenced from a stored property in a '@frozen' struct must be '@usableFromInline' or public
    private var pointer: OwnedPyObjectPointer
                ^        ~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:28:11: note: type declared here
typealias OwnedPyObjectPointer = PyObjectPointer
          ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:211:10: warning: associated value 'exception(_:traceback:)' of 'Sendable'-conforming enum 'PythonError' has non-sendable type 'PythonObject'; this is an error in the Swift 6 language mode
    case exception(PythonObject, traceback: PythonObject?)
         ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:211:10: warning: associated value 'exception(_:traceback:)' of 'Sendable'-conforming enum 'PythonError' has non-sendable type 'PythonObject'; this is an error in the Swift 6 language mode
    case exception(PythonObject, traceback: PythonObject?)
         ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:219:10: warning: associated value 'invalidCall' of 'Sendable'-conforming enum 'PythonError' has non-sendable type 'PythonObject'; this is an error in the Swift 6 language mode
    case invalidCall(PythonObject)
         ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:89:15: note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
public struct PythonObject {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:630:12: warning: let 'Python' is not concurrency-safe because non-'Sendable' type 'PythonInterface' may have shared mutable state; this is an error in the Swift 6 language mode
public let Python = PythonInterface()
           ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:640:15: note: consider making struct 'PythonInterface' conform to the 'Sendable' protocol
public struct PythonInterface {
              ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:630:12: note: annotate 'Python' with '@MainActor' if property should only be accessed from the main actor
public let Python = PythonInterface()
           ^
/Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift:630:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let Python = PythonInterface()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:181:5: warning: let '_Py_ZeroStruct' is not concurrency-safe because non-'Sendable' type 'PyObjectPointer' (aka 'UnsafeMutableRawPointer') may have shared mutable state; this is an error in the Swift 6 language mode
let _Py_ZeroStruct: PyObjectPointer =
    ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:181:5: note: annotate '_Py_ZeroStruct' with '@MainActor' if property should only be accessed from the main actor
let _Py_ZeroStruct: PyObjectPointer =
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:181:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let _Py_ZeroStruct: PyObjectPointer =
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:187:5: warning: let 'PyBool_Type' is not concurrency-safe because non-'Sendable' type 'PyObjectPointer' (aka 'UnsafeMutableRawPointer') may have shared mutable state; this is an error in the Swift 6 language mode
let PyBool_Type: PyObjectPointer =
    ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:187:5: note: annotate 'PyBool_Type' with '@MainActor' if property should only be accessed from the main actor
let PyBool_Type: PyObjectPointer =
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:187:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let PyBool_Type: PyObjectPointer =
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:184:5: warning: let '_Py_TrueStruct' is not concurrency-safe because non-'Sendable' type 'PyObjectPointer' (aka 'UnsafeMutableRawPointer') may have shared mutable state; this is an error in the Swift 6 language mode
let _Py_TrueStruct: PyObjectPointer =
    ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:184:5: note: annotate '_Py_TrueStruct' with '@MainActor' if property should only be accessed from the main actor
let _Py_TrueStruct: PyObjectPointer =
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:184:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let _Py_TrueStruct: PyObjectPointer =
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:190:5: warning: let 'PySlice_Type' is not concurrency-safe because non-'Sendable' type 'PyObjectPointer' (aka 'UnsafeMutableRawPointer') may have shared mutable state; this is an error in the Swift 6 language mode
let PySlice_Type: PyObjectPointer =
    ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:190:5: note: annotate 'PySlice_Type' with '@MainActor' if property should only be accessed from the main actor
let PySlice_Type: PyObjectPointer =
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift:190:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let PySlice_Type: PyObjectPointer =
    ^
nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ Rainbow (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.abi.json
SwiftCompile normal arm64 Compiling\ String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.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/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/String+Rainbow.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.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/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.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/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/ControlCode.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.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/.dependencies/checkouts/Rainbow/Sources/Color.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Color.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64 Emitting\ module\ for\ ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSetSequence.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-appletvos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling PythonLibrary+Symbols.swift (in target 'PythonKit' from project 'PythonKit')
SwiftCompile normal arm64 Compiling\ XcodeColorsSupport.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.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/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling NumpyConversion.swift (in target 'PythonKit' from project 'PythonKit')
SwiftCompile normal arm64 Compiling\ OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.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/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/OutputTarget.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling PythonLibrary.swift (in target 'PythonKit' from project 'PythonKit')
SwiftCompile normal arm64 Compiling\ Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ControlCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/OutputTarget.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/String+Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/XcodeColorsSupport.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Style.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Style.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Style.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Style.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Style.o -index-unit-output-path /Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Style.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
SwiftDriver\ Compilation\ Requirements PythonKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name PythonKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -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-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit-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/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit.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/PythonKit.build/Debug-appletvos/PythonKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-appletvos/PythonKit.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/PythonKit.build/Debug-appletvos/PythonKit.build/Objects-normal/arm64/PythonKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'LoggerKit' from project 'LoggerKit')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'LoggerKit' from project 'LoggerKit')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'PythonKit' from project 'PythonKit')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'PythonTool' from project 'PythonKit')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Rainbow' from project 'Rainbow')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'ArgumentParser' from project 'swift-argument-parser')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Rainbow' from project 'Rainbow')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'ArgumentParser' from project 'swift-argument-parser')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ PythonKit (in target 'PythonKit' from project 'PythonKit')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift (in target 'PythonKit' from project 'PythonKit')
	SwiftCompile normal arm64 Compiling\ Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift (in target 'PythonKit' from project 'PythonKit')
	SwiftCompile normal arm64 Compiling\ Style.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Style.swift (in target 'Rainbow' from project 'Rainbow')
(4 failures)
BUILD FAILURE 6.0 tvOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.