The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build PythonKit, reference master (977002), with Swift 6.0 for watchOS using Xcode 16.0 on 4 Nov 2024 03:32:44 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme PythonKit-Package -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/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/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/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)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:31:24: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PythonLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let shared = PythonLibrary()
                       ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:30:15: note: consider making struct 'PythonLibrary' conform to the 'Sendable' protocol
public struct PythonLibrary {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:31:24: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    private static let shared = PythonLibrary()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:31:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let shared = PythonLibrary()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: warning: static property 'librarySymbolsLoaded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var librarySymbolsLoaded = false
                       ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: note: convert 'librarySymbolsLoaded' to a 'let' constant to make 'Sendable' shared state immutable
    private static var librarySymbolsLoaded = false
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: note: annotate 'librarySymbolsLoaded' with '@MainActor' if property should only be accessed from the main actor
    private static var librarySymbolsLoaded = false
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var librarySymbolsLoaded = false
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: warning: static property 'libraryNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var libraryNames = ["Python.framework/Versions/:/Python"]
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: note: convert 'libraryNames' to a 'let' constant to make 'Sendable' shared state immutable
    static var libraryNames = ["Python.framework/Versions/:/Python"]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: note: annotate 'libraryNames' with '@MainActor' if property should only be accessed from the main actor
    static var libraryNames = ["Python.framework/Versions/:/Python"]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var libraryNames = ["Python.framework/Versions/:/Python"]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: warning: static property 'libraryPathExtensions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var libraryPathExtensions = [""]
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: note: convert 'libraryPathExtensions' to a 'let' constant to make 'Sendable' shared state immutable
    static var libraryPathExtensions = [""]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: note: annotate 'libraryPathExtensions' with '@MainActor' if property should only be accessed from the main actor
    static var libraryPathExtensions = [""]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var libraryPathExtensions = [""]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: warning: static property 'librarySearchPaths' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: note: convert 'librarySearchPaths' to a 'let' constant to make 'Sendable' shared state immutable
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: note: annotate 'librarySearchPaths' with '@MainActor' if property should only be accessed from the main actor
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: warning: static property 'libraryVersionSeparator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var libraryVersionSeparator = "."
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: note: convert 'libraryVersionSeparator' to a 'let' constant to make 'Sendable' shared state immutable
    static var libraryVersionSeparator = "."
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: note: annotate 'libraryVersionSeparator' with '@MainActor' if property should only be accessed from the main actor
    static var libraryVersionSeparator = "."
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var libraryVersionSeparator = "."
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ PythonLibrary.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.o -index-unit-output-path /PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/PythonKit/NumpyConversion.swift /Users/admin/builder/spi-builder-workspace/PythonKit/Python.swift /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary+Symbols.swift -primary-file /Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.o -index-unit-output-path /PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64_32/PythonLibrary.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal armv7k Emitting\ module\ for\ PythonKit (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/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 -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit.abi.json
EmitSwiftModule normal armv7k (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /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 -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/armv7k/PythonKit.abi.json
/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/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/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)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:31:24: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PythonLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let shared = PythonLibrary()
                       ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:30:15: note: consider making struct 'PythonLibrary' conform to the 'Sendable' protocol
public struct PythonLibrary {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:31:24: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    private static let shared = PythonLibrary()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:31:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let shared = PythonLibrary()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: warning: static property 'librarySymbolsLoaded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var librarySymbolsLoaded = false
                       ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: note: convert 'librarySymbolsLoaded' to a 'let' constant to make 'Sendable' shared state immutable
    private static var librarySymbolsLoaded = false
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: note: annotate 'librarySymbolsLoaded' with '@MainActor' if property should only be accessed from the main actor
    private static var librarySymbolsLoaded = false
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:33:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var librarySymbolsLoaded = false
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: warning: static property 'libraryNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var libraryNames = ["Python.framework/Versions/:/Python"]
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: note: convert 'libraryNames' to a 'let' constant to make 'Sendable' shared state immutable
    static var libraryNames = ["Python.framework/Versions/:/Python"]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: note: annotate 'libraryNames' with '@MainActor' if property should only be accessed from the main actor
    static var libraryNames = ["Python.framework/Versions/:/Python"]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:157:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var libraryNames = ["Python.framework/Versions/:/Python"]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: warning: static property 'libraryPathExtensions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var libraryPathExtensions = [""]
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: note: convert 'libraryPathExtensions' to a 'let' constant to make 'Sendable' shared state immutable
    static var libraryPathExtensions = [""]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: note: annotate 'libraryPathExtensions' with '@MainActor' if property should only be accessed from the main actor
    static var libraryPathExtensions = [""]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:158:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var libraryPathExtensions = [""]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: warning: static property 'librarySearchPaths' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: note: convert 'librarySearchPaths' to a 'let' constant to make 'Sendable' shared state immutable
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: note: annotate 'librarySearchPaths' with '@MainActor' if property should only be accessed from the main actor
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:159:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var librarySearchPaths = ["", "/usr/local/Frameworks/"]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: warning: static property 'libraryVersionSeparator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var libraryVersionSeparator = "."
               ^
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: note: convert 'libraryVersionSeparator' to a 'let' constant to make 'Sendable' shared state immutable
    static var libraryVersionSeparator = "."
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: note: annotate 'libraryVersionSeparator' with '@MainActor' if property should only be accessed from the main actor
    static var libraryVersionSeparator = "."
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/PythonKit/PythonLibrary.swift:160:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var libraryVersionSeparator = "."
               ^
    nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ PythonKit (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/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 -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit.abi.json
EmitSwiftModule normal arm64 (in target 'PythonKit' from project 'PythonKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /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 -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit.abi.json
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/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.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-watchos/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-watchos/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-watchos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.o -index-unit-output-path /PythonKit.build/Debug-watchos/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/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.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-watchos/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-watchos/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-watchos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonLibrary+Symbols.o -index-unit-output-path /PythonKit.build/Debug-watchos/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 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/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.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-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.o -index-unit-output-path /PythonKit.build/Debug-watchos/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/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.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-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/PythonKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PythonKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.o -index-unit-output-path /PythonKit.build/Debug-watchos/PythonKit.build/Objects-normal/arm64/NumpyConversion.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal armv7k Emitting\ module\ for\ Rainbow (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.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 armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow.abi.json
EmitSwiftModule normal armv7k (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-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 armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/armv7k/Rainbow.abi.json
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Rainbow (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.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_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow.abi.json
EmitSwiftModule normal arm64_32 (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-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_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64_32/Rainbow.abi.json
SwiftEmitModule normal arm64 Emitting\ module\ for\ Rainbow (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.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-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/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-watchos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Rainbow-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/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-watchos/Rainbow.build/Objects-normal/arm64/Rainbow-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Rainbow.abi.json
EmitSwiftModule normal arm64 (in target 'Rainbow' from project 'Rainbow')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-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-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/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-watchos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Rainbow-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/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-watchos/Rainbow.build/Objects-normal/arm64/Rainbow-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Rainbow.abi.json
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.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_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.abi.json
SwiftEmitModule normal arm64 Emitting\ module\ for\ ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.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-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/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-watchos/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-watchos/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-watchos/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-watchos/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-watchos/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-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.abi.json
Command SwiftEmitModule failed with a nonzero exit code
SwiftEmitModule normal armv7k Emitting\ module\ for\ ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.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 armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.abi.json
Command SwiftEmitModule failed with a nonzero exit code
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/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.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-watchos/Rainbow.build/Objects-normal/arm64/Color.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Color.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Color.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Color.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Rainbow -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Color.o -index-unit-output-path /Rainbow.build/Debug-watchos/Rainbow.build/Objects-normal/arm64/Color.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
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ PythonKit (in target 'PythonKit' from project 'PythonKit')
	EmitSwiftModule normal arm64_32 (in target 'PythonKit' from project 'PythonKit')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ PythonKit (in target 'PythonKit' from project 'PythonKit')
	EmitSwiftModule normal armv7k (in target 'PythonKit' from project 'PythonKit')
	SwiftEmitModule normal arm64 Emitting\ module\ for\ ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
	SwiftCompile normal arm64 Compiling\ Color.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow/Sources/Color.swift (in target 'Rainbow' from project 'Rainbow')
	Building workspace spi-builder-workspace with scheme PythonKit-Package
(8 failures)
BUILD FAILURE 6.0 watchOS