The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SymbolKit, reference 1.0.0 (b45d1f), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 26 Apr 2025 03:27:09 UTC.

Swift 6 data race errors: 58

Build Command

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

Build Log

                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let keyword = Kind(rawValue: "keyword")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let attribute = Kind(rawValue: "attribute")!
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:17:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Equatable, Codable, RawRepresentable {
                  ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: note: add '@MainActor' to make static property 'attribute' part of global actor 'MainActor'
        public static let attribute = Kind(rawValue: "attribute")!
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let attribute = Kind(rawValue: "attribute")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let numberLiteral = Kind(rawValue: "number")!
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:17:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Equatable, Codable, RawRepresentable {
                  ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: note: add '@MainActor' to make static property 'numberLiteral' part of global actor 'MainActor'
        public static let numberLiteral = Kind(rawValue: "number")!
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let numberLiteral = Kind(rawValue: "number")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let stringLiteral = Kind(rawValue: "string")!
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:17:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Equatable, Codable, RawRepresentable {
                  ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: note: add '@MainActor' to make static property 'stringLiteral' part of global actor 'MainActor'
        public static let stringLiteral = Kind(rawValue: "string")!
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let stringLiteral = Kind(rawValue: "string")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let identifier = Kind(rawValue: "identifier")!
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:17:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Equatable, Codable, RawRepresentable {
                  ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
        public static let identifier = Kind(rawValue: "identifier")!
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let identifier = Kind(rawValue: "identifier")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:17:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Equatable, Codable, RawRepresentable {
                  ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: note: add '@MainActor' to make static property 'typeIdentifier' part of global actor 'MainActor'
        public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let genericParameter = Kind(rawValue: "genericParameter")!
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:17:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Equatable, Codable, RawRepresentable {
                  ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: note: add '@MainActor' to make static property 'genericParameter' part of global actor 'MainActor'
        public static let genericParameter = Kind(rawValue: "genericParameter")!
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let genericParameter = Kind(rawValue: "genericParameter")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let externalParameter = Kind(rawValue: "externalParam")!
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:17:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Equatable, Codable, RawRepresentable {
                  ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: note: add '@MainActor' to make static property 'externalParameter' part of global actor 'MainActor'
        public static let externalParameter = Kind(rawValue: "externalParam")!
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let externalParameter = Kind(rawValue: "externalParam")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let internalParameter = Kind(rawValue: "internalParam")!
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:17:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Equatable, Codable, RawRepresentable {
                  ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: note: add '@MainActor' to make static property 'internalParameter' part of global actor 'MainActor'
        public static let internalParameter = Kind(rawValue: "internalParam")!
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let internalParameter = Kind(rawValue: "internalParam")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let text = Kind(rawValue: "text")!
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:17:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Equatable, Codable, RawRepresentable {
                  ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
        public static let text = Kind(rawValue: "text")!
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let text = Kind(rawValue: "text")!
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:28:27: warning: static property 'associatedtype' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `associatedtype` = KindIdentifier(rawValue: "associatedtype")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:28:27: note: add '@MainActor' to make static property 'associatedtype' part of global actor 'MainActor'
        public static let `associatedtype` = KindIdentifier(rawValue: "associatedtype")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:28:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `associatedtype` = KindIdentifier(rawValue: "associatedtype")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:30:27: warning: static property 'class' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `class` = KindIdentifier(rawValue: "class")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:30:27: note: add '@MainActor' to make static property 'class' part of global actor 'MainActor'
        public static let `class` = KindIdentifier(rawValue: "class")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:30:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `class` = KindIdentifier(rawValue: "class")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:32:27: warning: static property 'deinit' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `deinit` = KindIdentifier(rawValue: "deinit")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:32:27: note: add '@MainActor' to make static property 'deinit' part of global actor 'MainActor'
        public static let `deinit` = KindIdentifier(rawValue: "deinit")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:32:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `deinit` = KindIdentifier(rawValue: "deinit")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:34:27: warning: static property 'enum' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `enum` = KindIdentifier(rawValue: "enum")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:34:27: note: add '@MainActor' to make static property 'enum' part of global actor 'MainActor'
        public static let `enum` = KindIdentifier(rawValue: "enum")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:34:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `enum` = KindIdentifier(rawValue: "enum")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:36:27: warning: static property 'case' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `case` = KindIdentifier(rawValue: "enum.case")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:36:27: note: add '@MainActor' to make static property 'case' part of global actor 'MainActor'
        public static let `case` = KindIdentifier(rawValue: "enum.case")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:36:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `case` = KindIdentifier(rawValue: "enum.case")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:38:27: warning: static property 'func' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `func` = KindIdentifier(rawValue: "func")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:38:27: note: add '@MainActor' to make static property 'func' part of global actor 'MainActor'
        public static let `func` = KindIdentifier(rawValue: "func")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:38:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `func` = KindIdentifier(rawValue: "func")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:40:27: warning: static property 'operator' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `operator` = KindIdentifier(rawValue: "func.op")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:40:27: note: add '@MainActor' to make static property 'operator' part of global actor 'MainActor'
        public static let `operator` = KindIdentifier(rawValue: "func.op")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:40:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `operator` = KindIdentifier(rawValue: "func.op")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:42:27: warning: static property 'init' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `init` = KindIdentifier(rawValue: "init")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:42:27: note: add '@MainActor' to make static property 'init' part of global actor 'MainActor'
        public static let `init` = KindIdentifier(rawValue: "init")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:42:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `init` = KindIdentifier(rawValue: "init")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:44:27: warning: static property 'ivar' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let ivar = KindIdentifier(rawValue: "ivar")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:44:27: note: add '@MainActor' to make static property 'ivar' part of global actor 'MainActor'
        public static let ivar = KindIdentifier(rawValue: "ivar")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:44:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let ivar = KindIdentifier(rawValue: "ivar")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:46:27: warning: static property 'macro' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let macro = KindIdentifier(rawValue: "macro")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:46:27: note: add '@MainActor' to make static property 'macro' part of global actor 'MainActor'
        public static let macro = KindIdentifier(rawValue: "macro")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:46:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let macro = KindIdentifier(rawValue: "macro")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:48:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = KindIdentifier(rawValue: "method")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:48:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = KindIdentifier(rawValue: "method")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:48:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = KindIdentifier(rawValue: "method")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:50:27: warning: static property 'property' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let property = KindIdentifier(rawValue: "property")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:50:27: note: add '@MainActor' to make static property 'property' part of global actor 'MainActor'
        public static let property = KindIdentifier(rawValue: "property")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:50:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let property = KindIdentifier(rawValue: "property")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:52:27: warning: static property 'protocol' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `protocol` = KindIdentifier(rawValue: "protocol")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:52:27: note: add '@MainActor' to make static property 'protocol' part of global actor 'MainActor'
        public static let `protocol` = KindIdentifier(rawValue: "protocol")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `protocol` = KindIdentifier(rawValue: "protocol")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:54:27: warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let snippet = KindIdentifier(rawValue: "snippet")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:54:27: note: add '@MainActor' to make static property 'snippet' part of global actor 'MainActor'
        public static let snippet = KindIdentifier(rawValue: "snippet")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let snippet = KindIdentifier(rawValue: "snippet")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:56:27: warning: static property 'snippetGroup' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let snippetGroup = KindIdentifier(rawValue: "snippetGroup")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:56:27: note: add '@MainActor' to make static property 'snippetGroup' part of global actor 'MainActor'
        public static let snippetGroup = KindIdentifier(rawValue: "snippetGroup")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:56:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let snippetGroup = KindIdentifier(rawValue: "snippetGroup")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:58:27: warning: static property 'struct' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `struct` = KindIdentifier(rawValue: "struct")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:58:27: note: add '@MainActor' to make static property 'struct' part of global actor 'MainActor'
        public static let `struct` = KindIdentifier(rawValue: "struct")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `struct` = KindIdentifier(rawValue: "struct")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:60:27: warning: static property 'subscript' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `subscript` = KindIdentifier(rawValue: "subscript")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:60:27: note: add '@MainActor' to make static property 'subscript' part of global actor 'MainActor'
        public static let `subscript` = KindIdentifier(rawValue: "subscript")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:60:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `subscript` = KindIdentifier(rawValue: "subscript")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:62:27: warning: static property 'typeMethod' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let typeMethod = KindIdentifier(rawValue: "type.method")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:62:27: note: add '@MainActor' to make static property 'typeMethod' part of global actor 'MainActor'
        public static let typeMethod = KindIdentifier(rawValue: "type.method")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:62:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let typeMethod = KindIdentifier(rawValue: "type.method")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:64:27: warning: static property 'typeProperty' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let typeProperty = KindIdentifier(rawValue: "type.property")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:64:27: note: add '@MainActor' to make static property 'typeProperty' part of global actor 'MainActor'
        public static let typeProperty = KindIdentifier(rawValue: "type.property")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:64:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let typeProperty = KindIdentifier(rawValue: "type.property")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:66:27: warning: static property 'typeSubscript' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let typeSubscript = KindIdentifier(rawValue: "type.subscript")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:66:27: note: add '@MainActor' to make static property 'typeSubscript' part of global actor 'MainActor'
        public static let typeSubscript = KindIdentifier(rawValue: "type.subscript")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:66:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let typeSubscript = KindIdentifier(rawValue: "type.subscript")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:68:27: warning: static property 'typealias' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `typealias` = KindIdentifier(rawValue: "typealias")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:68:27: note: add '@MainActor' to make static property 'typealias' part of global actor 'MainActor'
        public static let `typealias` = KindIdentifier(rawValue: "typealias")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:68:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `typealias` = KindIdentifier(rawValue: "typealias")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:70:27: warning: static property 'var' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `var` = KindIdentifier(rawValue: "var")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:70:27: note: add '@MainActor' to make static property 'var' part of global actor 'MainActor'
        public static let `var` = KindIdentifier(rawValue: "var")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:70:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `var` = KindIdentifier(rawValue: "var")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:72:27: warning: static property 'module' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let module = KindIdentifier(rawValue: "module")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:72:27: note: add '@MainActor' to make static property 'module' part of global actor 'MainActor'
        public static let module = KindIdentifier(rawValue: "module")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:72:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let module = KindIdentifier(rawValue: "module")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:74:27: warning: static property 'extension' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.KindIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `extension` = KindIdentifier(rawValue: "extension")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:17:19: note: consider making struct 'KindIdentifier' conform to the 'Sendable' protocol
    public struct KindIdentifier: Equatable, Hashable, Codable, CaseIterable {
                  ^
                                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:74:27: note: add '@MainActor' to make static property 'extension' part of global actor 'MainActor'
        public static let `extension` = KindIdentifier(rawValue: "extension")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:74:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `extension` = KindIdentifier(rawValue: "extension")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:87:28: warning: static property '_allCases' 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 _allCases: [String: Self] = [
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:87:28: note: convert '_allCases' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _allCases: [String: Self] = [
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:87:28: note: add '@MainActor' to make static property '_allCases' part of global actor 'MainActor'
        private static var _allCases: [String: Self] = [
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift:87:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _allCases: [String: Self] = [
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:218:20: warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let availability = Availability.symbolCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:218:20: note: add '@MainActor' to make static property 'availability' part of global actor 'MainActor'
        static let availability = Availability.symbolCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:218:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let availability = Availability.symbolCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:219:20: warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let declarationFragments = DeclarationFragments.symbolCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:219:20: note: add '@MainActor' to make static property 'declarationFragments' part of global actor 'MainActor'
        static let declarationFragments = DeclarationFragments.symbolCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:219:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let declarationFragments = DeclarationFragments.symbolCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:220:20: warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let isReadOnly = Mutability.symbolCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:220:20: note: add '@MainActor' to make static property 'isReadOnly' part of global actor 'MainActor'
        static let isReadOnly = Mutability.symbolCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:220:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let isReadOnly = Mutability.symbolCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:221:20: warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let swiftExtension = Swift.Extension.symbolCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:221:20: note: add '@MainActor' to make static property 'swiftExtension' part of global actor 'MainActor'
        static let swiftExtension = Swift.Extension.symbolCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:221:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let swiftExtension = Swift.Extension.symbolCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:222:20: warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let swiftGenerics = Swift.Generics.symbolCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:222:20: note: add '@MainActor' to make static property 'swiftGenerics' part of global actor 'MainActor'
        static let swiftGenerics = Swift.Generics.symbolCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:222:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let swiftGenerics = Swift.Generics.symbolCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:223:20: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let location = Location.symbolCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:223:20: note: add '@MainActor' to make static property 'location' part of global actor 'MainActor'
        static let location = Location.symbolCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:223:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let location = Location.symbolCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:224:20: warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let functionSignature = FunctionSignature.symbolCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:224:20: note: add '@MainActor' to make static property 'functionSignature' part of global actor 'MainActor'
        static let functionSignature = FunctionSignature.symbolCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:224:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let functionSignature = FunctionSignature.symbolCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:225:20: warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let spi = SPI.symbolCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:225:20: note: add '@MainActor' to make static property 'spi' part of global actor 'MainActor'
        static let spi = SPI.symbolCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:225:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let spi = SPI.symbolCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:226:20: warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let snippet = Snippet.symbolCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:226:20: note: add '@MainActor' to make static property 'snippet' part of global actor 'MainActor'
        static let snippet = Snippet.symbolCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:226:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let snippet = Snippet.symbolCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:228:20: warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:228:20: note: add '@MainActor' to make static property 'mixinCodingInfo' part of global actor 'MainActor'
        static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:228:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ SemanticVersion.swift,\ AccessControl.swift,\ Availability.swift,\ AvailabilityItem.swift,\ Domain.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/SemanticVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/AccessControl.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Availability/Availability.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Availability/AvailabilityItem.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Availability/Domain.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/SemanticVersion.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/AccessControl.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Availability/Availability.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Availability/AvailabilityItem.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Availability/Domain.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for ArgumentParserToolInfo (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
SwiftDriver\ Compilation\ Requirements ArgumentParserToolInfo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParserToolInfo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ToolInfo.swift (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ Mixin+Equals.swift,\ Mixin+Hash.swift,\ Mixin.swift,\ LineList.swift,\ Position.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin+Equals.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin+Hash.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/LineList/LineList.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/LineList/SourceRange/Position.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin+Equals.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin+Hash.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/LineList/LineList.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/LineList/SourceRange/Position.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/ArgumentParserToolInfo-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/ArgumentParserToolInfo-Swift.h
SwiftDriverJobDiscovery normal arm64 Emitting module for SymbolKit (in target 'SymbolKit' from project 'SymbolKit')
SwiftDriver\ Compilation\ Requirements SymbolKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SymbolKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SymbolKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit-Swift.h (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SymbolKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftmodule (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftdoc (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.abi.json (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftsourceinfo (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftdoc (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.abi.json (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftsourceinfo (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ Relationship.swift,\ RelationshipKind.swift,\ SourceOrigin.swift,\ GenericConstraints.swift,\ Swift.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/SourceOrigin.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Swift/GenericConstraints.swift /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Swift/Swift.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: note: add '@MainActor' to make static property 'swiftConstraints' part of global actor 'MainActor'
        static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let sourceOrigin = SourceOrigin.relationshipCodingInfo
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: note: add '@MainActor' to make static property 'sourceOrigin' part of global actor 'MainActor'
        static let sourceOrigin = SourceOrigin.relationshipCodingInfo
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let sourceOrigin = SourceOrigin.relationshipCodingInfo
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:120:20: warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
        static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
struct MixinCodingInformation<Key: CodingKey> {
       ^
                                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:120:20: note: add '@MainActor' to make static property 'mixinKeys' part of global actor 'MainActor'
        static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:120:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let memberOf = Kind(rawValue: "memberOf")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:15:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: note: add '@MainActor' to make static property 'memberOf' part of global actor 'MainActor'
        public static let memberOf = Kind(rawValue: "memberOf")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let memberOf = Kind(rawValue: "memberOf")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:42:27: warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let conformsTo = Kind(rawValue: "conformsTo")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:15:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:42:27: note: add '@MainActor' to make static property 'conformsTo' part of global actor 'MainActor'
        public static let conformsTo = Kind(rawValue: "conformsTo")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:42:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let conformsTo = Kind(rawValue: "conformsTo")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:53:27: warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:15:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:53:27: note: add '@MainActor' to make static property 'inheritsFrom' part of global actor 'MainActor'
        public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:53:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:62:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:15:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:62:27: note: add '@MainActor' to make static property 'defaultImplementationOf' part of global actor 'MainActor'
        public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:62:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:70:27: warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let overrides = Kind(rawValue: "overrides")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:15:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:70:27: note: add '@MainActor' to make static property 'overrides' part of global actor 'MainActor'
        public static let overrides = Kind(rawValue: "overrides")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:70:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let overrides = Kind(rawValue: "overrides")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:78:27: warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let requirementOf = Kind(rawValue: "requirementOf")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:15:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:78:27: note: add '@MainActor' to make static property 'requirementOf' part of global actor 'MainActor'
        public static let requirementOf = Kind(rawValue: "requirementOf")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:78:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let requirementOf = Kind(rawValue: "requirementOf")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:86:27: warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:15:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:86:27: note: add '@MainActor' to make static property 'optionalRequirementOf' part of global actor 'MainActor'
        public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:86:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:97:27: warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let extensionTo = Kind(rawValue: "extensionTo")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:15:19: note: consider making struct 'Kind' conform to the 'Sendable' protocol
    public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
                  ^
                                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:97:27: note: add '@MainActor' to make static property 'extensionTo' part of global actor 'MainActor'
        public static let extensionTo = Kind(rawValue: "extensionTo")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:97:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let extensionTo = Kind(rawValue: "extensionTo")
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/SourceOrigin.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/SourceOrigin.swift:16:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var mixinKey = "sourceOrigin"
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/SourceOrigin.swift:16:27: note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
        public static var mixinKey = "sourceOrigin"
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/SourceOrigin.swift:16:27: note: add '@MainActor' to make static property 'mixinKey' part of global actor 'MainActor'
        public static var mixinKey = "sourceOrigin"
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/SourceOrigin.swift:16:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var mixinKey = "sourceOrigin"
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Swift/GenericConstraints.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Swift/GenericConstraints.swift:16:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var mixinKey = "swiftConstraints"
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Swift/GenericConstraints.swift:16:27: note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
        public static var mixinKey = "swiftConstraints"
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Swift/GenericConstraints.swift:16:27: note: add '@MainActor' to make static property 'mixinKey' part of global actor 'MainActor'
        public static var mixinKey = "swiftConstraints"
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Swift/GenericConstraints.swift:16:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var mixinKey = "swiftConstraints"
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Swift/Swift.swift (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriver\ Compilation ArgumentParserToolInfo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParserToolInfo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Names.swift, SPI.swift, Snippet.swift, Extension.swift (in target 'SymbolKit' from project 'SymbolKit')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.o normal (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.o
SwiftDriverJobDiscovery normal arm64 Compiling GenericConstraint.swift, GenericParameter.swift, Generics.swift, Namespace.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftDriver ArgumentParser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
EmitSwiftModule normal arm64 (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ MessageInfo.swift,\ UsageGenerator.swift,\ CollectionExtensions.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/CollectionExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Parsed.swift,\ ParsedValues.swift,\ ParserError.swift,\ SplitArguments.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 (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling SourceRange.swift, Metadata.swift, Module.swift, OperatingSystem.swift, Platform.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftCompile normal arm64 Compiling\ Flag.swift,\ NameSpecification.swift,\ Option.swift,\ OptionGroup.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 (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling SemanticVersion.swift, AccessControl.swift, Availability.swift, AvailabilityItem.swift, Domain.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftCompile normal arm64 Compiling\ ArgumentSet.swift,\ CommandParser.swift,\ InputOrigin.swift,\ Name.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/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 (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Mixin+Equals.swift, Mixin+Hash.swift, Mixin.swift, LineList.swift, Position.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftCompile normal arm64 Compiling\ ParsableArgumentsValidation.swift,\ ParsableCommand.swift,\ ArgumentDecoder.swift,\ ArgumentDefinition.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 (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling UnifiedSymbol+Encodable.swift, UnifiedSymbol.swift, UnifiedSymbolGraph+Encodable.swift, UnifiedSymbolGraph.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftCompile normal arm64 Compiling\ SequenceExtensions.swift,\ StringExtensions.swift,\ Tree.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.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 (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Identifier.swift, KindIdentifier.swift, Location.swift, Mutability.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftCompile normal arm64 Compiling\ CommandConfiguration.swift,\ EnumerableFlag.swift,\ ExpressibleByArgument.swift,\ ParsableArguments.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 (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ DumpHelpGenerator.swift,\ HelpCommand.swift,\ HelpGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.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 (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Symbol.swift, SymbolKind.swift, SymbolGraph.swift, GraphCollector.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftCompile normal arm64 Compiling\ Argument.swift,\ ArgumentHelp.swift,\ CompletionKind.swift,\ Errors.swift /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/CompletionKind.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Relationship.swift, RelationshipKind.swift, SourceOrigin.swift, GenericConstraints.swift, Swift.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftDriverJobDiscovery normal arm64 Compiling DeclarationFragments.swift, Fragment.swift, FragmentKind.swift, FunctionParameter.swift, FunctionSignature.swift (in target 'SymbolKit' from project 'SymbolKit')
SwiftDriver\ Compilation SymbolKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SymbolKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ BashCompletionsGenerator.swift,\ CompletionsGenerator.swift,\ FishCompletionsGenerator.swift,\ ZshCompletionsGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.o normal (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.o
SwiftDriverJobDiscovery normal arm64 Compiling CommandConfiguration.swift, EnumerableFlag.swift, ExpressibleByArgument.swift, ParsableArguments.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftDriver\ Compilation\ Requirements ArgumentParser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Argument.swift, ArgumentHelp.swift, CompletionKind.swift, Errors.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/ArgumentParser-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/ArgumentParser-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.swiftmodule/arm64-apple-macos.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling SequenceExtensions.swift, StringExtensions.swift, Tree.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftdoc (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.abi.json (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftsourceinfo (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ArgumentParserToolInfo --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier swift-argument-parser.ArgumentParserToolInfo --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/ArgumentParserToolInfo.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/ArgumentParserToolInfo.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-25 20:27:07.606 appintentsmetadataprocessor[769:4226] Starting appintentsmetadataprocessor export
2025-04-25 20:27:07.658 appintentsmetadataprocessor[769:4226] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriver dump-unified-graph normal arm64 com.apple.xcode.tools.swift.compiler (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name dump_unified_graph -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ dump_unified_graph (in target 'dump-unified-graph' from project 'SymbolKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift:17:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    static let configuration = CommandConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
public struct CommandConfiguration {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
import ArgumentParser
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift:17:16: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    static let configuration = CommandConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let configuration = CommandConfiguration(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ DumpUnifiedGraph.swift /Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift (in target 'dump-unified-graph' from project 'SymbolKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift:17:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    static let configuration = CommandConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
public struct CommandConfiguration {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
import ArgumentParser
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift:17:16: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    static let configuration = CommandConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let configuration = CommandConfiguration(
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling MessageInfo.swift, UsageGenerator.swift, CollectionExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
ExtractAppIntentsMetadata (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SymbolKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.SymbolKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/SymbolKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/SymbolKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-25 20:27:07.606 appintentsmetadataprocessor[772:4245] Starting appintentsmetadataprocessor export
2025-04-25 20:27:07.657 appintentsmetadataprocessor[772:4245] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Parsed.swift, ParsedValues.swift, ParserError.swift, SplitArguments.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftDriverJobDiscovery normal arm64 Compiling Flag.swift, NameSpecification.swift, Option.swift, OptionGroup.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.o (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.o (in target 'SymbolKit' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SymbolKit.o
SwiftDriverJobDiscovery normal arm64 Emitting module for dump_unified_graph (in target 'dump-unified-graph' from project 'SymbolKit')
SwiftDriver\ Compilation\ Requirements dump-unified-graph normal arm64 com.apple.xcode.tools.swift.compiler (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name dump_unified_graph -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump_unified_graph.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftdoc (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump_unified_graph.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump_unified_graph.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftmodule (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump_unified_graph.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump_unified_graph.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.abi.json (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump_unified_graph.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump_unified_graph.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftsourceinfo (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump_unified_graph.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling DumpHelpGenerator.swift, HelpCommand.swift, HelpGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftDriverJobDiscovery normal arm64 Compiling ArgumentSet.swift, CommandParser.swift, InputOrigin.swift, Name.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftDriverJobDiscovery normal arm64 Compiling ParsableArgumentsValidation.swift, ParsableCommand.swift, ArgumentDecoder.swift, ArgumentDefinition.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftDriverJobDiscovery normal arm64 Compiling DumpUnifiedGraph.swift (in target 'dump-unified-graph' from project 'SymbolKit')
SwiftDriver\ Compilation dump-unified-graph normal arm64 com.apple.xcode.tools.swift.compiler (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name dump_unified_graph -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling BashCompletionsGenerator.swift, CompletionsGenerator.swift, FishCompletionsGenerator.swift, ZshCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftDriver\ Compilation ArgumentParser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o normal (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o
ExtractAppIntentsMetadata (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ArgumentParser --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier swift-argument-parser.ArgumentParser --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/ArgumentParser.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/ArgumentParser.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-25 20:27:08.031 appintentsmetadataprocessor[775:4281] Starting appintentsmetadataprocessor export
2025-04-25 20:27:08.066 appintentsmetadataprocessor[775:4281] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump-unified-graph normal (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump-unified-graph_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/dump-unified-graph.build/Objects-normal/arm64/dump_unified_graph.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump-unified-graph -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SymbolKit.build/Debug/SymbolKit.build/Objects-normal/arm64/SymbolKit.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump-unified-graph (in target 'dump-unified-graph' from project 'SymbolKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/dump-unified-graph
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:f4b9d0c4a7c7f87812cc324089fcb462f21c3551, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:f4b9d0c4a7c7f87812cc324089fcb462f21c3551, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:f4b9d0c4a7c7f87812cc324089fcb462f21c3551, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:f4b9d0c4a7c7f87812cc324089fcb462f21c3551, name:My Mac }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.1",
            "upper_bound" : "1.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    }
  ],
  "manifest_display_name" : "SymbolKit",
  "name" : "SymbolKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SymbolKit",
      "targets" : [
        "SymbolKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "dump-unified-graph",
      "targets" : [
        "dump-unified-graph"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "dump_unified_graph",
      "module_type" : "SwiftTarget",
      "name" : "dump-unified-graph",
      "path" : "Sources/dump-unified-graph",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "dump-unified-graph"
      ],
      "sources" : [
        "DumpUnifiedGraph.swift"
      ],
      "target_dependencies" : [
        "SymbolKit"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SymbolKitTests",
      "module_type" : "SwiftTarget",
      "name" : "SymbolKitTests",
      "path" : "Tests/SymbolKitTests",
      "sources" : [
        "SymbolGraph/LineList/LineListTests.swift",
        "SymbolGraph/LineList/SemanticVersionTests.swift",
        "SymbolGraph/ModuleTests.swift",
        "SymbolGraph/PlatformTests.swift",
        "SymbolGraph/Relationship/HashableTests.swift",
        "SymbolGraph/Symbol/SymbolKindTests.swift",
        "SymbolGraph/SymbolGraphCreationTests.swift",
        "SymbolGraph/SymbolGraphTests.swift",
        "SymbolGraph/SymbolTests.swift",
        "UnifiedGraph/GraphCollectorTests.swift",
        "UnifiedGraph/UnifiedGraphTests.swift",
        "UnifiedGraph/UnifiedSymbolTests.swift"
      ],
      "target_dependencies" : [
        "SymbolKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SymbolKit",
      "module_type" : "SwiftTarget",
      "name" : "SymbolKit",
      "path" : "Sources/SymbolKit",
      "product_memberships" : [
        "SymbolKit",
        "dump-unified-graph"
      ],
      "sources" : [
        "Mixin/Mixin+Equals.swift",
        "Mixin/Mixin+Hash.swift",
        "Mixin/Mixin.swift",
        "SymbolGraph/LineList/LineList.swift",
        "SymbolGraph/LineList/SourceRange/Position.swift",
        "SymbolGraph/LineList/SourceRange/SourceRange.swift",
        "SymbolGraph/Metadata.swift",
        "SymbolGraph/Module.swift",
        "SymbolGraph/OperatingSystem.swift",
        "SymbolGraph/Platform.swift",
        "SymbolGraph/Relationship/Relationship.swift",
        "SymbolGraph/Relationship/RelationshipKind.swift",
        "SymbolGraph/Relationship/SourceOrigin.swift",
        "SymbolGraph/Relationship/Swift/GenericConstraints.swift",
        "SymbolGraph/Relationship/Swift/Swift.swift",
        "SymbolGraph/SemanticVersion.swift",
        "SymbolGraph/Symbol/AccessControl.swift",
        "SymbolGraph/Symbol/Availability/Availability.swift",
        "SymbolGraph/Symbol/Availability/AvailabilityItem.swift",
        "SymbolGraph/Symbol/Availability/Domain.swift",
        "SymbolGraph/Symbol/DeclarationFragments/DeclarationFragments.swift",
        "SymbolGraph/Symbol/DeclarationFragments/Fragment/Fragment.swift",
        "SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift",
        "SymbolGraph/Symbol/FunctionSignature/FunctionParameter.swift",
        "SymbolGraph/Symbol/FunctionSignature/FunctionSignature.swift",
        "SymbolGraph/Symbol/Identifier.swift",
        "SymbolGraph/Symbol/KindIdentifier.swift",
        "SymbolGraph/Symbol/Location.swift",
        "SymbolGraph/Symbol/Mutability.swift",
        "SymbolGraph/Symbol/Names.swift",
        "SymbolGraph/Symbol/SPI.swift",
        "SymbolGraph/Symbol/Snippet.swift",
        "SymbolGraph/Symbol/Swift/Extension.swift",
        "SymbolGraph/Symbol/Swift/GenericConstraint.swift",
        "SymbolGraph/Symbol/Swift/GenericParameter.swift",
        "SymbolGraph/Symbol/Swift/Generics.swift",
        "SymbolGraph/Symbol/Swift/Namespace.swift",
        "SymbolGraph/Symbol/Symbol.swift",
        "SymbolGraph/Symbol/SymbolKind.swift",
        "SymbolGraph/SymbolGraph.swift",
        "UnifiedSymbolGraph/GraphCollector.swift",
        "UnifiedSymbolGraph/UnifiedSymbol+Encodable.swift",
        "UnifiedSymbolGraph/UnifiedSymbol.swift",
        "UnifiedSymbolGraph/UnifiedSymbolGraph+Encodable.swift",
        "UnifiedSymbolGraph/UnifiedSymbolGraph.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.