Build Information
Successful build of galah, reference v1.0.2 (49cd69
), with Swift 6.1 for watchOS using Xcode 16.3 on 30 Apr 2025 00:49:21 UTC.
Swift 6 data race errors: 30
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme galah-Package -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
public static let type = Type.nominal("Int")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Int")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("String")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("String")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("String")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("Bool")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("Bool")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Bool")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: warning: static property 'defaultBuiltinTypes' is not concurrency-safe because non-'Sendable' type '[BuiltinType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinTypes: [BuiltinType] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinType.swift:2:15: note: consider making struct 'BuiltinType' conform to the 'Sendable' protocol
public struct BuiltinType {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: add '@MainActor' to make static property 'defaultBuiltinTypes' part of global actor 'MainActor'
public static let defaultBuiltinTypes: [BuiltinType] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinTypes: [BuiltinType] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: warning: static property 'defaultBuiltinFns' is not concurrency-safe because non-'Sendable' type '[BuiltinFn]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinFns: [BuiltinFn] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinFn.swift:1:15: note: consider making struct 'BuiltinFn' conform to the 'Sendable' protocol
public struct BuiltinFn {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: add '@MainActor' to make static property 'defaultBuiltinFns' part of global actor 'MainActor'
public static let defaultBuiltinFns: [BuiltinFn] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinFns: [BuiltinFn] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: warning: static property 'fixedRepresentationTokens' is not concurrency-safe because non-'Sendable' type '[Character : Token]' may have shared mutable state; this is an error in the Swift 6 language mode
static let fixedRepresentationTokens: [Character: Token] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:33:13: note: consider making enum 'Token' conform to the 'Sendable' protocol
public enum Token: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: add '@MainActor' to make static property 'fixedRepresentationTokens' part of global actor 'MainActor'
static let fixedRepresentationTokens: [Character: Token] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let fixedRepresentationTokens: [Character: Token] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: warning: static property 'assignment' is not concurrency-safe because non-'Sendable' type 'Op' may have shared mutable state; this is an error in the Swift 6 language mode
static let assignment = Op(token: "=")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:21:15: note: consider making struct 'Op' conform to the 'Sendable' protocol
public struct Op: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: add '@MainActor' to make static property 'assignment' part of global actor 'MainActor'
static let assignment = Op(token: "=")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let assignment = Op(token: "=")
^
nonisolated(unsafe)
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal arm64_32 Compiling\ TypeChecker.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TypeChecker.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TypeChecker.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal armv7k Compiling\ Diagnostic.swift,\ GalahRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:2:16: warning: stored property 'level' of 'Sendable'-conforming struct 'Diagnostic' has non-sendable type 'Diagnostic.Level'; this is an error in the Swift 6 language mode
public var level: Level
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:6:17: note: consider making enum 'Level' conform to the 'Sendable' protocol
public enum Level: String, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:4:16: warning: stored property 'source' of 'Sendable'-conforming struct 'Diagnostic' has non-sendable type 'Diagnostic.Source?'; this is an error in the Swift 6 language mode
public var source: Source?
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:15:17: note: consider making enum 'Source' conform to the 'Sendable' protocol
public enum Source {
^
: Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("Int")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("Int")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Int")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("String")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("String")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("String")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("Bool")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("Bool")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Bool")
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ TextBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TextBuffer.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TextBuffer.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ RichToken.swift,\ Span.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/RichToken.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Span.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/RichToken.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Span.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ TextBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TextBuffer.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TextBuffer.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ GalahInterpreter (in target 'GalahInterpreter' from project 'galah')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
EmitSwiftModule normal arm64 (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:2:16: warning: stored property 'level' of 'Sendable'-conforming struct 'Diagnostic' has non-sendable type 'Diagnostic.Level'; this is an error in the Swift 6 language mode
public var level: Level
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:6:17: note: consider making enum 'Level' conform to the 'Sendable' protocol
public enum Level: String, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:4:16: warning: stored property 'source' of 'Sendable'-conforming struct 'Diagnostic' has non-sendable type 'Diagnostic.Source?'; this is an error in the Swift 6 language mode
public var source: Source?
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:15:17: note: consider making enum 'Source' conform to the 'Sendable' protocol
public enum Source {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("Int")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("Int")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Int")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("String")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("String")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("String")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("Bool")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("Bool")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Bool")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: warning: static property 'defaultBuiltinTypes' is not concurrency-safe because non-'Sendable' type '[BuiltinType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinTypes: [BuiltinType] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinType.swift:2:15: note: consider making struct 'BuiltinType' conform to the 'Sendable' protocol
public struct BuiltinType {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: add '@MainActor' to make static property 'defaultBuiltinTypes' part of global actor 'MainActor'
public static let defaultBuiltinTypes: [BuiltinType] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinTypes: [BuiltinType] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: warning: static property 'defaultBuiltinFns' is not concurrency-safe because non-'Sendable' type '[BuiltinFn]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinFns: [BuiltinFn] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinFn.swift:1:15: note: consider making struct 'BuiltinFn' conform to the 'Sendable' protocol
public struct BuiltinFn {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: add '@MainActor' to make static property 'defaultBuiltinFns' part of global actor 'MainActor'
public static let defaultBuiltinFns: [BuiltinFn] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinFns: [BuiltinFn] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: warning: static property 'fixedRepresentationTokens' is not concurrency-safe because non-'Sendable' type '[Character : Token]' may have shared mutable state; this is an error in the Swift 6 language mode
static let fixedRepresentationTokens: [Character: Token] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:33:13: note: consider making enum 'Token' conform to the 'Sendable' protocol
public enum Token: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: add '@MainActor' to make static property 'fixedRepresentationTokens' part of global actor 'MainActor'
static let fixedRepresentationTokens: [Character: Token] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let fixedRepresentationTokens: [Character: Token] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: warning: static property 'assignment' is not concurrency-safe because non-'Sendable' type 'Op' may have shared mutable state; this is an error in the Swift 6 language mode
static let assignment = Op(token: "=")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:21:15: note: consider making struct 'Op' conform to the 'Sendable' protocol
public struct Op: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: add '@MainActor' to make static property 'assignment' part of global actor 'MainActor'
static let assignment = Op(token: "=")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let assignment = Op(token: "=")
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ TypeChecker.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TypeChecker.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TypeChecker.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftDriverJobDiscovery normal arm64_32 Compiling TextBuffer.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 Compiling\ Graph.swift,\ Interpreter.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Graph.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Graph.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: warning: static property 'defaultBuiltinTypes' is not concurrency-safe because non-'Sendable' type '[BuiltinType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinTypes: [BuiltinType] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinType.swift:2:15: note: consider making struct 'BuiltinType' conform to the 'Sendable' protocol
public struct BuiltinType {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: add '@MainActor' to make static property 'defaultBuiltinTypes' part of global actor 'MainActor'
public static let defaultBuiltinTypes: [BuiltinType] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinTypes: [BuiltinType] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: warning: static property 'defaultBuiltinFns' is not concurrency-safe because non-'Sendable' type '[BuiltinFn]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinFns: [BuiltinFn] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinFn.swift:1:15: note: consider making struct 'BuiltinFn' conform to the 'Sendable' protocol
public struct BuiltinFn {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: add '@MainActor' to make static property 'defaultBuiltinFns' part of global actor 'MainActor'
public static let defaultBuiltinFns: [BuiltinFn] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinFns: [BuiltinFn] = [
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling TextBuffer.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k Compiling\ Token.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: warning: static property 'assignment' is not concurrency-safe because non-'Sendable' type 'Op' may have shared mutable state; this is an error in the Swift 6 language mode
static let assignment = Op(token: "=")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:21:15: note: consider making struct 'Op' conform to the 'Sendable' protocol
public struct Op: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: add '@MainActor' to make static property 'assignment' part of global actor 'MainActor'
static let assignment = Op(token: "=")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let assignment = Op(token: "=")
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling RichToken.swift, Span.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k Compiling\ BuiltinType.swift,\ CheckedAST.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinType.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/CheckedAST.swift (in target 'GalahInterpreter' from project 'galah')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinType.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/CheckedAST.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling Diagnostic.swift, GalahRepresentable.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 Compiling\ Token.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: warning: static property 'assignment' is not concurrency-safe because non-'Sendable' type 'Op' may have shared mutable state; this is an error in the Swift 6 language mode
static let assignment = Op(token: "=")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:21:15: note: consider making struct 'Op' conform to the 'Sendable' protocol
public struct Op: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: add '@MainActor' to make static property 'assignment' part of global actor 'MainActor'
static let assignment = Op(token: "=")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let assignment = Op(token: "=")
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Token.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 Compiling\ Lexer.swift,\ Location.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Location.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: warning: static property 'fixedRepresentationTokens' is not concurrency-safe because non-'Sendable' type '[Character : Token]' may have shared mutable state; this is an error in the Swift 6 language mode
static let fixedRepresentationTokens: [Character: Token] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:33:13: note: consider making enum 'Token' conform to the 'Sendable' protocol
public enum Token: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: add '@MainActor' to make static property 'fixedRepresentationTokens' part of global actor 'MainActor'
static let fixedRepresentationTokens: [Character: Token] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let fixedRepresentationTokens: [Character: Token] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Location.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling BuiltinType.swift, CheckedAST.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 Compiling\ AST.swift,\ BuiltinFn.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinFn.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinFn.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Graph.swift, Interpreter.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 Compiling\ Lexer.swift,\ Location.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Location.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: warning: static property 'fixedRepresentationTokens' is not concurrency-safe because non-'Sendable' type '[Character : Token]' may have shared mutable state; this is an error in the Swift 6 language mode
static let fixedRepresentationTokens: [Character: Token] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:33:13: note: consider making enum 'Token' conform to the 'Sendable' protocol
public enum Token: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: add '@MainActor' to make static property 'fixedRepresentationTokens' part of global actor 'MainActor'
static let fixedRepresentationTokens: [Character: Token] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let fixedRepresentationTokens: [Character: Token] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Location.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling AST.swift, BuiltinFn.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k Compiling\ Graph.swift,\ Interpreter.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Graph.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Graph.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: warning: static property 'defaultBuiltinTypes' is not concurrency-safe because non-'Sendable' type '[BuiltinType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinTypes: [BuiltinType] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinType.swift:2:15: note: consider making struct 'BuiltinType' conform to the 'Sendable' protocol
public struct BuiltinType {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: add '@MainActor' to make static property 'defaultBuiltinTypes' part of global actor 'MainActor'
public static let defaultBuiltinTypes: [BuiltinType] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinTypes: [BuiltinType] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: warning: static property 'defaultBuiltinFns' is not concurrency-safe because non-'Sendable' type '[BuiltinFn]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinFns: [BuiltinFn] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinFn.swift:1:15: note: consider making struct 'BuiltinFn' conform to the 'Sendable' protocol
public struct BuiltinFn {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: add '@MainActor' to make static property 'defaultBuiltinFns' part of global actor 'MainActor'
public static let defaultBuiltinFns: [BuiltinFn] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinFns: [BuiltinFn] = [
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Token.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k Compiling\ RichToken.swift,\ Span.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/RichToken.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Span.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/RichToken.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Span.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Lexer.swift, Location.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k Compiling\ Parser.swift,\ Result.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Result.swift (in target 'GalahInterpreter' from project 'galah')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Parser.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Result.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling BuiltinType.swift, CheckedAST.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 Compiling\ Parser.swift,\ Result.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Result.swift (in target 'GalahInterpreter' from project 'galah')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Parser.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Result.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling RichToken.swift, Span.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 Compiling\ Parser.swift,\ Result.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Result.swift (in target 'GalahInterpreter' from project 'galah')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Parser.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Result.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Lexer.swift, Location.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 Compiling\ TextBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TextBuffer.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TextBuffer.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Emitting module for GalahInterpreter (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 Compiling\ RichToken.swift,\ Span.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/RichToken.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Span.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/RichToken.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Span.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ Token.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: warning: static property 'assignment' is not concurrency-safe because non-'Sendable' type 'Op' may have shared mutable state; this is an error in the Swift 6 language mode
static let assignment = Op(token: "=")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:21:15: note: consider making struct 'Op' conform to the 'Sendable' protocol
public struct Op: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: add '@MainActor' to make static property 'assignment' part of global actor 'MainActor'
static let assignment = Op(token: "=")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let assignment = Op(token: "=")
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Graph.swift, Interpreter.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriver\ Compilation\ Requirements GalahInterpreter normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name GalahInterpreter -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter-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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ BuiltinType.swift,\ CheckedAST.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinType.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/CheckedAST.swift (in target 'GalahInterpreter' from project 'galah')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinType.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/CheckedAST.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Emitting module for GalahInterpreter (in target 'GalahInterpreter' from project 'galah')
SwiftDriverJobDiscovery normal arm64 Compiling AST.swift, BuiltinFn.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriver\ Compilation\ Requirements GalahInterpreter normal armv7k com.apple.xcode.tools.swift.compiler (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name GalahInterpreter -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter-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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for GalahInterpreter (in target 'GalahInterpreter' from project 'galah')
SwiftDriver\ Compilation\ Requirements GalahInterpreter normal arm64 com.apple.xcode.tools.swift.compiler (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name GalahInterpreter -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter-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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftmodule (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/GalahInterpreter-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter-Swift.h (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/GalahInterpreter-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftdoc (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.abi.json (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftmodule (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftdoc (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.abi.json (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftmodule (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftdoc (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.abi.json (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftsourceinfo (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftsourceinfo (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftsourceinfo (in target 'GalahInterpreter' from project 'galah')
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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ Diagnostic.swift,\ GalahRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:2:16: warning: stored property 'level' of 'Sendable'-conforming struct 'Diagnostic' has non-sendable type 'Diagnostic.Level'; this is an error in the Swift 6 language mode
public var level: Level
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:6:17: note: consider making enum 'Level' conform to the 'Sendable' protocol
public enum Level: String, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:4:16: warning: stored property 'source' of 'Sendable'-conforming struct 'Diagnostic' has non-sendable type 'Diagnostic.Source?'; this is an error in the Swift 6 language mode
public var source: Source?
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:15:17: note: consider making enum 'Source' conform to the 'Sendable' protocol
public enum Source {
^
: Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("Int")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("Int")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Int")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("String")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("String")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("String")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("Bool")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("Bool")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Bool")
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ Graph.swift,\ Interpreter.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Graph.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Graph.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: warning: static property 'defaultBuiltinTypes' is not concurrency-safe because non-'Sendable' type '[BuiltinType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinTypes: [BuiltinType] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinType.swift:2:15: note: consider making struct 'BuiltinType' conform to the 'Sendable' protocol
public struct BuiltinType {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: add '@MainActor' to make static property 'defaultBuiltinTypes' part of global actor 'MainActor'
public static let defaultBuiltinTypes: [BuiltinType] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinTypes: [BuiltinType] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: warning: static property 'defaultBuiltinFns' is not concurrency-safe because non-'Sendable' type '[BuiltinFn]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultBuiltinFns: [BuiltinFn] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinFn.swift:1:15: note: consider making struct 'BuiltinFn' conform to the 'Sendable' protocol
public struct BuiltinFn {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: add '@MainActor' to make static property 'defaultBuiltinFns' part of global actor 'MainActor'
public static let defaultBuiltinFns: [BuiltinFn] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Interpreter.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultBuiltinFns: [BuiltinFn] = [
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling TextBuffer.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k Compiling\ AST.swift,\ BuiltinFn.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinFn.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/BuiltinFn.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling RichToken.swift, Span.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k Compiling\ Lexer.swift,\ Location.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Location.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: warning: static property 'fixedRepresentationTokens' is not concurrency-safe because non-'Sendable' type '[Character : Token]' may have shared mutable state; this is an error in the Swift 6 language mode
static let fixedRepresentationTokens: [Character: Token] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Token.swift:33:13: note: consider making enum 'Token' conform to the 'Sendable' protocol
public enum Token: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: add '@MainActor' to make static property 'fixedRepresentationTokens' part of global actor 'MainActor'
static let fixedRepresentationTokens: [Character: Token] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Lexer.swift:6:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let fixedRepresentationTokens: [Character: Token] = [
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Location.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Token.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 Compiling\ Diagnostic.swift,\ GalahRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:2:16: warning: stored property 'level' of 'Sendable'-conforming struct 'Diagnostic' has non-sendable type 'Diagnostic.Level'; this is an error in the Swift 6 language mode
public var level: Level
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:6:17: note: consider making enum 'Level' conform to the 'Sendable' protocol
public enum Level: String, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:4:16: warning: stored property 'source' of 'Sendable'-conforming struct 'Diagnostic' has non-sendable type 'Diagnostic.Source?'; this is an error in the Swift 6 language mode
public var source: Source?
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/Diagnostic.swift:15:17: note: consider making enum 'Source' conform to the 'Sendable' protocol
public enum Source {
^
: Sendable
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("Int")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("Int")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Int")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("String")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("String")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("String")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'Type' may have shared mutable state; this is an error in the Swift 6 language mode
public static let type = Type.nominal("Bool")
^
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/AST.swift:53:13: note: consider making enum 'Type' conform to the 'Sendable' protocol
public enum Type: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: add '@MainActor' to make static property 'type' part of global actor 'MainActor'
public static let type = Type.nominal("Bool")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/GalahRepresentable.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let type = Type.nominal("Bool")
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Parser.swift, Result.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k Compiling\ TypeChecker.swift /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TypeChecker.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GalahInterpreter/TypeChecker.swift (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftDriverJobDiscovery normal arm64 Compiling Parser.swift, Result.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriverJobDiscovery normal arm64 Compiling Diagnostic.swift, GalahRepresentable.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriverJobDiscovery normal armv7k Compiling Parser.swift, Result.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriver galah normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name galah -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah-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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver galah normal armv7k com.apple.xcode.tools.swift.compiler (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name galah -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah-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/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver galah normal arm64 com.apple.xcode.tools.swift.compiler (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name galah -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah-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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling BuiltinType.swift, CheckedAST.swift (in target 'GalahInterpreter' from project 'galah')
SwiftEmitModule normal armv7k Emitting\ module\ for\ galah (in target 'galah' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var standardError = FileHandle.standardError
^
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
var standardError = FileHandle.standardError
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: add '@MainActor' to make var 'standardError' part of global actor 'MainActor'
var standardError = FileHandle.standardError
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var standardError = FileHandle.standardError
^
nonisolated(unsafe)
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ galah (in target 'galah' from project 'galah')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var standardError = FileHandle.standardError
^
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
var standardError = FileHandle.standardError
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: add '@MainActor' to make var 'standardError' part of global actor 'MainActor'
var standardError = FileHandle.standardError
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var standardError = FileHandle.standardError
^
nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ galah (in target 'galah' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var standardError = FileHandle.standardError
^
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
var standardError = FileHandle.standardError
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: add '@MainActor' to make var 'standardError' part of global actor 'MainActor'
var standardError = FileHandle.standardError
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var standardError = FileHandle.standardError
^
nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ Cli.swift /Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift (in target 'galah' from project 'galah')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var standardError = FileHandle.standardError
^
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
var standardError = FileHandle.standardError
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: add '@MainActor' to make var 'standardError' part of global actor 'MainActor'
var standardError = FileHandle.standardError
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var standardError = FileHandle.standardError
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Lexer.swift, Location.swift (in target 'GalahInterpreter' from project 'galah')
SwiftCompile normal arm64 Compiling\ Cli.swift /Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift (in target 'galah' from project 'galah')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var standardError = FileHandle.standardError
^
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
var standardError = FileHandle.standardError
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: add '@MainActor' to make var 'standardError' part of global actor 'MainActor'
var standardError = FileHandle.standardError
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var standardError = FileHandle.standardError
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for galah (in target 'galah' from project 'galah')
SwiftDriver\ Compilation\ Requirements galah normal arm64 com.apple.xcode.tools.swift.compiler (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name galah -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah-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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Emitting module for galah (in target 'galah' from project 'galah')
SwiftDriver\ Compilation\ Requirements galah normal armv7k com.apple.xcode.tools.swift.compiler (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name galah -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah-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/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftmodule (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftmodule (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftdoc (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.abi.json (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftdoc (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.abi.json (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64-apple-watchos.abi.json
SwiftDriverJobDiscovery normal arm64_32 Compiling Graph.swift, Interpreter.swift (in target 'GalahInterpreter' from project 'galah')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftsourceinfo (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ Cli.swift /Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift (in target 'galah' from project 'galah')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var standardError = FileHandle.standardError
^
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
var standardError = FileHandle.standardError
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: add '@MainActor' to make var 'standardError' part of global actor 'MainActor'
var standardError = FileHandle.standardError
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/galah/Cli.swift:5:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var standardError = FileHandle.standardError
^
nonisolated(unsafe)
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftsourceinfo (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/UtilityMacros.o (in target 'UtilityMacros' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/UtilityMacros.o
SwiftDriverJobDiscovery normal arm64_32 Emitting module for galah (in target 'galah' from project 'galah')
SwiftDriver\ Compilation\ Requirements galah normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name galah -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah-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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftmodule (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftdoc (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.abi.json (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftsourceinfo (in target 'galah' from project 'galah')
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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64_32 Compiling Diagnostic.swift, GalahRepresentable.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriverJobDiscovery normal armv7k Compiling AST.swift, BuiltinFn.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriverJobDiscovery normal armv7k Compiling Cli.swift (in target 'galah' from project 'galah')
SwiftDriver\ Compilation galah normal armv7k com.apple.xcode.tools.swift.compiler (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name galah -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah-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/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Cli.swift (in target 'galah' from project 'galah')
SwiftDriver\ Compilation galah normal arm64 com.apple.xcode.tools.swift.compiler (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name galah -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah-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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling Cli.swift (in target 'galah' from project 'galah')
SwiftDriver\ Compilation galah normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name galah -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah-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/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling TypeChecker.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriver\ Compilation GalahInterpreter normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name GalahInterpreter -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter-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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/Binary/GalahInterpreter.o normal arm64_32 (in target 'GalahInterpreter' from project 'galah')
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_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/Binary/GalahInterpreter.o
SwiftDriverJobDiscovery normal arm64 Compiling TypeChecker.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriver\ Compilation GalahInterpreter normal arm64 com.apple.xcode.tools.swift.compiler (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name GalahInterpreter -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter-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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/Binary/GalahInterpreter.o normal arm64 (in target 'GalahInterpreter' from project 'galah')
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-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/Binary/GalahInterpreter.o
SwiftDriverJobDiscovery normal armv7k Compiling TypeChecker.swift (in target 'GalahInterpreter' from project 'galah')
SwiftDriver\ Compilation GalahInterpreter normal armv7k com.apple.xcode.tools.swift.compiler (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name GalahInterpreter -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/UtilityMacrosPlugin\#UtilityMacrosPlugin -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter-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/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/Binary/GalahInterpreter.o normal armv7k (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/Binary/GalahInterpreter.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.o normal arm64\ armv7k\ arm64_32 (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/Binary/GalahInterpreter.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/Binary/GalahInterpreter.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/Binary/GalahInterpreter.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.o
ExtractAppIntentsMetadata (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name GalahInterpreter --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier spi-builder-workspace.GalahInterpreter --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/GalahInterpreter.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/GalahInterpreter.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 17:49:20.512 appintentsmetadataprocessor[1720:9095] Starting appintentsmetadataprocessor export
2025-04-29 17:49:20.546 appintentsmetadataprocessor[1720:9095] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.o (in target 'GalahInterpreter' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GalahInterpreter.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/Binary/galah normal armv7k (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/galah.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/Binary/galah -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/UtilityMacros.build/Objects-normal/armv7k/UtilityMacros.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/armv7k/GalahInterpreter.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParserToolInfo.build/Objects-normal/armv7k/ArgumentParserToolInfo.swiftmodule
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/Binary/galah normal arm64_32 (in target 'galah' from project 'galah')
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_32-apple-watchos5.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/galah.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/Binary/galah -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/UtilityMacros.build/Objects-normal/arm64_32/UtilityMacros.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64_32/GalahInterpreter.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParserToolInfo.build/Objects-normal/arm64_32/ArgumentParserToolInfo.swiftmodule
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/Binary/galah normal arm64 (in target 'galah' from project 'galah')
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-watchos5.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/galah.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/Binary/galah -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/UtilityMacros.build/Objects-normal/arm64/UtilityMacros.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/GalahInterpreter.build/Objects-normal/arm64/GalahInterpreter.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah normal arm64\ armv7k\ arm64_32 (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64/Binary/galah /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/armv7k/Binary/galah /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/galah.build/Debug-watchos/galah.build/Objects-normal/arm64_32/Binary/galah -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah (in target 'galah' from project 'galah')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/galah
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
},
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "600.0.1",
"upper_bound" : "601.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-syntax.git"
},
{
"identity" : "swift-macro-toolkit",
"requirement" : {
"range" : [
{
"lower_bound" : "0.6.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/stackotter/swift-macro-toolkit"
},
{
"identity" : "carton",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftwasm/carton"
}
],
"manifest_display_name" : "galah",
"name" : "galah",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "GalahInterpreter",
"targets" : [
"GalahInterpreter"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "galah",
"targets" : [
"galah"
],
"type" : {
"executable" : null
}
},
{
"name" : "UtilityMacrosPlugin",
"targets" : [
"UtilityMacrosPlugin"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "galah",
"module_type" : "SwiftTarget",
"name" : "galah",
"path" : "Sources/galah",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"galah"
],
"sources" : [
"Cli.swift"
],
"target_dependencies" : [
"GalahInterpreter"
],
"type" : "executable"
},
{
"c99name" : "UtilityMacrosPlugin",
"module_type" : "SwiftTarget",
"name" : "UtilityMacrosPlugin",
"path" : "Sources/UtilityMacrosPlugin",
"product_dependencies" : [
"SwiftSyntax",
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"MacroToolkit"
],
"product_memberships" : [
"GalahInterpreter",
"galah",
"UtilityMacrosPlugin"
],
"sources" : [
"ResultMacro.swift",
"UtilityMacrosPlugin.swift",
"WithSpanMacro.swift"
],
"type" : "macro"
},
{
"c99name" : "UtilityMacros",
"module_type" : "SwiftTarget",
"name" : "UtilityMacros",
"path" : "Sources/UtilityMacros",
"product_memberships" : [
"GalahInterpreter",
"galah"
],
"sources" : [
"UtilityMacros.swift"
],
"target_dependencies" : [
"UtilityMacrosPlugin"
],
"type" : "library"
},
{
"c99name" : "GalahInterpreterTests",
"module_type" : "SwiftTarget",
"name" : "GalahInterpreterTests",
"path" : "Tests/GalahInterpreterTests",
"sources" : [
"GalahInterpreterTests.swift"
],
"target_dependencies" : [
"GalahInterpreter"
],
"type" : "test"
},
{
"c99name" : "GalahInterpreter",
"module_type" : "SwiftTarget",
"name" : "GalahInterpreter",
"path" : "Sources/GalahInterpreter",
"product_memberships" : [
"GalahInterpreter",
"galah"
],
"sources" : [
"AST.swift",
"BuiltinFn.swift",
"BuiltinType.swift",
"CheckedAST.swift",
"Diagnostic.swift",
"GalahRepresentable.swift",
"Graph.swift",
"Interpreter.swift",
"Lexer.swift",
"Location.swift",
"Parser.swift",
"Result.swift",
"RichToken.swift",
"Span.swift",
"TextBuffer.swift",
"Token.swift",
"TypeChecker.swift"
],
"target_dependencies" : [
"UtilityMacros"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.