Build Information
Failed to build PythonKit with Swift 6.0 for iOS 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=ios OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
212 |
213 | /// A failed call on a `PythonObject`.
/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
87 | @dynamicCallable
88 | @dynamicMemberLookup
89 | public struct PythonObject {
| `- note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
90 | /// The underlying `PyReference`.
91 | fileprivate var reference: PyReference
:
209 | public enum PythonError : Error, Equatable {
210 | /// A Python runtime exception, produced by calling a Python function.
211 | case exception(PythonObject, traceback: PythonObject?)
| `- 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
212 |
213 | /// A failed call on a `PythonObject`.
/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
87 | @dynamicCallable
88 | @dynamicMemberLookup
89 | public struct PythonObject {
| `- note: consider making struct 'PythonObject' conform to the 'Sendable' protocol
90 | /// The underlying `PyReference`.
91 | fileprivate var reference: PyReference
:
217 | /// object.
218 | /// - An invalid keyword argument was specified.
219 | case invalidCall(PythonObject)
| `- warning: associated value 'invalidCall' of 'Sendable'-conforming enum 'PythonError' has non-sendable type 'PythonObject'; this is an error in the Swift 6 language mode
220 |
221 | /// A module import error.
/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
179 | legacyName: "PyString_FromStringAndSize")
180 |
181 | let _Py_ZeroStruct: PyObjectPointer =
| |- 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
| |- note: annotate '_Py_ZeroStruct' 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
182 | PythonLibrary.loadSymbol(name: "_Py_ZeroStruct")
183 |
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafeMutableRawPointer : _Pointer {
| `- note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
2 | public typealias Pointee = UInt8
3 | public let _rawValue: Builtin.RawPointer
/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
182 | PythonLibrary.loadSymbol(name: "_Py_ZeroStruct")
183 |
184 | let _Py_TrueStruct: PyObjectPointer =
| |- 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
| |- note: annotate '_Py_TrueStruct' 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
185 | PythonLibrary.loadSymbol(name: "_Py_TrueStruct")
186 |
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafeMutableRawPointer : _Pointer {
| `- note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
2 | public typealias Pointee = UInt8
3 | public let _rawValue: Builtin.RawPointer
/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
185 | PythonLibrary.loadSymbol(name: "_Py_TrueStruct")
186 |
187 | let PyBool_Type: PyObjectPointer =
| |- 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
| |- note: annotate 'PyBool_Type' 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
188 | PythonLibrary.loadSymbol(name: "PyBool_Type")
189 |
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafeMutableRawPointer : _Pointer {
| `- note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
2 | public typealias Pointee = UInt8
3 | public let _rawValue: Builtin.RawPointer
/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
188 | PythonLibrary.loadSymbol(name: "PyBool_Type")
189 |
190 | let PySlice_Type: PyObjectPointer =
| |- 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
| |- note: annotate 'PySlice_Type' 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
191 | PythonLibrary.loadSymbol(name: "PySlice_Type")
192 |
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafeMutableRawPointer : _Pointer {
| `- note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
2 | public typealias Pointee = UInt8
3 | public let _rawValue: Builtin.RawPointer
/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
28 | //===----------------------------------------------------------------------===//
29 |
30 | public struct PythonLibrary {
| `- note: consider making struct 'PythonLibrary' conform to the 'Sendable' protocol
31 | private static let shared = PythonLibrary()
| |- 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
| |- 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\ 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-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.o -index-unit-output-path /PythonKit.build/Debug-iphoneos/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-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/PythonKit.build/Objects-normal/arm64/NumpyConversion.o -index-unit-output-path /PythonKit.build/Debug-iphoneos/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+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-iphoneos/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-iphoneos/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-iphoneos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.o -index-unit-output-path /PythonKit.build/Debug-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.o -index-unit-output-path /PythonKit.build/Debug-iphoneos/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\ 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-iphoneos/PythonKit.build/Objects-normal/arm64/Python.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/Python.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/Python.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/Python.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/PythonKit.build/Objects-normal/arm64/Python.o -index-unit-output-path /PythonKit.build/Debug-iphoneos/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-iphoneos/PythonKit.build/Objects-normal/arm64/Python.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/Python.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/Python.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/Python.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/PythonKit.build/Objects-normal/arm64/Python.o -index-unit-output-path /PythonKit.build/Debug-iphoneos/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-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/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-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow.abi.json
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-iphoneos/Rainbow.build/Objects-normal/arm64/Color.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Color.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Color.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Color.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/Color.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/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-iphoneos/Rainbow.build/Objects-normal/arm64/Color.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Color.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Color.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Color.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/Color.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/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 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-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/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-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/XcodeColorsSupport.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/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 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-iphoneos/Rainbow.build/Objects-normal/arm64/Style.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Style.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Style.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Style.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/Style.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Style.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/Style.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 -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-iphoneos/Rainbow.build/Objects-normal/arm64/Style.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Style.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Style.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Style.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/Style.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Style.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ StringGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/StringGenerator.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 -primary-file /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-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.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/StringGenerator.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 -primary-file /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-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/StringGenerator.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-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/ArgumentParser.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/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\ BackgroundColor.swift,\ CodesParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/CodesParser.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 -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift -primary-file /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 -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.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/BackgroundColor.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 -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift -primary-file /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 -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.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/CodesParser.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 -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/BackgroundColor.swift -primary-file /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 -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/BackgroundColor.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/CodesParser.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\ ModesExtractor.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/ModesExtractor.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 -primary-file /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-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.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/ModesExtractor.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 -primary-file /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-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/ModesExtractor.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
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-iphoneos/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/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios12.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-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/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-iphoneos/PythonKit.build/Objects-normal/arm64/PythonKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
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-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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-iphoneos/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-iphoneos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-iphoneos/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 iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.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-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow.o -index-unit-output-path /Rainbow.build/Debug-iphoneos/Rainbow.build/Objects-normal/arm64/Rainbow.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
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PythonKit.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftmodule (in target 'PythonKit' from project 'PythonKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PythonKit.swiftmodule/arm64-apple-ios.swiftmodule
error: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftmodule: No such file or directory (in target 'PythonKit' from project 'PythonKit')
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 '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 'LoggerKit' from project 'LoggerKit')
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 'PythonKit' from project 'PythonKit')
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 '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 Compiling\ Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift (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\ Rainbow.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Rainbow.swift (in target 'Rainbow' from project 'Rainbow')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PythonKit.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-iphoneos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftmodule (in target 'PythonKit' from project 'PythonKit')
(5 failures)
BUILD FAILURE 6.0 iOS