The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Yams, reference 4.0.1 (138cf1), with Swift 6.1 for iOS using Xcode 16.3 on 24 Jan 2026 10:36:04 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Yams -destination generic/platform=iOS

Build Log

              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:46:10: warning: associated value 'parser(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'YamlError.Context'; this is an error in the Swift 6 language mode
    case parser(context: Context?, problem: String, Mark, yaml: String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:78:19: note: consider making struct 'Context' conform to the 'Sendable' protocol
    public struct Context: CustomStringConvertible {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:46:10: warning: associated value 'parser(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'Mark'; this is an error in the Swift 6 language mode
    case parser(context: Context?, problem: String, Mark, yaml: String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift:10:15: note: consider making struct 'Mark' conform to the 'Sendable' protocol
public struct Mark {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:54:10: warning: associated value 'composer(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'YamlError.Context'; this is an error in the Swift 6 language mode
    case composer(context: Context?, problem: String, Mark, yaml: String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:78:19: note: consider making struct 'Context' conform to the 'Sendable' protocol
    public struct Context: CustomStringConvertible {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:54:10: warning: associated value 'composer(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'Mark'; this is an error in the Swift 6 language mode
    case composer(context: Context?, problem: String, Mark, yaml: String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift:10:15: note: consider making struct 'Mark' conform to the 'Sendable' protocol
public struct Mark {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Node' may have shared mutable state; this is an error in the Swift 6 language mode
    static let null = Node("null", Tag(.null))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift:12:13: note: consider making enum 'Node' conform to the 'Sendable' protocol
public enum Node: Hashable {
            ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
    static let null = Node("null", Tag(.null))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let null = Node("null", Tag(.null))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Node' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unused = Node("", .unused)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift:12:13: note: consider making enum 'Node' conform to the 'Sendable' protocol
public enum Node: Hashable {
            ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
    static let unused = Node("", .unused)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unused = Node("", .unused)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unused = Tag(.unused)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:10:20: note: class 'Tag' does not conform to the 'Sendable' protocol
public final class Tag {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
    static let unused = Tag(.unused)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unused = Tag(.unused)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unused: Tag.Name = "tag:yams.encoder:unused"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
    static let unused: Tag.Name = "tag:yams.encoder:unused"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unused: Tag.Name = "tag:yams.encoder:unused"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: warning: static property 'implicit' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let implicit: Tag.Name = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: note: add '@MainActor' to make static property 'implicit' part of global actor 'MainActor'
    public static let implicit: Tag.Name = ""
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let implicit: Tag.Name = ""
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: warning: static property 'nonSpecific' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let nonSpecific: Tag.Name = "!"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: note: add '@MainActor' to make static property 'nonSpecific' part of global actor 'MainActor'
    public static let nonSpecific: Tag.Name = "!"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let nonSpecific: Tag.Name = "!"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: warning: static property 'str' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let str: Tag.Name = "tag:yaml.org,2002:str"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: note: add '@MainActor' to make static property 'str' part of global actor 'MainActor'
    public static let str: Tag.Name = "tag:yaml.org,2002:str"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let str: Tag.Name = "tag:yaml.org,2002:str"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: warning: static property 'seq' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let seq: Tag.Name  = "tag:yaml.org,2002:seq"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: note: add '@MainActor' to make static property 'seq' part of global actor 'MainActor'
    public static let seq: Tag.Name  = "tag:yaml.org,2002:seq"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let seq: Tag.Name  = "tag:yaml.org,2002:seq"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: warning: static property 'map' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let map: Tag.Name  = "tag:yaml.org,2002:map"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: note: add '@MainActor' to make static property 'map' part of global actor 'MainActor'
    public static let map: Tag.Name  = "tag:yaml.org,2002:map"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let map: Tag.Name  = "tag:yaml.org,2002:map"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: warning: static property 'bool' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bool: Tag.Name  = "tag:yaml.org,2002:bool"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: note: add '@MainActor' to make static property 'bool' part of global actor 'MainActor'
    public static let bool: Tag.Name  = "tag:yaml.org,2002:bool"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bool: Tag.Name  = "tag:yaml.org,2002:bool"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: warning: static property 'float' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let float: Tag.Name  =  "tag:yaml.org,2002:float"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
    public static let float: Tag.Name  =  "tag:yaml.org,2002:float"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let float: Tag.Name  =  "tag:yaml.org,2002:float"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let null: Tag.Name  = "tag:yaml.org,2002:null"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
    public static let null: Tag.Name  = "tag:yaml.org,2002:null"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let null: Tag.Name  = "tag:yaml.org,2002:null"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: warning: static property 'int' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let int: Tag.Name  = "tag:yaml.org,2002:int"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: note: add '@MainActor' to make static property 'int' part of global actor 'MainActor'
    public static let int: Tag.Name  = "tag:yaml.org,2002:int"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let int: Tag.Name  = "tag:yaml.org,2002:int"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binary: Tag.Name  = "tag:yaml.org,2002:binary"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    public static let binary: Tag.Name  = "tag:yaml.org,2002:binary"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binary: Tag.Name  = "tag:yaml.org,2002:binary"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: warning: static property 'merge' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let merge: Tag.Name  = "tag:yaml.org,2002:merge"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: note: add '@MainActor' to make static property 'merge' part of global actor 'MainActor'
    public static let merge: Tag.Name  = "tag:yaml.org,2002:merge"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let merge: Tag.Name  = "tag:yaml.org,2002:merge"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: warning: static property 'omap' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let omap: Tag.Name  = "tag:yaml.org,2002:omap"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: note: add '@MainActor' to make static property 'omap' part of global actor 'MainActor'
    public static let omap: Tag.Name  = "tag:yaml.org,2002:omap"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let omap: Tag.Name  = "tag:yaml.org,2002:omap"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: warning: static property 'pairs' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pairs: Tag.Name  = "tag:yaml.org,2002:pairs"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: note: add '@MainActor' to make static property 'pairs' part of global actor 'MainActor'
    public static let pairs: Tag.Name  = "tag:yaml.org,2002:pairs"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pairs: Tag.Name  = "tag:yaml.org,2002:pairs"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: warning: static property 'set' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let set: Tag.Name  = "tag:yaml.org,2002:set"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: note: add '@MainActor' to make static property 'set' part of global actor 'MainActor'
    public static let set: Tag.Name  = "tag:yaml.org,2002:set"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let set: Tag.Name  = "tag:yaml.org,2002:set"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let timestamp: Tag.Name  = "tag:yaml.org,2002:timestamp"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
    public static let timestamp: Tag.Name  = "tag:yaml.org,2002:timestamp"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let timestamp: Tag.Name  = "tag:yaml.org,2002:timestamp"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let value: Tag.Name  = "tag:yaml.org,2002:value"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: note: add '@MainActor' to make static property 'value' part of global actor 'MainActor'
    public static let value: Tag.Name  = "tag:yaml.org,2002:value"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let value: Tag.Name  = "tag:yaml.org,2002:value"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let yaml: Tag.Name  = "tag:yaml.org,2002:yaml"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: note: add '@MainActor' to make static property 'yaml' part of global actor 'MainActor'
    public static let yaml: Tag.Name  = "tag:yaml.org,2002:yaml"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let yaml: Tag.Name  = "tag:yaml.org,2002:yaml"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Encoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250956925098-swift-frontend-Yams-Encoder.swift-arm64_apple_ios8.0-o-Onone-3545572374.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5402 seconds (3.3307 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0251 (  6.5%)   0.0304 ( 19.9%)   0.0555 ( 10.3%)   1.4238 ( 42.7%)  parse-and-resolve-imports
   0.0219 (  5.6%)   0.0285 ( 18.7%)   0.0503 (  9.3%)   1.4186 ( 42.6%)  Import resolution
   0.0680 ( 17.6%)   0.0138 (  9.1%)   0.0818 ( 15.2%)   0.0819 (  2.5%)  perform-sema
   0.0679 ( 17.5%)   0.0138 (  9.0%)   0.0817 ( 15.1%)   0.0818 (  2.5%)  Type checking and Semantic analysis
   0.0016 (  0.4%)   0.0145 (  9.5%)   0.0161 (  3.0%)   0.0693 (  2.1%)  load-stdlib
   0.0506 ( 13.1%)   0.0164 ( 10.7%)   0.0670 ( 12.4%)   0.0673 (  2.0%)  build-rewrite-system
   0.0341 (  8.8%)   0.0064 (  4.2%)   0.0404 (  7.5%)   0.0405 (  1.2%)  typecheck-decl
   0.0319 (  8.2%)   0.0072 (  4.7%)   0.0391 (  7.2%)   0.0391 (  1.2%)  typecheck-stmt
   0.0254 (  6.6%)   0.0060 (  4.0%)   0.0315 (  5.8%)   0.0315 (  0.9%)  typecheck-expr
   0.0140 (  3.6%)   0.0052 (  3.4%)   0.0192 (  3.6%)   0.0192 (  0.6%)  IRGen
   0.0146 (  3.8%)   0.0028 (  1.8%)   0.0173 (  3.2%)   0.0174 (  0.5%)  SILGen
   0.0132 (  3.4%)   0.0036 (  2.3%)   0.0168 (  3.1%)   0.0168 (  0.5%)  precheck-target
   0.0088 (  2.3%)   0.0002 (  0.1%)   0.0090 (  1.7%)   0.0091 (  0.3%)  SIL optimization
   0.0078 (  2.0%)   0.0010 (  0.6%)   0.0088 (  1.6%)   0.0087 (  0.3%)  SILGen-function
   0.0021 (  0.5%)   0.0030 (  1.9%)   0.0050 (  0.9%)   0.0050 (  0.2%)  import-clang-decl
   0.0004 (  0.1%)   0.0001 (  0.0%)   0.0005 (  0.1%)   0.0005 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.3875 (100.0%)   0.1527 (100.0%)   0.5402 (100.0%)   3.3307 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.4222 seconds (2.9416 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.7133 (100.0%)   0.7089 (100.0%)   1.4222 (100.0%)   2.9416 (100.0%)  Building Target
   0.7133 (100.0%)   0.7089 (100.0%)   1.4222 (100.0%)   2.9416 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Node' may have shared mutable state; this is an error in the Swift 6 language mode
    static let null = Node("null", Tag(.null))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift:12:13: note: consider making enum 'Node' conform to the 'Sendable' protocol
public enum Node: Hashable {
            ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
    static let null = Node("null", Tag(.null))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let null = Node("null", Tag(.null))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Node' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unused = Node("", .unused)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift:12:13: note: consider making enum 'Node' conform to the 'Sendable' protocol
public enum Node: Hashable {
            ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
    static let unused = Node("", .unused)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unused = Node("", .unused)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unused = Tag(.unused)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:10:20: note: class 'Tag' does not conform to the 'Sendable' protocol
public final class Tag {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
    static let unused = Tag(.unused)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unused = Tag(.unused)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unused: Tag.Name = "tag:yams.encoder:unused"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
    static let unused: Tag.Name = "tag:yams.encoder:unused"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unused: Tag.Name = "tag:yams.encoder:unused"
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Mark.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250956938415-swift-frontend-Yams-Mark.swift-arm64_apple_ios8.0-o-Onone-2459537993.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 2.8632 seconds (3.1148 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.9948 ( 46.2%)   0.3208 ( 45.2%)   1.3156 ( 45.9%)   1.4329 ( 46.0%)  parse-and-resolve-imports
   0.9909 ( 46.0%)   0.3160 ( 44.5%)   1.3069 ( 45.6%)   1.4172 ( 45.5%)  Import resolution
   0.0488 (  2.3%)   0.0110 (  1.6%)   0.0598 (  2.1%)   0.0598 (  1.9%)  build-rewrite-system
   0.0113 (  0.5%)   0.0137 (  1.9%)   0.0250 (  0.9%)   0.0366 (  1.2%)  load-stdlib
   0.0208 (  1.0%)   0.0094 (  1.3%)   0.0303 (  1.1%)   0.0337 (  1.1%)  perform-sema
   0.0208 (  1.0%)   0.0094 (  1.3%)   0.0302 (  1.1%)   0.0336 (  1.1%)  Type checking and Semantic analysis
   0.0145 (  0.7%)   0.0074 (  1.0%)   0.0220 (  0.8%)   0.0251 (  0.8%)  typecheck-decl
   0.0186 (  0.9%)   0.0052 (  0.7%)   0.0238 (  0.8%)   0.0248 (  0.8%)  typecheck-stmt
   0.0126 (  0.6%)   0.0033 (  0.5%)   0.0159 (  0.6%)   0.0165 (  0.5%)  typecheck-expr
   0.0074 (  0.3%)   0.0020 (  0.3%)   0.0094 (  0.3%)   0.0097 (  0.3%)  precheck-target
   0.0034 (  0.2%)   0.0038 (  0.5%)   0.0072 (  0.3%)   0.0077 (  0.2%)  IRGen
   0.0023 (  0.1%)   0.0030 (  0.4%)   0.0052 (  0.2%)   0.0052 (  0.2%)  SILGen
   0.0022 (  0.1%)   0.0027 (  0.4%)   0.0050 (  0.2%)   0.0050 (  0.2%)  import-clang-decl
   0.0041 (  0.2%)   0.0005 (  0.1%)   0.0045 (  0.2%)   0.0045 (  0.1%)  SIL optimization
   0.0011 (  0.1%)   0.0013 (  0.2%)   0.0024 (  0.1%)   0.0024 (  0.1%)  SILGen-function
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   2.1537 (100.0%)   0.7095 (100.0%)   2.8632 (100.0%)   3.1148 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 2.6609 seconds (2.9178 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.5899 (100.0%)   1.0710 (100.0%)   2.6609 (100.0%)   2.9178 (100.0%)  Building Target
   1.5899 (100.0%)   1.0710 (100.0%)   2.6609 (100.0%)   2.9178 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Constructor.swift,\ Resolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:69:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Constructor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Constructor()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:12:20: note: class 'Constructor' does not conform to the 'Sendable' protocol
public final class Constructor {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:69:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Constructor()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Constructor()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:72:23: warning: static property 'defaultScalarMap' is not concurrency-safe because non-'Sendable' type 'Constructor.ScalarMap' (aka 'Dictionary<Tag.Name, (Node.Scalar) -> Optional<Any>>') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let defaultScalarMap: ScalarMap = [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:72:23: note: add '@MainActor' to make static property 'defaultScalarMap' part of global actor 'MainActor'
    public static let defaultScalarMap: ScalarMap = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let defaultScalarMap: ScalarMap = [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:86:23: warning: static property 'defaultMappingMap' is not concurrency-safe because non-'Sendable' type 'Constructor.MappingMap' (aka 'Dictionary<Tag.Name, (Node.Mapping) -> Optional<Any>>') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let defaultMappingMap: MappingMap = [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:86:23: note: add '@MainActor' to make static property 'defaultMappingMap' part of global actor 'MainActor'
    public static let defaultMappingMap: MappingMap = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let defaultMappingMap: MappingMap = [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:95:23: warning: static property 'defaultSequenceMap' is not concurrency-safe because non-'Sendable' type 'Constructor.SequenceMap' (aka 'Dictionary<Tag.Name, (Node.Sequence) -> Optional<Any>>') may have shared mutable state; this is an error in the Swift 6 language mode
    public static let defaultSequenceMap: SequenceMap = [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:95:23: note: add '@MainActor' to make static property 'defaultSequenceMap' part of global actor 'MainActor'
    public static let defaultSequenceMap: SequenceMap = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let defaultSequenceMap: SequenceMap = [
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:97:23: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'Resolver' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let basic = Resolver()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:12:20: note: class 'Resolver' does not conform to the 'Sendable' protocol
public final class Resolver {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:97:23: note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
    public static let basic = Resolver()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:97:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let basic = Resolver()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:99:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Resolver' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Resolver([.bool, .int, .float, .merge, .null, .timestamp, .value])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:12:20: note: class 'Resolver' does not conform to the 'Sendable' protocol
public final class Resolver {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:99:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Resolver([.bool, .int, .float, .merge, .null, .timestamp, .value])
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Resolver([.bool, .int, .float, .merge, .null, .timestamp, .value])
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:108:23: warning: static property 'bool' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bool = try! Resolver.Rule(.bool, """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
    public struct Rule {
                  ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:108:23: note: add '@MainActor' to make static property 'bool' part of global actor 'MainActor'
    public static let bool = try! Resolver.Rule(.bool, """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bool = try! Resolver.Rule(.bool, """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:115:23: warning: static property 'int' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let int = try! Resolver.Rule(.int, """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
    public struct Rule {
                  ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:115:23: note: add '@MainActor' to make static property 'int' part of global actor 'MainActor'
    public static let int = try! Resolver.Rule(.int, """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let int = try! Resolver.Rule(.int, """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:124:23: warning: static property 'float' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let float = try! Resolver.Rule(.float, """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
    public struct Rule {
                  ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:124:23: note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
    public static let float = try! Resolver.Rule(.float, """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:124:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let float = try! Resolver.Rule(.float, """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:133:23: warning: static property 'merge' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let merge = try! Resolver.Rule(.merge, "^(?:<<)$")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
    public struct Rule {
                  ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:133:23: note: add '@MainActor' to make static property 'merge' part of global actor 'MainActor'
    public static let merge = try! Resolver.Rule(.merge, "^(?:<<)$")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let merge = try! Resolver.Rule(.merge, "^(?:<<)$")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:136:23: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let null = try! Resolver.Rule(.null, """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
    public struct Rule {
                  ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:136:23: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
    public static let null = try! Resolver.Rule(.null, """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let null = try! Resolver.Rule(.null, """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:143:23: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let timestamp = try! Resolver.Rule(.timestamp, """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
    public struct Rule {
                  ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:143:23: note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
    public static let timestamp = try! Resolver.Rule(.timestamp, """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:143:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let timestamp = try! Resolver.Rule(.timestamp, """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:152:23: warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let value = try! Resolver.Rule(.value, "^(?:=)$")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
    public struct Rule {
                  ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:152:23: note: add '@MainActor' to make static property 'value' part of global actor 'MainActor'
    public static let value = try! Resolver.Rule(.value, "^(?:=)$")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:152:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let value = try! Resolver.Rule(.value, "^(?:=)$")
                      ^
    nonisolated(unsafe)
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250956936856-swift-frontend-Yams-Constructor.swift-arm64_apple_ios8.0-o-Onone-1160180301.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 1.0550 seconds (3.8123 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0244 (  3.0%)   0.0352 ( 13.8%)   0.0596 (  5.6%)   1.4181 ( 37.2%)  parse-and-resolve-imports
   0.0206 (  2.6%)   0.0307 ( 12.0%)   0.0513 (  4.9%)   1.4027 ( 36.8%)  Import resolution
   0.1483 ( 18.5%)   0.0352 ( 13.8%)   0.1836 ( 17.4%)   0.1848 (  4.8%)  perform-sema
   0.1481 ( 18.5%)   0.0351 ( 13.8%)   0.1832 ( 17.4%)   0.1844 (  4.8%)  Type checking and Semantic analysis
   0.0949 ( 11.9%)   0.0219 (  8.6%)   0.1168 ( 11.1%)   0.1170 (  3.1%)  typecheck-expr
   0.0942 ( 11.8%)   0.0168 (  6.6%)   0.1110 ( 10.5%)   0.1112 (  2.9%)  typecheck-stmt
   0.0693 (  8.7%)   0.0213 (  8.4%)   0.0906 (  8.6%)   0.0916 (  2.4%)  typecheck-decl
   0.0634 (  7.9%)   0.0186 (  7.3%)   0.0820 (  7.8%)   0.0825 (  2.2%)  build-rewrite-system
   0.0016 (  0.2%)   0.0099 (  3.9%)   0.0115 (  1.1%)   0.0533 (  1.4%)  load-stdlib
   0.0285 (  3.6%)   0.0031 (  1.2%)   0.0316 (  3.0%)   0.0317 (  0.8%)  SILGen
   0.0244 (  3.0%)   0.0069 (  2.7%)   0.0313 (  3.0%)   0.0314 (  0.8%)  IRGen
   0.0240 (  3.0%)   0.0070 (  2.8%)   0.0310 (  2.9%)   0.0311 (  0.8%)  precheck-target
   0.0144 (  1.8%)   0.0096 (  3.8%)   0.0240 (  2.3%)   0.0242 (  0.6%)  import-clang-decl
   0.0183 (  2.3%)   0.0014 (  0.6%)   0.0198 (  1.9%)   0.0198 (  0.5%)  SILGen-function
   0.0142 (  1.8%)   0.0003 (  0.1%)   0.0146 (  1.4%)   0.0151 (  0.4%)  SIL optimization
   0.0063 (  0.8%)   0.0008 (  0.3%)   0.0071 (  0.7%)   0.0071 (  0.2%)  typecheck-for-each
   0.0035 (  0.4%)   0.0007 (  0.3%)   0.0042 (  0.4%)   0.0042 (  0.1%)  typecheck-expr-pattern
   0.0007 (  0.1%)   0.0002 (  0.1%)   0.0009 (  0.1%)   0.0009 (  0.0%)  load-all-members
   0.0006 (  0.1%)   0.0000 (  0.0%)   0.0007 (  0.1%)   0.0007 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  get-conformance-access-path
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.8001 (100.0%)   0.2549 (100.0%)   1.0550 (100.0%)   3.8123 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.8307 seconds (3.3540 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.0061 (100.0%)   0.8246 (100.0%)   1.8307 (100.0%)   3.3540 (100.0%)  Building Target
   1.0061 (100.0%)   0.8246 (100.0%)   1.8307 (100.0%)   3.3540 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ Parser.swift,\ Node.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift:128:27: warning: static property 'default' 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 `default`: Encoding = {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift:128:27: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
        public static var `default`: Encoding = {
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift:128:27: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
        public static var `default`: Encoding = {
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift:128:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var `default`: Encoding = {
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250956938868-swift-frontend-Yams-Parser.swift-arm64_apple_ios8.0-o-Onone-3192450886.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8965 seconds (3.6617 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0247 (  3.7%)   0.0278 ( 12.4%)   0.0525 (  5.9%)   1.4079 ( 38.5%)  parse-and-resolve-imports
   0.0214 (  3.2%)   0.0257 ( 11.4%)   0.0471 (  5.3%)   1.4013 ( 38.3%)  Import resolution
   0.1150 ( 17.1%)   0.0298 ( 13.3%)   0.1448 ( 16.1%)   0.1454 (  4.0%)  perform-sema
   0.1148 ( 17.1%)   0.0298 ( 13.2%)   0.1445 ( 16.1%)   0.1452 (  4.0%)  Type checking and Semantic analysis
   0.0852 ( 12.7%)   0.0245 ( 10.9%)   0.1097 ( 12.2%)   0.1112 (  3.0%)  build-rewrite-system
   0.0637 (  9.5%)   0.0177 (  7.9%)   0.0813 (  9.1%)   0.0814 (  2.2%)  typecheck-expr
   0.0689 ( 10.3%)   0.0118 (  5.2%)   0.0807 (  9.0%)   0.0807 (  2.2%)  typecheck-stmt
   0.0547 (  8.1%)   0.0184 (  8.2%)   0.0730 (  8.1%)   0.0736 (  2.0%)  typecheck-decl
   0.0016 (  0.2%)   0.0086 (  3.8%)   0.0102 (  1.1%)   0.0612 (  1.7%)  load-stdlib
   0.0286 (  4.3%)   0.0045 (  2.0%)   0.0331 (  3.7%)   0.0332 (  0.9%)  SILGen
   0.0250 (  3.7%)   0.0066 (  2.9%)   0.0316 (  3.5%)   0.0323 (  0.9%)  IRGen
   0.0165 (  2.5%)   0.0105 (  4.7%)   0.0271 (  3.0%)   0.0275 (  0.7%)  import-clang-decl
   0.0203 (  3.0%)   0.0031 (  1.4%)   0.0233 (  2.6%)   0.0233 (  0.6%)  SILGen-function
   0.0178 (  2.7%)   0.0045 (  2.0%)   0.0223 (  2.5%)   0.0222 (  0.6%)  precheck-target
   0.0101 (  1.5%)   0.0003 (  0.1%)   0.0104 (  1.2%)   0.0104 (  0.3%)  SIL optimization
   0.0015 (  0.2%)   0.0011 (  0.5%)   0.0027 (  0.3%)   0.0027 (  0.1%)  load-all-members
   0.0009 (  0.1%)   0.0001 (  0.1%)   0.0010 (  0.1%)   0.0010 (  0.0%)  typecheck-expr-pattern
   0.0005 (  0.1%)   0.0001 (  0.0%)   0.0005 (  0.1%)   0.0005 (  0.0%)  typecheck-for-each
   0.0003 (  0.0%)   0.0000 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.6717 (100.0%)   0.2248 (100.0%)   0.8965 (100.0%)   3.6617 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.8420 seconds (3.3466 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.1439 (100.0%)   0.6981 (100.0%)   1.8420 (100.0%)   3.3466 (100.0%)  Building Target
   1.1439 (100.0%)   0.6981 (100.0%)   1.8420 (100.0%)   3.3466 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ Tag.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250956937894-swift-frontend-Yams-Tag.swift-arm64_apple_ios8.0-o-Onone-1606283056.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3673 seconds (3.1473 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0241 ( 10.7%)   0.0282 ( 19.8%)   0.0522 ( 14.2%)   1.4258 ( 45.3%)  parse-and-resolve-imports
   0.0202 (  9.0%)   0.0245 ( 17.2%)   0.0447 ( 12.2%)   1.4099 ( 44.8%)  Import resolution
   0.0499 ( 22.2%)   0.0172 ( 12.1%)   0.0670 ( 18.3%)   0.0670 (  2.1%)  build-rewrite-system
   0.0331 ( 14.7%)   0.0162 ( 11.4%)   0.0492 ( 13.4%)   0.0521 (  1.7%)  perform-sema
   0.0330 ( 14.7%)   0.0161 ( 11.3%)   0.0491 ( 13.4%)   0.0520 (  1.7%)  Type checking and Semantic analysis
   0.0016 (  0.7%)   0.0106 (  7.5%)   0.0122 (  3.3%)   0.0449 (  1.4%)  load-stdlib
   0.0203 (  9.0%)   0.0132 (  9.3%)   0.0335 (  9.1%)   0.0362 (  1.2%)  typecheck-decl
   0.0121 (  5.4%)   0.0027 (  1.9%)   0.0147 (  4.0%)   0.0147 (  0.5%)  typecheck-stmt
   0.0108 (  4.8%)   0.0035 (  2.5%)   0.0143 (  3.9%)   0.0143 (  0.5%)  typecheck-expr
   0.0053 (  2.3%)   0.0042 (  3.0%)   0.0095 (  2.6%)   0.0095 (  0.3%)  IRGen
   0.0043 (  1.9%)   0.0013 (  0.9%)   0.0056 (  1.5%)   0.0056 (  0.2%)  SILGen
   0.0020 (  0.9%)   0.0029 (  2.0%)   0.0049 (  1.3%)   0.0049 (  0.2%)  import-clang-decl
   0.0046 (  2.0%)   0.0001 (  0.1%)   0.0046 (  1.3%)   0.0046 (  0.1%)  SIL optimization
   0.0021 (  0.9%)   0.0010 (  0.7%)   0.0030 (  0.8%)   0.0030 (  0.1%)  precheck-target
   0.0018 (  0.8%)   0.0006 (  0.4%)   0.0024 (  0.6%)   0.0024 (  0.1%)  SILGen-function
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2252 (100.0%)   0.1420 (100.0%)   0.3673 (100.0%)   3.1473 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.3922 seconds (2.9218 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.6365 (100.0%)   0.7557 (100.0%)   1.3922 (100.0%)   2.9218 (100.0%)  Building Target
   0.6365 (100.0%)   0.7557 (100.0%)   1.3922 (100.0%)   2.9218 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: warning: static property 'implicit' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let implicit: Tag.Name = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: note: add '@MainActor' to make static property 'implicit' part of global actor 'MainActor'
    public static let implicit: Tag.Name = ""
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let implicit: Tag.Name = ""
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: warning: static property 'nonSpecific' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let nonSpecific: Tag.Name = "!"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: note: add '@MainActor' to make static property 'nonSpecific' part of global actor 'MainActor'
    public static let nonSpecific: Tag.Name = "!"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let nonSpecific: Tag.Name = "!"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: warning: static property 'str' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let str: Tag.Name = "tag:yaml.org,2002:str"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: note: add '@MainActor' to make static property 'str' part of global actor 'MainActor'
    public static let str: Tag.Name = "tag:yaml.org,2002:str"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let str: Tag.Name = "tag:yaml.org,2002:str"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: warning: static property 'seq' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let seq: Tag.Name  = "tag:yaml.org,2002:seq"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: note: add '@MainActor' to make static property 'seq' part of global actor 'MainActor'
    public static let seq: Tag.Name  = "tag:yaml.org,2002:seq"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let seq: Tag.Name  = "tag:yaml.org,2002:seq"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: warning: static property 'map' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let map: Tag.Name  = "tag:yaml.org,2002:map"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: note: add '@MainActor' to make static property 'map' part of global actor 'MainActor'
    public static let map: Tag.Name  = "tag:yaml.org,2002:map"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let map: Tag.Name  = "tag:yaml.org,2002:map"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: warning: static property 'bool' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bool: Tag.Name  = "tag:yaml.org,2002:bool"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: note: add '@MainActor' to make static property 'bool' part of global actor 'MainActor'
    public static let bool: Tag.Name  = "tag:yaml.org,2002:bool"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bool: Tag.Name  = "tag:yaml.org,2002:bool"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: warning: static property 'float' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let float: Tag.Name  =  "tag:yaml.org,2002:float"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
    public static let float: Tag.Name  =  "tag:yaml.org,2002:float"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let float: Tag.Name  =  "tag:yaml.org,2002:float"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let null: Tag.Name  = "tag:yaml.org,2002:null"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
    public static let null: Tag.Name  = "tag:yaml.org,2002:null"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let null: Tag.Name  = "tag:yaml.org,2002:null"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: warning: static property 'int' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let int: Tag.Name  = "tag:yaml.org,2002:int"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: note: add '@MainActor' to make static property 'int' part of global actor 'MainActor'
    public static let int: Tag.Name  = "tag:yaml.org,2002:int"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let int: Tag.Name  = "tag:yaml.org,2002:int"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binary: Tag.Name  = "tag:yaml.org,2002:binary"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    public static let binary: Tag.Name  = "tag:yaml.org,2002:binary"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binary: Tag.Name  = "tag:yaml.org,2002:binary"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: warning: static property 'merge' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let merge: Tag.Name  = "tag:yaml.org,2002:merge"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: note: add '@MainActor' to make static property 'merge' part of global actor 'MainActor'
    public static let merge: Tag.Name  = "tag:yaml.org,2002:merge"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let merge: Tag.Name  = "tag:yaml.org,2002:merge"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: warning: static property 'omap' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let omap: Tag.Name  = "tag:yaml.org,2002:omap"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: note: add '@MainActor' to make static property 'omap' part of global actor 'MainActor'
    public static let omap: Tag.Name  = "tag:yaml.org,2002:omap"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let omap: Tag.Name  = "tag:yaml.org,2002:omap"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: warning: static property 'pairs' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pairs: Tag.Name  = "tag:yaml.org,2002:pairs"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: note: add '@MainActor' to make static property 'pairs' part of global actor 'MainActor'
    public static let pairs: Tag.Name  = "tag:yaml.org,2002:pairs"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pairs: Tag.Name  = "tag:yaml.org,2002:pairs"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: warning: static property 'set' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let set: Tag.Name  = "tag:yaml.org,2002:set"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: note: add '@MainActor' to make static property 'set' part of global actor 'MainActor'
    public static let set: Tag.Name  = "tag:yaml.org,2002:set"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let set: Tag.Name  = "tag:yaml.org,2002:set"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let timestamp: Tag.Name  = "tag:yaml.org,2002:timestamp"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
    public static let timestamp: Tag.Name  = "tag:yaml.org,2002:timestamp"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let timestamp: Tag.Name  = "tag:yaml.org,2002:timestamp"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let value: Tag.Name  = "tag:yaml.org,2002:value"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: note: add '@MainActor' to make static property 'value' part of global actor 'MainActor'
    public static let value: Tag.Name  = "tag:yaml.org,2002:value"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let value: Tag.Name  = "tag:yaml.org,2002:value"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let yaml: Tag.Name  = "tag:yaml.org,2002:yaml"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: note: add '@MainActor' to make static property 'yaml' part of global actor 'MainActor'
    public static let yaml: Tag.Name  = "tag:yaml.org,2002:yaml"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let yaml: Tag.Name  = "tag:yaml.org,2002:yaml"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Node.Sequence.swift,\ Node.Mapping.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250956938606-swift-frontend-Yams-Node.Sequence.swift-arm64_apple_ios8.0-o-Onone-179024119.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5754 seconds (3.6723 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0261 (  5.7%)   0.0246 ( 20.6%)   0.0507 (  8.8%)   1.5763 ( 42.9%)  parse-and-resolve-imports
   0.0227 (  5.0%)   0.0225 ( 18.9%)   0.0452 (  7.9%)   1.5708 ( 42.8%)  Import resolution
   0.0917 ( 20.1%)   0.0140 ( 11.7%)   0.1057 ( 18.4%)   0.1058 (  2.9%)  perform-sema
   0.0914 ( 20.1%)   0.0140 ( 11.7%)   0.1054 ( 18.3%)   0.1055 (  2.9%)  Type checking and Semantic analysis
   0.0539 ( 11.8%)   0.0063 (  5.3%)   0.0602 ( 10.5%)   0.0621 (  1.7%)  typecheck-stmt
   0.0417 (  9.1%)   0.0079 (  6.6%)   0.0496 (  8.6%)   0.0496 (  1.4%)  typecheck-decl
   0.0017 (  0.4%)   0.0095 (  8.0%)   0.0112 (  1.9%)   0.0456 (  1.2%)  load-stdlib
   0.0238 (  5.2%)   0.0024 (  2.0%)   0.0262 (  4.6%)   0.0304 (  0.8%)  SILGen
   0.0249 (  5.5%)   0.0033 (  2.7%)   0.0282 (  4.9%)   0.0301 (  0.8%)  typecheck-expr
   0.0201 (  4.4%)   0.0051 (  4.3%)   0.0252 (  4.4%)   0.0252 (  0.7%)  build-rewrite-system
   0.0194 (  4.2%)   0.0051 (  4.3%)   0.0245 (  4.3%)   0.0247 (  0.7%)  IRGen
   0.0151 (  3.3%)   0.0012 (  1.0%)   0.0163 (  2.8%)   0.0190 (  0.5%)  SILGen-function
   0.0106 (  2.3%)   0.0010 (  0.8%)   0.0116 (  2.0%)   0.0116 (  0.3%)  precheck-target
   0.0096 (  2.1%)   0.0002 (  0.2%)   0.0098 (  1.7%)   0.0098 (  0.3%)  SIL optimization
   0.0014 (  0.3%)   0.0021 (  1.8%)   0.0035 (  0.6%)   0.0035 (  0.1%)  import-clang-decl
   0.0012 (  0.3%)   0.0002 (  0.1%)   0.0014 (  0.2%)   0.0015 (  0.0%)  typecheck-expr-pattern
   0.0004 (  0.1%)   0.0000 (  0.0%)   0.0004 (  0.1%)   0.0004 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  get-conformance-access-path
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.4560 (100.0%)   0.1193 (100.0%)   0.5754 (100.0%)   3.6723 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.2657 seconds (2.9369 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.5724 (100.0%)   0.6933 (100.0%)   1.2657 (100.0%)   2.9369 (100.0%)  Building Target
   0.5724 (100.0%)   0.6933 (100.0%)   1.2657 (100.0%)   2.9369 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift:180:16: warning: static property 'defaultTagName' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultTagName = Tag.Name.seq
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift:180:16: note: add '@MainActor' to make static property 'defaultTagName' part of global actor 'MainActor'
    static let defaultTagName = Tag.Name.seq
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift:180:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultTagName = Tag.Name.seq
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift:135:16: warning: static property 'defaultTagName' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultTagName = Tag.Name.map
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift:135:16: note: add '@MainActor' to make static property 'defaultTagName' part of global actor 'MainActor'
    static let defaultTagName = Tag.Name.map
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift:135:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultTagName = Tag.Name.map
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Decoder.swift,\ Node.Scalar.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Decoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250956938607-swift-frontend-Yams-Decoder.swift-arm64_apple_ios8.0-o-Onone-3086624302.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7893 seconds (3.5239 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0276 (  4.9%)   0.0418 ( 18.5%)   0.0694 (  8.8%)   1.4163 ( 40.2%)  parse-and-resolve-imports
   0.0239 (  4.2%)   0.0375 ( 16.7%)   0.0614 (  7.8%)   1.4008 ( 39.8%)  Import resolution
   0.0995 ( 17.6%)   0.0238 ( 10.6%)   0.1232 ( 15.6%)   0.1247 (  3.5%)  perform-sema
   0.0993 ( 17.6%)   0.0237 ( 10.5%)   0.1230 ( 15.6%)   0.1245 (  3.5%)  Type checking and Semantic analysis
   0.0859 ( 15.2%)   0.0295 ( 13.1%)   0.1154 ( 14.6%)   0.1164 (  3.3%)  build-rewrite-system
   0.0599 ( 10.6%)   0.0137 (  6.1%)   0.0736 (  9.3%)   0.0736 (  2.1%)  typecheck-stmt
   0.0016 (  0.3%)   0.0082 (  3.6%)   0.0098 (  1.2%)   0.0526 (  1.5%)  load-stdlib
   0.0406 (  7.2%)   0.0104 (  4.6%)   0.0509 (  6.5%)   0.0522 (  1.5%)  typecheck-decl
   0.0268 (  4.7%)   0.0078 (  3.5%)   0.0345 (  4.4%)   0.0346 (  1.0%)  IRGen
   0.0207 (  3.7%)   0.0068 (  3.0%)   0.0275 (  3.5%)   0.0275 (  0.8%)  typecheck-expr
   0.0225 (  4.0%)   0.0036 (  1.6%)   0.0261 (  3.3%)   0.0261 (  0.7%)  SILGen
   0.0143 (  2.5%)   0.0102 (  4.6%)   0.0246 (  3.1%)   0.0246 (  0.7%)  import-clang-decl
   0.0172 (  3.1%)   0.0055 (  2.4%)   0.0227 (  2.9%)   0.0227 (  0.6%)  precheck-target
   0.0119 (  2.1%)   0.0016 (  0.7%)   0.0135 (  1.7%)   0.0135 (  0.4%)  SILGen-function
   0.0098 (  1.7%)   0.0002 (  0.1%)   0.0100 (  1.3%)   0.0100 (  0.3%)  SIL optimization
   0.0012 (  0.2%)   0.0007 (  0.3%)   0.0019 (  0.2%)   0.0019 (  0.1%)  load-all-members
   0.0010 (  0.2%)   0.0002 (  0.1%)   0.0012 (  0.2%)   0.0012 (  0.0%)  typecheck-expr-pattern
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.5641 (100.0%)   0.2252 (100.0%)   0.7893 (100.0%)   3.5239 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.8419 seconds (3.3372 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.1023 (100.0%)   0.7397 (100.0%)   1.8419 (100.0%)   3.3372 (100.0%)  Building Target
   1.1023 (100.0%)   0.7397 (100.0%)   1.8419 (100.0%)   3.3372 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Decoder.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift:98:16: warning: static property 'defaultTagName' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultTagName = Tag.Name.str
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: RawRepresentable, Hashable {
                  ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift:98:16: note: add '@MainActor' to make static property 'defaultTagName' part of global actor 'MainActor'
    static let defaultTagName = Tag.Name.str
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift:98:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultTagName = Tag.Name.str
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ String+Yams.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/String+Yams.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250958830554-swift-frontend-Yams-String_Yams.swift-arm64_apple_ios8.0-o-Onone-3247207166.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3878 seconds (0.3945 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0591 ( 21.6%)   0.0189 ( 16.5%)   0.0780 ( 20.1%)   0.0791 ( 20.1%)  build-rewrite-system
   0.0245 (  9.0%)   0.0206 ( 18.0%)   0.0451 ( 11.6%)   0.0454 ( 11.5%)  parse-and-resolve-imports
   0.0335 ( 12.3%)   0.0099 (  8.7%)   0.0434 ( 11.2%)   0.0444 ( 11.3%)  perform-sema
   0.0334 ( 12.2%)   0.0099 (  8.7%)   0.0434 ( 11.2%)   0.0443 ( 11.2%)  Type checking and Semantic analysis
   0.0314 ( 11.5%)   0.0095 (  8.3%)   0.0409 ( 10.5%)   0.0418 ( 10.6%)  typecheck-stmt
   0.0207 (  7.6%)   0.0189 ( 16.5%)   0.0396 ( 10.2%)   0.0399 ( 10.1%)  Import resolution
   0.0199 (  7.3%)   0.0052 (  4.6%)   0.0251 (  6.5%)   0.0259 (  6.6%)  typecheck-expr
   0.0145 (  5.3%)   0.0042 (  3.7%)   0.0187 (  4.8%)   0.0195 (  4.9%)  precheck-target
   0.0103 (  3.8%)   0.0070 (  6.1%)   0.0173 (  4.5%)   0.0174 (  4.4%)  import-clang-decl
   0.0061 (  2.2%)   0.0026 (  2.3%)   0.0087 (  2.3%)   0.0087 (  2.2%)  SILGen
   0.0037 (  1.4%)   0.0033 (  2.9%)   0.0071 (  1.8%)   0.0072 (  1.8%)  IRGen
   0.0048 (  1.8%)   0.0013 (  1.1%)   0.0061 (  1.6%)   0.0061 (  1.5%)  SILGen-function
   0.0047 (  1.7%)   0.0006 (  0.5%)   0.0053 (  1.4%)   0.0054 (  1.4%)  typecheck-decl
   0.0047 (  1.7%)   0.0001 (  0.1%)   0.0048 (  1.2%)   0.0048 (  1.2%)  SIL optimization
   0.0011 (  0.4%)   0.0020 (  1.8%)   0.0031 (  0.8%)   0.0032 (  0.8%)  load-stdlib
   0.0007 (  0.2%)   0.0004 (  0.4%)   0.0011 (  0.3%)   0.0011 (  0.3%)  load-all-members
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2734 (100.0%)   0.1145 (100.0%)   0.3878 (100.0%)   0.3945 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.3344 seconds (1.4341 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.6665 (100.0%)   0.6679 (100.0%)   1.3344 (100.0%)   1.4341 (100.0%)  Building Target
   0.6665 (100.0%)   0.6679 (100.0%)   1.3344 (100.0%)   1.4341 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/String+Yams.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal arm64 Emitting module for Yams (in target 'Yams' from project 'Yams')
SwiftDriver\ Compilation\ Requirements Yams normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Yams -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.SwiftFileList -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.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/Yams.build/Debug-iphoneos/Yams.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams-df5d82b2269df6b45c6ccb78522e34b2-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Mark.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Tag.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling YamlError.swift (in target 'Yams' from project 'Yams')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Headers/Yams-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-Swift.h (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Headers/Yams-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling Node.Sequence.swift, Node.Mapping.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Encoder.swift (in target 'Yams' from project 'Yams')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftmodule (in target 'Yams' from project 'Yams')
    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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.abi.json (in target 'Yams' from project 'Yams')
    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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftdoc (in target 'Yams' from project 'Yams')
    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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftsourceinfo (in target 'Yams' from project 'Yams')
    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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/writer.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/writer.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/scanner.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/scanner.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/reader.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/reader.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/parser.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/parser.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/emitter.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/emitter.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/api.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/api.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.o
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-722UMVI4R6P00IRQ3RYPX1FJ0.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-722UMVI4R6P00IRQ3RYPX1FJ0.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-8U1GLH6VXPSRXX177DVRZJ6H7.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-8U1GLH6VXPSRXX177DVRZJ6H7.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-44P190MRBLIJ243SYP3KAGNXW.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-44P190MRBLIJ243SYP3KAGNXW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-9TQ4H15GOOK2LHY51XVFKIFEB.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-9TQ4H15GOOK2LHY51XVFKIFEB.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-3ZLQ42E277B4AH6R0A9GO7Y7L.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-3ZLQ42E277B4AH6R0A9GO7Y7L.scan
SwiftDriverJobDiscovery normal arm64 Compiling String+Yams.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Representer.swift, Emitter.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Decoder.swift, Node.Scalar.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Constructor.swift, Resolver.swift (in target 'Yams' from project 'Yams')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-23GRGIO41DFYDMCR2G6QFAZ8Q.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-23GRGIO41DFYDMCR2G6QFAZ8Q.scan
SwiftDriverJobDiscovery normal arm64 Compiling Parser.swift, Node.swift (in target 'Yams' from project 'Yams')
SwiftDriver\ Compilation Yams normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Yams -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.SwiftFileList -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.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/Yams.build/Debug-iphoneos/Yams.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams-df5d82b2269df6b45c6ccb78522e34b2-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-3X5XNZJPEJFTR8U6FZ9AYDMB7.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-3X5XNZJPEJFTR8U6FZ9AYDMB7.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-DI0TYQC791QY3FC7BB8T1TVKV.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-DI0TYQC791QY3FC7BB8T1TVKV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-5QAW9Y4MPRI4B112VIFHJSOVO.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-5QAW9Y4MPRI4B112VIFHJSOVO.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-1W8LM1B8J7Y35H9FIG93FTZVC.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-1W8LM1B8J7Y35H9FIG93FTZVC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-5TI5XDSQQG83XNSVNCG5BLBZT.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-5TI5XDSQQG83XNSVNCG5BLBZT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-4Z6LSET9S1IELZ8RAVPONV2YH.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-4Z6LSET9S1IELZ8RAVPONV2YH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-78AEL2PSK14AUDK2UYVMPSLMU.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-78AEL2PSK14AUDK2UYVMPSLMU.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-4ZX25UUR8NK5IG7U6I6KSXB91.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-4ZX25UUR8NK5IG7U6I6KSXB91.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-BQDZL3M4IAOBIBD7PA104YW5E.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-BQDZL3M4IAOBIBD7PA104YW5E.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-AMJV0UHM3V2JVLZY4F0KDYNPE.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-AMJV0UHM3V2JVLZY4F0KDYNPE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-6GH5D7N4N290VQ28A6FCT0ZGP.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-6GH5D7N4N290VQ28A6FCT0ZGP.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-BOAKVX1TCWK7FIJJFARLAUDME.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-BOAKVX1TCWK7FIJJFARLAUDME.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-9S75H7Q8YI683GSJST0K2EAPL.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-9S75H7Q8YI683GSJST0K2EAPL.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-99FQFNDW6TW9JX598AWX2JNCJ.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-99FQFNDW6TW9JX598AWX2JNCJ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-73R9P9CYHJNFLX7WDUWPU1M46.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-73R9P9CYHJNFLX7WDUWPU1M46.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-5LHG67NZ49MEDQSG1R95LCAG4.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-5LHG67NZ49MEDQSG1R95LCAG4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-AN10Y9YCZFWU8TJG0IVU1WLST.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-AN10Y9YCZFWU8TJG0IVU1WLST.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-3MKVKM5VGL6GPY4KAKB3NC9YD.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-3MKVKM5VGL6GPY4KAKB3NC9YD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-7SQRRRX556DUS2LU16QK4IJQR.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-7SQRRRX556DUS2LU16QK4IJQR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-CVHAPYBOZB2O2YG7NKDW4EEL2.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-CVHAPYBOZB2O2YG7NKDW4EEL2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-DM3KVKHRQZYSXV8IOTJ1O98AN.scan
    cd /Users/admin/builder/spi-builder-workspace
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-DM3KVKHRQZYSXV8IOTJ1O98AN.scan
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/scanner.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/scanner.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/scanner.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/api.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/api.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/api.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/writer.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/writer.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/writer.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/reader.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/reader.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/reader.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/parser.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/parser.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/emitter.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/emitter.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o -index-unit-output-path /Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Yams normal (in target 'Yams' from project 'Yams')
    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-ios8.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.LinkFileList -install_name @rpath/Yams.framework/Yams -Xlinker -rpath -Xlinker /usr/lib/swift -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams_dependency_info.dat -fapplication-extension -fprofile-instr-generate -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftmodule -compatibility_version 1 -current_version 1 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Yams
clang: error: SDK does not contain 'libarclite' at the path '/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a'; try increasing the minimum deployment target
/Users/admin/builder/spi-builder-workspace/Yams.xcodeproj: warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 12.0 to 18.4.99. (in target 'Yams' from project 'Yams')
warning: Run script build phase 'Run Script' will be run during every build because it does not specify any outputs. To address this issue, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Yams' from project 'Yams')
** BUILD FAILED **
The following build commands failed:
	Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Yams normal (in target 'Yams' from project 'Yams')
	Building project Yams with scheme Yams
(2 failures)
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
resolved source packages:
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Yams",
  "name" : "Yams",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Yams",
      "targets" : [
        "Yams"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "YamsTests",
      "module_type" : "SwiftTarget",
      "name" : "YamsTests",
      "path" : "Tests/YamsTests",
      "sources" : [
        "ConstructorTests.swift",
        "EmitterTests.swift",
        "EncoderTests.swift",
        "MarkTests.swift",
        "NodeTests.swift",
        "PerformanceTests.swift",
        "RepresenterTests.swift",
        "ResolverTests.swift",
        "SpecTests.swift",
        "StringTests.swift",
        "TestHelper.swift",
        "TopLevelDecoderTests.swift",
        "YamlErrorTests.swift"
      ],
      "target_dependencies" : [
        "Yams"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Yams",
      "module_type" : "SwiftTarget",
      "name" : "Yams",
      "path" : "Sources/Yams",
      "product_memberships" : [
        "Yams"
      ],
      "sources" : [
        "Constructor.swift",
        "Decoder.swift",
        "Emitter.swift",
        "Encoder.swift",
        "Mark.swift",
        "Node.Mapping.swift",
        "Node.Scalar.swift",
        "Node.Sequence.swift",
        "Node.swift",
        "Parser.swift",
        "Representer.swift",
        "Resolver.swift",
        "String+Yams.swift",
        "Tag.swift",
        "YamlError.swift"
      ],
      "target_dependencies" : [
        "CYaml"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CYaml",
      "module_type" : "ClangTarget",
      "name" : "CYaml",
      "path" : "Sources/CYaml",
      "product_memberships" : [
        "Yams"
      ],
      "sources" : [
        "src/api.c",
        "src/emitter.c",
        "src/parser.c",
        "src/reader.c",
        "src/scanner.c",
        "src/writer.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
{
  "project" : {
    "configurations" : [
      "Debug",
      "Release"
    ],
    "name" : "Yams",
    "schemes" : [
      "Yams"
    ],
    "targets" : [
      "Yams",
      "YamsTests"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Yams -destination generic/platform=iOS
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme Yams -destination generic/platform=iOS
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (1 target)
    Target 'Yams' in project 'Yams' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -arch arm64 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: f0e0d3d5a4200f535f6b457cf89ea9ef
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/f0e0d3d5a4200f535f6b457cf89ea9ef.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/Yams.xcodeproj
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Info.plist /Users/admin/builder/spi-builder-workspace/Yams.xcodeproj/Yams_Info.plist (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/Yams.xcodeproj/Yams_Info.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Info.plist
SwiftDriver Yams normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Yams -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.SwiftFileList -DXcode -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.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/Yams.build/Debug-iphoneos/Yams.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams-df5d82b2269df6b45c6ccb78522e34b2-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ Yams (in target 'Yams' from project 'Yams')
EmitSwiftModule normal arm64 (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Representer.swift,\ Emitter.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Representer.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Emitter.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Representer.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Emitter.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Parser.swift,\ Node.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Constructor.swift,\ Resolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Node.Sequence.swift,\ Node.Mapping.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Decoder.swift,\ Node.Scalar.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Decoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Decoder.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Tag.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Mark.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ String+Yams.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/String+Yams.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/String+Yams.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Encoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ YamlError.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal arm64 Compiling Mark.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling String+Yams.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Tag.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Encoder.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Node.Sequence.swift, Node.Mapping.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Emitting module for Yams (in target 'Yams' from project 'Yams')
SwiftDriver\ Compilation\ Requirements Yams normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Yams -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.SwiftFileList -DXcode -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.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/Yams.build/Debug-iphoneos/Yams.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams-df5d82b2269df6b45c6ccb78522e34b2-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftmodule (in target 'Yams' from project 'Yams')
    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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.abi.json (in target 'Yams' from project 'Yams')
    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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-ios.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling YamlError.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Decoder.swift, Node.Scalar.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Parser.swift, Node.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Representer.swift, Emitter.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Constructor.swift, Resolver.swift (in target 'Yams' from project 'Yams')
SwiftDriver\ Compilation Yams normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Yams' from project 'Yams')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Yams -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.SwiftFileList -DXcode -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-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/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.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/Yams.build/Debug-iphoneos/Yams.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams-df5d82b2269df6b45c6ccb78522e34b2-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Yams-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Yams normal (in target 'Yams' from project 'Yams')
    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-ios8.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.LinkFileList -install_name @rpath/Yams.framework/Yams -Xlinker -rpath -Xlinker /usr/lib/swift -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams_dependency_info.dat -fapplication-extension -fprofile-instr-generate -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-iphoneos/Yams.build/Objects-normal/arm64/Yams.swiftmodule -compatibility_version 1 -current_version 1 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Yams
clang: error: SDK does not contain 'libarclite' at the path '/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a'; try increasing the minimum deployment target
/Users/admin/builder/spi-builder-workspace/Yams.xcodeproj: warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 12.0 to 18.4.99. (in target 'Yams' from project 'Yams')
warning: Run script build phase 'Run Script' will be run during every build because it does not specify any outputs. To address this issue, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Yams' from project 'Yams')
** BUILD FAILED **
The following build commands failed:
	Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Yams.framework/Yams normal (in target 'Yams' from project 'Yams')
	Building project Yams with scheme Yams
(2 failures)
BUILD FAILURE 6.1 iOS