Build Information
Successful build of RxComposableArchitecture, reference 0.51.0 (0f3be7
), with Swift 6.1 for iOS using Xcode 16.3 on 28 Apr 2025 07:10:41 UTC.
Swift 6 data race errors: 18
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme RxComposableArchitecture-Package -destination generic/platform=iOS 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
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ViewStore.swift:373:10: note: add '@MainActor' to make instance method 'binding(get:compactSend:)' part of global actor 'MainActor'
func binding<Value>(
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ViewStore.swift:378:14: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.projectedValue[get: .init(rawValue: get), send: .init(rawValue: valueToAction)]
^
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
@MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ViewStore.swift:373:10: note: add '@MainActor' to make instance method 'binding(get:compactSend:)' part of global actor 'MainActor'
func binding<Value>(
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ViewStore.swift:377:9: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ObservedObject(wrappedValue: self)
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ViewStore.swift:373:10: note: add '@MainActor' to make instance method 'binding(get:compactSend:)' part of global actor 'MainActor'
func binding<Value>(
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ViewStore.swift:368:9: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
ObservedObject(wrappedValue: self)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ViewStore.swift:368:9: note: sending task-isolated 'self' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
ObservedObject(wrappedValue: self)
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ViewStore.swift:377:9: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
ObservedObject(wrappedValue: self)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ViewStore.swift:377:9: note: sending task-isolated 'self' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
ObservedObject(wrappedValue: self)
^
SwiftDriverJobDiscovery normal arm64 Compiling ArgumentDecoder.swift, ArgumentDefinition.swift, ArgumentSet.swift, CommandParser.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ Binding.swift,\ Bootstrapping.swift,\ MockPageTemplate.swift,\ AnyHashDiffable.swift,\ DiffingInterface+Primitives.swift,\ HashDiffing.swift,\ DiffMode.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Binding.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/MockPageTemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/AnyHashDiffable.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/HashDiffing.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingUtility/DiffMode.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Binding.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift:182:18: warning: var '_bootstrappedEnvironments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
internal var _bootstrappedEnvironments: [String: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift:182:18: note: convert '_bootstrappedEnvironments' to a 'let' constant to make 'Sendable' shared state immutable
internal var _bootstrappedEnvironments: [String: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift:182:18: note: add '@MainActor' to make var '_bootstrappedEnvironments' part of global actor 'MainActor'
internal var _bootstrappedEnvironments: [String: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift:182:18: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal var _bootstrappedEnvironments: [String: Any] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift:183:18: warning: var '_bootstrappedDependencies' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
internal var _bootstrappedDependencies: [String: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift:183:18: note: convert '_bootstrappedDependencies' to a 'let' constant to make 'Sendable' shared state immutable
internal var _bootstrappedDependencies: [String: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift:183:18: note: add '@MainActor' to make var '_bootstrappedDependencies' part of global actor 'MainActor'
internal var _bootstrappedDependencies: [String: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/Bootstrapping.swift:183:18: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal var _bootstrappedDependencies: [String: Any] = [:]
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Debugging/MockPageTemplate.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/AnyHashDiffable.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:8:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int: Identifiable {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:8:1: note: add '@retroactive' to silence this warning
extension Int: Identifiable {
^ ~~~~~~~~~~~~
@retroactive Identifiable
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:14:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension String: Identifiable {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:14:1: note: add '@retroactive' to silence this warning
extension String: Identifiable {
^ ~~~~~~~~~~~~
@retroactive Identifiable
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:20:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Bool: Identifiable {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:20:1: note: add '@retroactive' to silence this warning
extension Bool: Identifiable {
^ ~~~~~~~~~~~~
@retroactive Identifiable
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:26:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Double: Identifiable {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:26:1: note: add '@retroactive' to silence this warning
extension Double: Identifiable {
^ ~~~~~~~~~~~~
@retroactive Identifiable
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:32:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Float: Identifiable {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/DiffingInterface+Primitives.swift:32:1: note: add '@retroactive' to silence this warning
extension Float: Identifiable {
^ ~~~~~~~~~~~~
@retroactive Identifiable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingInterface/HashDiffing.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/DiffingUtility/DiffMode.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ DependencyKeyWritingReducer.swift,\ EmptyReducer.swift,\ ForEachReducer.swift,\ IfCaseLetReducer.swift,\ IfLetReducer.swift,\ OptionalReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/DependencyKeyWritingReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/EmptyReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/ForEachReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/IfLetReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/OptionalReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/DependencyKeyWritingReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/DependencyKeyWritingReducer.swift:151:26: warning: 'withValues(_:operation:)' is deprecated: Use 'withDependencies' instead.
DependencyValues.withValues {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/EmptyReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/ForEachReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/IfLetReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/OptionalReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Reduce.swift,\ Scope.swift,\ SignpostReducer.swift,\ ReducerProtocol.swift,\ Stateless.swift,\ Store.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/Reduce.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/Scope.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/SignpostReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ReducerProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Stateless.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/Reduce.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/Scope.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/SignpostReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/ReducerProtocol.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Stateless.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:912:18: warning: generic parameter 'ScopedState' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:855:58: note: 'ScopedState' previously declared here
private final class ScopedReducer<RootState, RootAction, ScopedState, ScopedAction>: ReducerProtocol {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:912:31: warning: generic parameter 'ScopedAction' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:855:71: note: 'ScopedAction' previously declared here
private final class ScopedReducer<RootState, RootAction, ScopedState, ScopedAction>: ReducerProtocol {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:489:29: warning: capture of 'tasks' with non-sendable type 'TaskBox<[Task<Void, Never>]>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
var index = tasks.wrappedValue.startIndex
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/TaskBox.swift:1:13: note: generic class 'TaskBox' does not conform to the 'Sendable' protocol
final class TaskBox<Wrapped> {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:448:29: warning: 'isCompleted' mutated after capture by sendable closure
defer { isCompleted = true }
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:447:33: note: variable defined here
var isCompleted = false
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:451:49: note: variable captured by sendable closure
Effect<Action>.Send {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:453:40: note: capturing use
if isCompleted {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:447:33: note: variable defined here
var isCompleted = false
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:451:49: note: variable captured by sendable closure
Effect<Action>.Send {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:453:40: note: capturing use
if isCompleted {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:471:37: warning: sending 'tasks' risks causing data races; this is an error in the Swift 6 language mode
tasks.wrappedValue.append(task)
^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:471:37: note: 'tasks' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
tasks.wrappedValue.append(task)
^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:445:46: note: access can happen concurrently
Task(priority: priority) { @MainActor [weak self] in
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:436:25: warning: sending 'effectDisposable' risks causing data races; this is an error in the Swift 6 language mode
effectDisposable.dispose()
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:436:25: note: task-isolated 'effectDisposable' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
effectDisposable.dispose()
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:460:65: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
\(debugCaseOutput(action))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:460:65: note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
\(debugCaseOutput(action))
^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:470:47: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
if let task = self?.send($0, originatingFrom: action) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:470:47: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
if let task = self?.send($0, originatingFrom: action) {
^~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:471:37: warning: sending 'tasks' risks causing data races; this is an error in the Swift 6 language mode
tasks.wrappedValue.append(task)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:471:37: note: task-isolated 'tasks' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
tasks.wrappedValue.append(task)
^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:481:21: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
return Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Store.swift:483:29: note: closure captures 'tasks' which is accessible to code in the current task
var index = tasks.wrappedValue.startIndex
^
SwiftDriverJobDiscovery normal arm64 Compiling DependencyValues.swift, Calendar.swift, Clocks.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftCompile normal arm64 Compiling\ StoreConfig.swift,\ Alert.swift,\ ButtonState.swift,\ ButtonStateSlider.swift,\ TextState.swift,\ WithViewStore.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/StoreConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/Alert.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/Internal/ButtonStateSlider.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/TextState.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/WithViewStore.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/StoreConfig.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/StoreConfig.swift:18:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var `default`: StoreConfig = .init(
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/StoreConfig.swift:18:23: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
public static var `default`: StoreConfig = .init(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/StoreConfig.swift:18:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static var `default`: StoreConfig = .init(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/StoreConfig.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var `default`: StoreConfig = .init(
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/Alert.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:259:33: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
let action = { _ = Task { await button.withAction(action) } }
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:259:59: note: closure captures 'action' which is accessible to code in the current task
let action = { _ = Task { await button.withAction(action) } }
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:293:23: warning: sending 'button' risks causing data races; this is an error in the Swift 6 language mode
action: { button.withAction(action) }
~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:293:23: note: task-isolated 'button' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
action: { button.withAction(action) }
^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:293:41: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
action: { button.withAction(action) }
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:293:41: note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
action: { button.withAction(action) }
^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:311:36: warning: sending 'button' risks causing data races; this is an error in the Swift 6 language mode
action: { Task { await button.withAction(action) } }
~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:311:36: note: task-isolated 'button' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
action: { Task { await button.withAction(action) } }
^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:311:54: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
action: { Task { await button.withAction(action) } }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/ButtonState.swift:311:54: note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
action: { Task { await button.withAction(action) } }
^~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/Internal/ButtonStateSlider.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/TextState.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/WithViewStore.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/WithViewStore.swift:567:16: warning: main actor-isolated property 'data' cannot be used to satisfy nonisolated requirement from protocol 'DynamicViewContent'; this is an error in the Swift 6 language mode
public var data: ViewState {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/SwiftUI/WithViewStore.swift:560:26: note: add '@preconcurrency' to the 'DynamicViewContent' conformance to defer isolation checking to run time
extension WithViewStore: DynamicViewContent
^
@preconcurrency
SwiftDriverJobDiscovery normal arm64 Compiling UUID.swift, WithRandomNumberGenerator.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftCompile normal arm64 Compiling\ Box.swift,\ Debug.swift,\ Deprecated.swift,\ Locking.swift,\ OpenExistential.swift,\ RuntimeWarnings.swift,\ RxMainQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/Box.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/Debug.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/Locking.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/OpenExistential.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RuntimeWarnings.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/Box.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/Debug.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/Deprecated.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/Locking.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/OpenExistential.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RuntimeWarnings.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RuntimeWarnings.swift:49:13: warning: let 'dso' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer' may have shared mutable state; this is an error in the Swift 6 language mode
let dso = { () -> UnsafeMutableRawPointer in
^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RuntimeWarnings.swift:49:13: note: add '@MainActor' to make let 'dso' part of global actor 'MainActor'
let dso = { () -> UnsafeMutableRawPointer in
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RuntimeWarnings.swift:49:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let dso = { () -> UnsafeMutableRawPointer in
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift:75:20: warning: static property 'liveValue' is not concurrency-safe because non-'Sendable' type 'any SchedulerType' may have shared mutable state; this is an error in the Swift 6 language mode
static let liveValue: SchedulerType = MainScheduler.instance
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxSwift/SchedulerType.swift:19:17: note: protocol 'SchedulerType' does not conform to the 'Sendable' protocol
public protocol SchedulerType: ImmediateSchedulerType {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
import RxSwift
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift:75:20: note: add '@MainActor' to make static property 'liveValue' part of global actor 'MainActor'
static let liveValue: SchedulerType = MainScheduler.instance
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift:75:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let liveValue: SchedulerType = MainScheduler.instance
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift:82:16: warning: static property 'testValue' is not concurrency-safe because non-'Sendable' type 'any SchedulerType' may have shared mutable state; this is an error in the Swift 6 language mode
static let testValue: SchedulerType = UnimplementedSchedulerType()
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxSwift/SchedulerType.swift:19:17: note: protocol 'SchedulerType' does not conform to the 'Sendable' protocol
public protocol SchedulerType: ImmediateSchedulerType {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift:82:16: note: add '@MainActor' to make static property 'testValue' part of global actor 'MainActor'
static let testValue: SchedulerType = UnimplementedSchedulerType()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift:82:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let testValue: SchedulerType = UnimplementedSchedulerType()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/RxMainQueue.swift:81:1: warning: type 'any SchedulerType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
extension DependencyValues.MainQueueKey: TestDependencyKey {
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxSwift/SchedulerType.swift:19:17: note: protocol 'SchedulerType' does not conform to the 'Sendable' protocol
public protocol SchedulerType: ImmediateSchedulerType {
^
SwiftDriverJobDiscovery normal arm64 Compiling MainRunLoop.swift, OpenURL.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftCompile normal arm64 Compiling\ TaskBox.swift,\ TaskCancellableValue.swift,\ OptionalPaths.swift,\ NeverEqual.swift,\ SingleSelection.swift,\ UniqueElements.swift,\ AnyReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/TaskBox.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/TaskCancellableValue.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/OptionalPaths.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/PropertyWrapper/NeverEqual.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/PropertyWrapper/SingleSelection.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/PropertyWrapper/UniqueElements.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/TaskBox.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/TaskCancellableValue.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/OptionalPaths.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/PropertyWrapper/NeverEqual.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/PropertyWrapper/SingleSelection.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/PropertyWrapper/UniqueElements.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Dependency.swift, DependencyContext.swift, DependencyKey.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftCompile normal arm64 Compiling\ Timer.swift,\ TaskResult.swift,\ Export.swift,\ IdentifiedArray.swift,\ IfLet.swift,\ AnyDisposable.swift,\ AnyType.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Timer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/TaskResult.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Export.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/IdentifiedArray.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/IfLet.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/AnyDisposable.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/AnyType.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Timer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/TaskResult.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Export.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/IdentifiedArray.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/IfLet.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/AnyDisposable.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Internal/AnyType.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling TypeName.swift, WithDependencies.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftCompile normal arm64 Compiling\ AnyReducerCompatibility.swift,\ AnyReducerDebug.swift,\ AnyReducerSignpost.swift,\ ReducerBuilder.swift,\ CombineReducers.swift,\ DebugReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerCompatibility.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerSignpost.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/ReducerBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/CombineReducers.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/DebugReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerCompatibility.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:95:44: warning: capture of 'debugAction' with non-sendable type 'DebugAction' in a '@Sendable' closure
customDump(debugAction, to: &actionOutput, indent: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:74:35: note: consider making generic parameter 'DebugAction' conform to the 'Sendable' protocol
public func debug<DebugState, DebugAction>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:102:40: warning: capture of 'previousState' with non-sendable type 'DebugState' in a '@Sendable' closure
: diff(previousState, nextState).map { "\($0)\n" }
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:74:23: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
public func debug<DebugState, DebugAction>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:102:55: warning: capture of 'nextState' with non-sendable type 'DebugState' in a '@Sendable' closure
: diff(previousState, nextState).map { "\($0)\n" }
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:74:23: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
public func debug<DebugState, DebugAction>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:104:29: warning: capture of 'debugEnvironment' with non-sendable type 'DebugEnvironment' in a '@Sendable' closure
debugEnvironment.printer(
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:168:15: note: consider making struct 'DebugEnvironment' conform to the 'Sendable' protocol
public struct DebugEnvironment {
^
: Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/AnyReducer/AnyReducerSignpost.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/ReducerBuilder.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/CombineReducers.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Reducer/Reducers/DebugReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for Benchmark (in target 'Benchmark' from project 'Benchmark')
SwiftDriver\ Compilation\ Requirements Benchmark normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Benchmark' from project 'Benchmark')
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 Benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark-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/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.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/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling DependencyKeyWritingReducer.swift, EmptyReducer.swift, ForEachReducer.swift, IfCaseLetReducer.swift, IfLetReducer.swift, OptionalReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 Compiling\ Effect.swift,\ Animation.swift,\ Cancellation.swift,\ Observable.swift,\ Debouncing.swift,\ Deferring.swift,\ Throttling.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Cancellation.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Debouncing.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Deferring.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Animation.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Cancellation.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Cancellation.swift:208:17: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
public func withTaskCancellation<T: Sendable>(
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Cancellation.swift:283:15: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
public func withTaskCancellation<T: Sendable>(
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Cancellation.swift:337:29: warning: var '_cancellationCancellables' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Cancellation.swift:337:29: note: convert '_cancellationCancellables' to a 'let' constant to make 'Sendable' shared state immutable
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Cancellation.swift:337:29: note: add '@MainActor' to make var '_cancellationCancellables' part of global actor 'MainActor'
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Cancellation.swift:337:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Cancellation.swift:94:52: warning: capture of 'id' with non-sendable type 'AnyHashable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
await withTaskCancellation(id: id, cancelInFlight: cancelInFlight, operation: {
^
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
@frozen public struct AnyHashable {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable.swift:20:29: warning: sending 'observer' risks causing data races; this is an error in the Swift 6 language mode
defer { observer.onCompleted() }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable.swift:20:29: note: task-isolated 'observer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
defer { observer.onCompleted() }
^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Debouncing.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Deferring.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effect.swift:476:34: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift:94:5: warning: var 'throttleTimes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleTimes: [AnyHashable: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift:94:5: note: convert 'throttleTimes' to a 'let' constant to make 'Sendable' shared state immutable
var throttleTimes: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift:94:5: note: add '@MainActor' to make var 'throttleTimes' part of global actor 'MainActor'
var throttleTimes: [AnyHashable: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift:94:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleTimes: [AnyHashable: Any] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift:95:5: warning: var 'throttleValues' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleValues: [AnyHashable: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift:95:5: note: convert 'throttleValues' to a 'let' constant to make 'Sendable' shared state immutable
var throttleValues: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift:95:5: note: add '@MainActor' to make var 'throttleValues' part of global actor 'MainActor'
var throttleValues: [AnyHashable: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture/Effects/Observable/Throttling.swift:95:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleValues: [AnyHashable: Any] = [:]
^
nonisolated(unsafe)
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Benchmark-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark-Swift.h (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Benchmark-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling Box.swift, Debug.swift, Deprecated.swift, Locking.swift, OpenExistential.swift, RuntimeWarnings.swift, RxMainQueue.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftmodule (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark
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/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftdoc (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark
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/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.abi.json (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark
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/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftsourceinfo (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark
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/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriver\ Compilation Dependencies normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Dependencies' from project 'swift-dependencies')
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 Dependencies -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.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 -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ExtractAppIntentsMetadata (in target 'Clocks' from project 'swift-clocks')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-clocks
/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 Clocks --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier swift-clocks.Clocks --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Clocks.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Clocks.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-clocks.build/Debug-iphoneos/Clocks.build/Objects-normal/arm64/Clocks_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-clocks.build/Debug-iphoneos/Clocks.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-clocks.build/Debug-iphoneos/Clocks.build/Objects-normal/arm64/Clocks.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-clocks.build/Debug-iphoneos/Clocks.build/Clocks.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-clocks.build/Debug-iphoneos/Clocks.build/Clocks.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-clocks.build/Debug-iphoneos/Clocks.build/Objects-normal/arm64/Clocks.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-28 00:10:39.382 appintentsmetadataprocessor[1276:6536] Starting appintentsmetadataprocessor export
2025-04-28 00:10:39.423 appintentsmetadataprocessor[1276:6536] Extracted no relevant App Intents symbols, skipping writing output
SwiftCompile normal arm64 Compiling\ TestIntegration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/TestIntegration.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/TestIntegration.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Benchmark.swift,\ BenchmarkArguments.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/Benchmark.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkArguments.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/Benchmark.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkArguments.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling TaskBox.swift, TaskCancellableValue.swift, OptionalPaths.swift, NeverEqual.swift, SingleSelection.swift, UniqueElements.swift, AnyReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 Compiling\ BenchmarkTime.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkTime.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkTime.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Reduce.swift, Scope.swift, SignpostReducer.swift, ReducerProtocol.swift, Stateless.swift, Store.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 Compiling\ BenchmarkFilter.swift,\ BenchmarkFormatter.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkFilter.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkFormatter.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkFilter.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkFormatter.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling AnyReducerCompatibility.swift, AnyReducerDebug.swift, AnyReducerSignpost.swift, ReducerBuilder.swift, CombineReducers.swift, DebugReducer.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 Compiling\ BenchmarkResult.swift,\ BenchmarkRunner.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkResult.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkRunner.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkResult.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkRunner.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Binding.swift, Bootstrapping.swift, MockPageTemplate.swift, AnyHashDiffable.swift, DiffingInterface+Primitives.swift, HashDiffing.swift, DiffMode.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 Compiling\ BenchmarkMain.swift,\ BenchmarkReporter.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkMain.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkReporter.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkMain.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkReporter.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling TestIntegration.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 Compiling\ BenchmarkColumn.swift,\ BenchmarkCommand.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkColumn.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkCommand.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkColumn.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkCommand.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Timer.swift, TaskResult.swift, Export.swift, IdentifiedArray.swift, IfLet.swift, AnyDisposable.swift, AnyType.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 Compiling\ BenchmarkSuite.swift,\ BenchmarkTermination.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkTermination.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkTermination.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for RxComposableArchitecture (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftDriver\ Compilation\ Requirements RxComposableArchitecture normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
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 RxComposableArchitecture -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture-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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling BenchmarkTime.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 Compiling\ Stats.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/Stats.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/Stats.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/RxComposableArchitecture-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture-Swift.h (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/RxComposableArchitecture-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling BenchmarkSuite.swift, BenchmarkTermination.swift (in target 'Benchmark' from project 'Benchmark')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftmodule (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftdoc (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.abi.json (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftsourceinfo (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ BenchmarkSetting.swift,\ BenchmarkState.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSetting.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkState.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSetting.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkState.swift (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling BenchmarkFilter.swift, BenchmarkFormatter.swift (in target 'Benchmark' from project 'Benchmark')
SwiftDriver\ Compilation ArgumentParser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ArgumentParser.o normal (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ArgumentParser.o
ExtractAppIntentsMetadata (in target 'RxRelay' from project 'RxSwift')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift
/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 RxRelay --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier rxswift.RxRelay --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxRelay.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxRelay.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-iphoneos/RxRelay.build/Objects-normal/arm64/RxRelay_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-iphoneos/RxRelay.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-iphoneos/RxRelay.build/Objects-normal/arm64/RxRelay.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-iphoneos/RxRelay.build/RxRelay.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-iphoneos/RxRelay.build/RxRelay.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-iphoneos/RxRelay.build/Objects-normal/arm64/RxRelay.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-28 00:10:39.854 appintentsmetadataprocessor[1289:6600] Starting appintentsmetadataprocessor export
2025-04-28 00:10:39.895 appintentsmetadataprocessor[1289:6600] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling BenchmarkResult.swift, BenchmarkRunner.swift (in target 'Benchmark' from project 'Benchmark')
SwiftDriverJobDiscovery normal arm64 Compiling Benchmark.swift, BenchmarkArguments.swift (in target 'Benchmark' from project 'Benchmark')
ExtractAppIntentsMetadata (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ArgumentParser --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier swift-argument-parser.ArgumentParser --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ArgumentParser.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ArgumentParser.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/ArgumentParser.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/ArgumentParser.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-28 00:10:39.885 appintentsmetadataprocessor[1290:6615] Starting appintentsmetadataprocessor export
2025-04-28 00:10:39.924 appintentsmetadataprocessor[1290:6615] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriver RxComposableArchitecture-Benchmark normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
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 RxComposableArchitecture_Benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark-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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.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 Stats.swift (in target 'Benchmark' from project 'Benchmark')
SwiftEmitModule normal arm64 Emitting\ module\ for\ RxComposableArchitecture_Benchmark (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
EmitSwiftModule normal arm64 (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift:6:5: warning: let 'dependenciesSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let dependenciesSuite = BenchmarkSuite(name: "Dependencies") { suite in
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift:6:5: note: add '@MainActor' to make let 'dependenciesSuite' part of global actor 'MainActor'
let dependenciesSuite = BenchmarkSuite(name: "Dependencies") { suite in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let dependenciesSuite = BenchmarkSuite(name: "Dependencies") { suite in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift:6:5: warning: let 'effectSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let effectSuite = BenchmarkSuite(name: "Effects") {
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift:6:5: note: add '@MainActor' to make let 'effectSuite' part of global actor 'MainActor'
let effectSuite = BenchmarkSuite(name: "Effects") {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let effectSuite = BenchmarkSuite(name: "Effects") {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:4:5: warning: let 'storeScopeSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let storeScopeSuite = BenchmarkSuite(name: "Store scoping") { suite in
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:4:5: note: add '@MainActor' to make let 'storeScopeSuite' part of global actor 'MainActor'
let storeScopeSuite = BenchmarkSuite(name: "Store scoping") { suite in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:4:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let storeScopeSuite = BenchmarkSuite(name: "Store scoping") { suite in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:27:5: warning: let 'newStoreScopeSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let newStoreScopeSuite = BenchmarkSuite(name: "[NEW] Store scoping, with rescope") { suite in
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:27:5: note: add '@MainActor' to make let 'newStoreScopeSuite' part of global actor 'MainActor'
let newStoreScopeSuite = BenchmarkSuite(name: "[NEW] Store scoping, with rescope") { suite in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:27:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let newStoreScopeSuite = BenchmarkSuite(name: "[NEW] Store scoping, with rescope") { suite in
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Dependencies.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift:6:5: warning: let 'dependenciesSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let dependenciesSuite = BenchmarkSuite(name: "Dependencies") { suite in
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift:6:5: note: add '@MainActor' to make let 'dependenciesSuite' part of global actor 'MainActor'
let dependenciesSuite = BenchmarkSuite(name: "Dependencies") { suite in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Dependencies.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let dependenciesSuite = BenchmarkSuite(name: "Dependencies") { suite in
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Common.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Common.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Common.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ StoreScope.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:4:5: warning: let 'storeScopeSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let storeScopeSuite = BenchmarkSuite(name: "Store scoping") { suite in
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:4:5: note: add '@MainActor' to make let 'storeScopeSuite' part of global actor 'MainActor'
let storeScopeSuite = BenchmarkSuite(name: "Store scoping") { suite in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:4:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let storeScopeSuite = BenchmarkSuite(name: "Store scoping") { suite in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:27:5: warning: let 'newStoreScopeSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let newStoreScopeSuite = BenchmarkSuite(name: "[NEW] Store scoping, with rescope") { suite in
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:27:5: note: add '@MainActor' to make let 'newStoreScopeSuite' part of global actor 'MainActor'
let newStoreScopeSuite = BenchmarkSuite(name: "[NEW] Store scoping, with rescope") { suite in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/StoreScope.swift:27:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let newStoreScopeSuite = BenchmarkSuite(name: "[NEW] Store scoping, with rescope") { suite in
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Effect.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift:6:5: warning: let 'effectSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let effectSuite = BenchmarkSuite(name: "Effects") {
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift:6:5: note: add '@MainActor' to make let 'effectSuite' part of global actor 'MainActor'
let effectSuite = BenchmarkSuite(name: "Effects") {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/Effect.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let effectSuite = BenchmarkSuite(name: "Effects") {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling BenchmarkMain.swift, BenchmarkReporter.swift (in target 'Benchmark' from project 'Benchmark')
SwiftCompile normal arm64 Compiling\ main.swift /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/main.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxComposableArchitecture-Benchmark/main.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling BenchmarkColumn.swift, BenchmarkCommand.swift (in target 'Benchmark' from project 'Benchmark')
SwiftDriverJobDiscovery normal arm64 Compiling Effect.swift, Animation.swift, Cancellation.swift, Observable.swift, Debouncing.swift, Deferring.swift, Throttling.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CustomDump.o (in target 'CustomDump' from project 'swift-custom-dump')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-custom-dump
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CustomDump.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CombineSchedulers.o (in target 'CombineSchedulers' from project 'combine-schedulers')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/combine-schedulers
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CombineSchedulers.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Clocks.o (in target 'Clocks' from project 'swift-clocks')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-clocks
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Clocks.o
SwiftDriverJobDiscovery normal arm64 Compiling BenchmarkSetting.swift, BenchmarkState.swift (in target 'Benchmark' from project 'Benchmark')
SwiftDriver\ Compilation Benchmark normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Benchmark' from project 'Benchmark')
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 Benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark-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/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.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/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxRelay.o (in target 'RxRelay' from project 'RxSwift')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxRelay.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ArgumentParser.o (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ArgumentParser.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o normal (in target 'Dependencies' from project 'swift-dependencies')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-dependencies
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.o normal (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.o
ExtractAppIntentsMetadata (in target 'Dependencies' from project 'swift-dependencies')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-dependencies
/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 Dependencies --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier swift-dependencies.Dependencies --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Dependencies.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Dependencies.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-28 00:10:40.157 appintentsmetadataprocessor[1301:6667] Starting appintentsmetadataprocessor export
2025-04-28 00:10:40.199 appintentsmetadataprocessor[1301:6667] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark
/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 Benchmark --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier swift-benchmark.Benchmark --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Benchmark.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Benchmark.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-28 00:10:40.161 appintentsmetadataprocessor[1302:6668] Starting appintentsmetadataprocessor export
2025-04-28 00:10:40.203 appintentsmetadataprocessor[1302:6668] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Common.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftDriverJobDiscovery normal arm64 Compiling StoreConfig.swift, Alert.swift, ButtonState.swift, ButtonStateSlider.swift, TextState.swift, WithViewStore.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftDriverJobDiscovery normal arm64 Compiling Dependencies.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftDriverJobDiscovery normal arm64 Emitting module for RxComposableArchitecture_Benchmark (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftDriver\ Compilation\ Requirements RxComposableArchitecture-Benchmark normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
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 RxComposableArchitecture_Benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark-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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.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-iphoneos/RxComposableArchitecture_Benchmark.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftdoc (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture_Benchmark.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture_Benchmark.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.abi.json (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture_Benchmark.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture_Benchmark.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftmodule (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture_Benchmark.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture_Benchmark.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftsourceinfo (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture_Benchmark.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o (in target 'Dependencies' from project 'swift-dependencies')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-dependencies
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.o (in target 'Benchmark' from project 'Benchmark')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Benchmark.o
SwiftDriverJobDiscovery normal arm64 Compiling StoreScope.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftDriverJobDiscovery normal arm64 Compiling Effect.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftDriverJobDiscovery normal arm64 Compiling main.swift (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
SwiftDriver\ Compilation RxComposableArchitecture-Benchmark normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
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 RxComposableArchitecture_Benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark-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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.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 Effect+Failing.swift, PriorityQueue.swift, TestScheduler.swift, TestStore.swift, VirtualTimeScheduler.swift, ViewStore.swift (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
SwiftDriver\ Compilation RxComposableArchitecture normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
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 RxComposableArchitecture -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture-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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.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/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.o normal (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
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-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.o
ExtractAppIntentsMetadata (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
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 RxComposableArchitecture --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.RxComposableArchitecture --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/RxComposableArchitecture.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/RxComposableArchitecture.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-28 00:10:40.357 appintentsmetadataprocessor[1305:6693] Starting appintentsmetadataprocessor export
2025-04-28 00:10:40.393 appintentsmetadataprocessor[1305:6693] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.o (in target 'RxComposableArchitecture' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture-Benchmark normal (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
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-ios13.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture-Benchmark_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture-Benchmark.build/Objects-normal/arm64/RxComposableArchitecture_Benchmark.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -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/Products/Debug-iphoneos/RxComposableArchitecture-Benchmark -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug-iphoneos/CasePaths.build/Objects-normal/arm64/CasePaths.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-iphoneos/RxSwift.build/Objects-normal/arm64/RxSwift.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-iphoneos/RxRelay.build/Objects-normal/arm64/RxRelay.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-iphoneos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-custom-dump.build/Debug-iphoneos/CustomDump.build/Objects-normal/arm64/CustomDump.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-clocks.build/Debug-iphoneos/Clocks.build/Objects-normal/arm64/Clocks.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-concurrency-extras.build/Debug-iphoneos/ConcurrencyExtras.build/Objects-normal/arm64/ConcurrencyExtras.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/combine-schedulers.build/Debug-iphoneos/CombineSchedulers.build/Objects-normal/arm64/CombineSchedulers.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxComposableArchitecture.build/Debug-iphoneos/RxComposableArchitecture.build/Objects-normal/arm64/RxComposableArchitecture.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-iphoneos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-iphoneos/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-iphoneos/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture-Benchmark (in target 'RxComposableArchitecture-Benchmark' from project 'RxComposableArchitecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RxComposableArchitecture-Benchmark
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "rxswift",
"requirement" : {
"range" : [
{
"lower_bound" : "5.1.1",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ReactiveX/RxSwift"
},
{
"identity" : "swift-case-paths",
"requirement" : {
"range" : [
{
"lower_bound" : "0.8.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-case-paths"
},
{
"identity" : "swift-benchmark",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/google/swift-benchmark"
},
{
"identity" : "xctest-dynamic-overlay",
"requirement" : {
"range" : [
{
"lower_bound" : "0.8.5",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/xctest-dynamic-overlay"
},
{
"identity" : "swift-custom-dump",
"requirement" : {
"range" : [
{
"lower_bound" : "0.9.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-custom-dump"
},
{
"identity" : "swift-dependencies",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-dependencies"
}
],
"manifest_display_name" : "RxComposableArchitecture",
"name" : "RxComposableArchitecture",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "RxComposableArchitecture",
"targets" : [
"RxComposableArchitecture"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "RxComposableArchitecture-Benchmark",
"targets" : [
"RxComposableArchitecture-Benchmark"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "RxComposableArchitectureTests",
"module_type" : "SwiftTarget",
"name" : "RxComposableArchitectureTests",
"path" : "Tests/RxComposableArchitectureTests",
"product_dependencies" : [
"CustomDump"
],
"sources" : [
"BindingLocalTests.swift",
"BootstrapTests.swift",
"DependencyKeyWritingReducerTests.swift",
"EffectCancellationTests.swift",
"EffectDebounceTests.swift",
"EffectDeferredTests.swift",
"EffectOperationTests.swift",
"EffectRunTests.swift",
"EffectTaskTests.swift",
"EffectTests.swift",
"EffectThrottleTests.swift",
"ForEachReducerTests.swift",
"IdentifiedArrayTests.swift",
"IfCaseLetReducerTests.swift",
"IfLetReducerTests.swift",
"LCRNG.swift",
"MemoryManagementTests.swift",
"NeverEqualTests.swift",
"ReducerBuilderTests.swift",
"ReducerTests.swift",
"RuntimeWarningTests.swift",
"RxComposableArchitectureTests.swift",
"ScopeTests.swift",
"SingleSelectionSelectableTypeTests.swift",
"SingleSelectionTests.swift",
"StoreFilterTests.swift",
"StoreOldScopeTest.swift",
"StoreTests.swift",
"TaskCancellationTests.swift",
"TaskResultTests.swift",
"TestStoreFailureTests.swift",
"TestStoreNonExhaustiveTests.swift",
"TestStoreOldScopeTests.swift",
"TestStoreTests.swift",
"TimerTests.swift",
"ViewStoreTests.swift"
],
"target_dependencies" : [
"RxComposableArchitecture"
],
"type" : "test"
},
{
"c99name" : "RxComposableArchitecture_Benchmark",
"module_type" : "SwiftTarget",
"name" : "RxComposableArchitecture-Benchmark",
"path" : "Sources/RxComposableArchitecture-Benchmark",
"product_dependencies" : [
"Benchmark"
],
"product_memberships" : [
"RxComposableArchitecture-Benchmark"
],
"sources" : [
"Common.swift",
"Dependencies.swift",
"Effect.swift",
"StoreScope.swift",
"main.swift"
],
"target_dependencies" : [
"RxComposableArchitecture"
],
"type" : "executable"
},
{
"c99name" : "RxComposableArchitecture",
"module_type" : "SwiftTarget",
"name" : "RxComposableArchitecture",
"path" : "Sources/RxComposableArchitecture",
"product_dependencies" : [
"CasePaths",
"RxSwift",
"RxRelay",
"XCTestDynamicOverlay",
"CustomDump",
"Dependencies"
],
"product_memberships" : [
"RxComposableArchitecture",
"RxComposableArchitecture-Benchmark"
],
"sources" : [
"Binding.swift",
"Debugging/Bootstrapping.swift",
"Debugging/MockPageTemplate.swift",
"DiffingInterface/AnyHashDiffable.swift",
"DiffingInterface/DiffingInterface+Primitives.swift",
"DiffingInterface/HashDiffing.swift",
"DiffingUtility/DiffMode.swift",
"Effect.swift",
"Effects/Animation.swift",
"Effects/Cancellation.swift",
"Effects/Observable.swift",
"Effects/Observable/Debouncing.swift",
"Effects/Observable/Deferring.swift",
"Effects/Observable/Throttling.swift",
"Effects/Observable/Timer.swift",
"Effects/TaskResult.swift",
"Export.swift",
"IdentifiedArray.swift",
"IfLet.swift",
"Internal/AnyDisposable.swift",
"Internal/AnyType.swift",
"Internal/Box.swift",
"Internal/Debug.swift",
"Internal/Deprecated.swift",
"Internal/Locking.swift",
"Internal/OpenExistential.swift",
"Internal/RuntimeWarnings.swift",
"Internal/RxMainQueue.swift",
"Internal/TaskBox.swift",
"Internal/TaskCancellableValue.swift",
"OptionalPaths.swift",
"PropertyWrapper/NeverEqual.swift",
"PropertyWrapper/SingleSelection.swift",
"PropertyWrapper/UniqueElements.swift",
"Reducer/AnyReducer/AnyReducer.swift",
"Reducer/AnyReducer/AnyReducerCompatibility.swift",
"Reducer/AnyReducer/AnyReducerDebug.swift",
"Reducer/AnyReducer/AnyReducerSignpost.swift",
"Reducer/ReducerBuilder.swift",
"Reducer/Reducers/CombineReducers.swift",
"Reducer/Reducers/DebugReducer.swift",
"Reducer/Reducers/DependencyKeyWritingReducer.swift",
"Reducer/Reducers/EmptyReducer.swift",
"Reducer/Reducers/ForEachReducer.swift",
"Reducer/Reducers/IfCaseLetReducer.swift",
"Reducer/Reducers/IfLetReducer.swift",
"Reducer/Reducers/OptionalReducer.swift",
"Reducer/Reducers/Reduce.swift",
"Reducer/Reducers/Scope.swift",
"Reducer/Reducers/SignpostReducer.swift",
"ReducerProtocol.swift",
"Stateless.swift",
"Store.swift",
"StoreConfig.swift",
"SwiftUI/Alert.swift",
"SwiftUI/ButtonState.swift",
"SwiftUI/Internal/ButtonStateSlider.swift",
"SwiftUI/TextState.swift",
"SwiftUI/WithViewStore.swift",
"TestSupport/Effect+Failing.swift",
"TestSupport/PriorityQueue.swift",
"TestSupport/TestScheduler.swift",
"TestSupport/TestStore.swift",
"TestSupport/VirtualTimeScheduler.swift",
"ViewStore.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.