The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of RxSwift, reference 6.9.0 (5dd190), with Swift 6.1 for visionOS using Xcode 16.3 on 30 Apr 2025 15:10:30 UTC.

Swift 6 data race errors: 66

Build Command

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

Build Log

@MainActor open func startAnimating()}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIActivityIndicatorView+Rx.swift:21:35: warning: call to main actor-isolated instance method 'stopAnimating()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                activityIndicator.stopAnimating()
                                  ^
UIKit.UIActivityIndicatorView.stopAnimating:2:22: note: calls to instance method 'stopAnimating()' from outside of its actor context are implicitly asynchronous
@MainActor open func stopAnimating()}
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIApplication+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIBarButtonItem+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIBarButtonItem+Rx.swift:14:13: warning: var 'rx_tap_key' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var rx_tap_key: UInt8 = 0
            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIBarButtonItem+Rx.swift:14:13: note: convert 'rx_tap_key' to a 'let' constant to make 'Sendable' shared state immutable
private var rx_tap_key: UInt8 = 0
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIBarButtonItem+Rx.swift:14:13: note: add '@MainActor' to make var 'rx_tap_key' part of global actor 'MainActor'
private var rx_tap_key: UInt8 = 0
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIBarButtonItem+Rx.swift:14:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var rx_tap_key: UInt8 = 0
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIBarButtonItem+Rx.swift:50:23: warning: main actor-isolated property 'target' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        barButtonItem.target = self
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h:105:73: note: mutation of this property is only permitted within the actor
@property (nonatomic, readwrite, weak  , nullable) id                   target;           // default is nil
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIBarButtonItem+Rx.swift:51:23: warning: main actor-isolated property 'action' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        barButtonItem.action = #selector(BarButtonItemTarget.action(_:))
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h:104:73: note: mutation of this property is only permitted within the actor
@property (nonatomic, readwrite, assign, nullable) SEL                  action;           // default is NULL
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIBarButtonItem+Rx.swift:60:24: warning: main actor-isolated property 'target' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        barButtonItem?.target = nil
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h:105:73: note: mutation of this property is only permitted within the actor
@property (nonatomic, readwrite, weak  , nullable) id                   target;           // default is nil
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIBarButtonItem+Rx.swift:61:24: warning: main actor-isolated property 'action' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        barButtonItem?.action = nil
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h:104:73: note: mutation of this property is only permitted within the actor
@property (nonatomic, readwrite, assign, nullable) SEL                  action;           // default is NULL
                                                                        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIButton+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIButton+Rx.swift:49:20: warning: call to main actor-isolated instance method 'setTitle(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            button.setTitle(title, for: controlState)
                   ^
UIKit.UIButton.setTitle:2:22: note: calls to instance method 'setTitle(_:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setTitle(_ title: String?, for state: UIControl.State)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIButton+Rx.swift:56:20: warning: call to main actor-isolated instance method 'setImage(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            button.setImage(image, for: controlState)
                   ^
UIKit.UIButton.setImage:2:22: note: calls to instance method 'setImage(_:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setImage(_ image: UIImage?, for state: UIControl.State)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIButton+Rx.swift:63:20: warning: call to main actor-isolated instance method 'setBackgroundImage(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            button.setBackgroundImage(image, for: controlState)
                   ^
UIKit.UIButton.setBackgroundImage:2:22: note: calls to instance method 'setBackgroundImage(_:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setBackgroundImage(_ image: UIImage?, for state: UIControl.State)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIButton+Rx.swift:78:24: warning: call to main actor-isolated instance method 'setAttributedTitle(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                button.setAttributedTitle(attributedTitle, for: controlState)
                       ^
UIKit.UIButton.setAttributedTitle:3:24: note: calls to instance method 'setAttributedTitle(_:for:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func setAttributedTitle(_ title: NSAttributedString?, for state: UIControl.State)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIButton+Rx.swift:78:24: warning: sending 'attributedTitle' risks causing data races; this is an error in the Swift 6 language mode
                button.setAttributedTitle(attributedTitle, for: controlState)
                ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIButton+Rx.swift:78:24: note: sending task-isolated 'attributedTitle' to main actor-isolated instance method 'setAttributedTitle(_:for:)' risks causing data races between main actor-isolated and task-isolated uses
                button.setAttributedTitle(attributedTitle, for: controlState)
                       ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UICollectionView+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UICollectionView+Rx.swift:47:93: warning: call to main actor-isolated initializer 'init(cellFactory:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let dataSource = RxCollectionViewReactiveArrayDataSourceSequenceWrapper<Sequence>(cellFactory: cellFactory)
                                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift:46:14: note: calls to initializer 'init(cellFactory:)' from outside of its actor context are implicitly asynchronous
    override init(cellFactory: @escaping CellFactory) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift:46:14: note: main actor isolation inferred from inheritance from generic class 'RxCollectionViewReactiveArrayDataSource'
    override init(cellFactory: @escaping CellFactory) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UICollectionView+Rx.swift:83:97: warning: call to main actor-isolated initializer 'init(cellFactory:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let dataSource = RxCollectionViewReactiveArrayDataSourceSequenceWrapper<Sequence> { cv, i, item in
                                                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift:46:14: note: calls to initializer 'init(cellFactory:)' from outside of its actor context are implicitly asynchronous
    override init(cellFactory: @escaping CellFactory) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift:46:14: note: main actor isolation inferred from inheritance from generic class 'RxCollectionViewReactiveArrayDataSource'
    override init(cellFactory: @escaping CellFactory) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UICollectionView+Rx.swift:85:35: warning: call to main actor-isolated instance method 'dequeueReusableCell(withReuseIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    let cell = cv.dequeueReusableCell(withReuseIdentifier: cellIdentifier, for: indexPath) as! Cell
                                  ^
UIKit.UICollectionView.dequeueReusableCell:2:22: note: calls to instance method 'dequeueReusableCell(withReuseIdentifier:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func dequeueReusableCell(withReuseIdentifier identifier: String, for indexPath: IndexPath) -> UICollectionViewCell}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UICollectionView+Rx.swift:47:93: warning: sending 'cellFactory' risks causing data races; this is an error in the Swift 6 language mode
            let dataSource = RxCollectionViewReactiveArrayDataSourceSequenceWrapper<Sequence>(cellFactory: cellFactory)
                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UICollectionView+Rx.swift:47:93: note: sending task-isolated 'cellFactory' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
            let dataSource = RxCollectionViewReactiveArrayDataSourceSequenceWrapper<Sequence>(cellFactory: cellFactory)
                                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UICollectionView+Rx.swift:83:97: warning: sending value of non-Sendable type '(UICollectionView, Int, Sequence.Element) -> UICollectionViewCell' risks causing data races; this is an error in the Swift 6 language mode
                let dataSource = RxCollectionViewReactiveArrayDataSourceSequenceWrapper<Sequence> { cv, i, item in
                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UICollectionView+Rx.swift:83:97: note: sending task-isolated value of non-Sendable type '(UICollectionView, Int, Sequence.Element) -> UICollectionViewCell' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
                let dataSource = RxCollectionViewReactiveArrayDataSourceSequenceWrapper<Sequence> { cv, i, item in
                                                                                                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIControl+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIDatePicker+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIDatePicker+Rx.swift:24:28: warning: main actor-isolated property 'date' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                datePicker.date
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h:47:39: note: property declared here
@property (nonatomic, strong) NSDate *date;        // default is current date when picker created. Ignored in countdown timer mode. for that mode, picker starts at 0:00
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIDatePicker+Rx.swift:26:28: warning: main actor-isolated property 'date' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                datePicker.date = value
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h:47:39: note: mutation of this property is only permitted within the actor
@property (nonatomic, strong) NSDate *date;        // default is current date when picker created. Ignored in countdown timer mode. for that mode, picker starts at 0:00
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIDatePicker+Rx.swift:35:28: warning: main actor-isolated property 'countDownDuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                datePicker.countDownDuration
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h:51:38: note: property declared here
@property (nonatomic) NSTimeInterval countDownDuration; // for UIDatePickerModeCountDownTimer, ignored otherwise. default is 0.0. limit is 23:59 (86,399 seconds). value being set is div 60 (drops remaining seconds).
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIDatePicker+Rx.swift:37:28: warning: main actor-isolated property 'countDownDuration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                datePicker.countDownDuration = value
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h:51:38: note: mutation of this property is only permitted within the actor
@property (nonatomic) NSTimeInterval countDownDuration; // for UIDatePickerModeCountDownTimer, ignored otherwise. default is 0.0. limit is 23:59 (86,399 seconds). value being set is div 60 (drops remaining seconds).
                                     ^
SwiftDriverJobDiscovery normal arm64 Compiling BlockingObservable+Operators.swift (in target 'RxBlocking' from project 'RxSwift')
SwiftCompile normal arm64 Compiling\ DispatchQueue+Extensions.swift,\ Driver+Subscription.swift,\ Driver.swift,\ Infallible+Bind.swift,\ Infallible+Driver.swift,\ ItemEvents.swift,\ KVORepresentable+CoreGraphics.swift,\ KVORepresentable+Swift.swift,\ KVORepresentable.swift,\ NSButton+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/Driver+Subscription.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/Driver.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/Infallible+Bind.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/Infallible+Driver.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/ItemEvents.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/KVORepresentable+CoreGraphics.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/KVORepresentable+Swift.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/KVORepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSButton+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var token: DispatchSpecificKey<()> = {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
    private static var token: DispatchSpecificKey<()> = {
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
    private static var token: DispatchSpecificKey<()> = {
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var token: DispatchSpecificKey<()> = {
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/Driver+Subscription.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/Infallible+Bind.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/Infallible+Driver.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/KVORepresentable+CoreGraphics.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/KVORepresentable+Swift.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSButton+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-2DABWUW20ECCZ4U77KBR04OER.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-2DABWUW20ECCZ4U77KBR04OER.scan
SwiftCompile normal arm64 Compiling\ UIStepper+Rx.swift,\ UISwitch+Rx.swift,\ UITabBar+Rx.swift,\ UITabBarController+Rx.swift,\ UITableView+Rx.swift,\ UITextField+Rx.swift,\ UITextView+Rx.swift,\ URLSession+Rx.swift,\ WKWebView+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIStepper+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISwitch+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITabBar+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITabBarController+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITableView+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextField+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/WKWebView+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIStepper+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIStepper+Rx.swift:20:25: warning: main actor-isolated property 'value' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                stepper.value
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h:24:29: note: property declared here
@property(nonatomic) double value;                        // default is 0. sends UIControlEventValueChanged. clamped to min/max
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIStepper+Rx.swift:22:25: warning: main actor-isolated property 'value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                stepper.value = value
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h:24:29: note: mutation of this property is only permitted within the actor
@property(nonatomic) double value;                        // default is 0. sends UIControlEventValueChanged. clamped to min/max
                            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISwitch+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISwitch+Rx.swift:29:26: warning: main actor-isolated property 'isOn' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                uiSwitch.isOn
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h:41:39: note: property declared here
@property(nonatomic,getter=isOn) BOOL on;
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISwitch+Rx.swift:31:26: warning: main actor-isolated property 'isOn' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                uiSwitch.isOn = value
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h:41:39: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isOn) BOOL on;
                                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITabBar+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITabBarController+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITableView+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITableView+Rx.swift:48:92: warning: call to main actor-isolated initializer 'init(cellFactory:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let dataSource = RxTableViewReactiveArrayDataSourceSequenceWrapper<Sequence>(cellFactory: cellFactory)
                                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:46:14: note: calls to initializer 'init(cellFactory:)' from outside of its actor context are implicitly asynchronous
    override init(cellFactory: @escaping CellFactory) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:46:14: note: main actor isolation inferred from inheritance from generic class 'RxTableViewReactiveArrayDataSource'
    override init(cellFactory: @escaping CellFactory) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITableView+Rx.swift:84:92: warning: call to main actor-isolated initializer 'init(cellFactory:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let dataSource = RxTableViewReactiveArrayDataSourceSequenceWrapper<Sequence> { tv, i, item in
                                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:46:14: note: calls to initializer 'init(cellFactory:)' from outside of its actor context are implicitly asynchronous
    override init(cellFactory: @escaping CellFactory) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:46:14: note: main actor isolation inferred from inheritance from generic class 'RxTableViewReactiveArrayDataSource'
    override init(cellFactory: @escaping CellFactory) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITableView+Rx.swift:86:35: warning: call to main actor-isolated instance method 'dequeueReusableCell(withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    let cell = tv.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as! Cell
                                  ^
UIKit.UITableView.dequeueReusableCell:3:24: note: calls to instance method 'dequeueReusableCell(withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func dequeueReusableCell(withIdentifier identifier: String, for indexPath: IndexPath) -> UITableViewCell}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITableView+Rx.swift:48:92: warning: sending 'cellFactory' risks causing data races; this is an error in the Swift 6 language mode
                let dataSource = RxTableViewReactiveArrayDataSourceSequenceWrapper<Sequence>(cellFactory: cellFactory)
                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITableView+Rx.swift:48:92: note: sending task-isolated 'cellFactory' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
                let dataSource = RxTableViewReactiveArrayDataSourceSequenceWrapper<Sequence>(cellFactory: cellFactory)
                                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITableView+Rx.swift:84:92: warning: sending value of non-Sendable type '(UITableView, Int, Sequence.Element) -> UITableViewCell' risks causing data races; this is an error in the Swift 6 language mode
                let dataSource = RxTableViewReactiveArrayDataSourceSequenceWrapper<Sequence> { tv, i, item in
                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITableView+Rx.swift:84:92: note: sending task-isolated value of non-Sendable type '(UITableView, Int, Sequence.Element) -> UITableViewCell' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
                let dataSource = RxTableViewReactiveArrayDataSourceSequenceWrapper<Sequence> { tv, i, item in
                                                                                           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextField+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextField+Rx.swift:24:27: warning: main actor-isolated property 'text' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                textField.text
                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h:55:63: note: property declared here
@property(nullable, nonatomic,copy)   NSString               *text;                 // default is nil
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextField+Rx.swift:30:30: warning: main actor-isolated property 'text' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if textField.text != value {
                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h:55:63: note: property declared here
@property(nullable, nonatomic,copy)   NSString               *text;                 // default is nil
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextField+Rx.swift:31:31: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    textField.text = value
                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h:55:63: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSString               *text;                 // default is nil
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextField+Rx.swift:41:27: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                textField.attributedText
                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h:56:63: note: property declared here
@property(nullable, nonatomic,copy)   NSAttributedString     *attributedText API_AVAILABLE(ios(6.0)); // default is nil
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextField+Rx.swift:47:30: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if textField.attributedText != value {
                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h:56:63: note: property declared here
@property(nullable, nonatomic,copy)   NSAttributedString     *attributedText API_AVAILABLE(ios(6.0)); // default is nil
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextField+Rx.swift:48:31: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    textField.attributedText = value
                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h:56:63: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSAttributedString     *attributedText API_AVAILABLE(ios(6.0)); // default is nil
                                                              ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:23:34: warning: main actor-isolated property 'text' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let text = textView?.text
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:197:53: note: property declared here
@property(null_resettable,nonatomic,copy) NSString *text;
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:25:41: warning: main actor-isolated property 'textStorage' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let textChanged = textView?.textStorage
                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:245:55: note: property declared here
@property(nonatomic, readonly, strong) NSTextStorage *textStorage API_AVAILABLE(ios(7.0));
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:35:38: warning: main actor-isolated property 'textStorage' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    return textView?.textStorage.string
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:245:55: note: property declared here
@property(nonatomic, readonly, strong) NSTextStorage *textStorage API_AVAILABLE(ios(7.0));
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:47:25: warning: main actor-isolated property 'text' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if textView.text != text {
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:197:53: note: property declared here
@property(null_resettable,nonatomic,copy) NSString *text;
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:48:26: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                textView.text = text
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:197:53: note: mutation of this property is only permitted within the actor
@property(null_resettable,nonatomic,copy) NSString *text;
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:59:44: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let attributedText = textView?.attributedText
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:209:53: note: property declared here
@property(null_resettable,copy) NSAttributedString *attributedText API_AVAILABLE(ios(6.0));
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:61:74: warning: main actor-isolated property 'textStorage' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let textChanged: Observable<NSAttributedString?> = textView?.textStorage
                                                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:245:55: note: property declared here
@property(nonatomic, readonly, strong) NSTextStorage *textStorage API_AVAILABLE(ios(7.0));
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:71:38: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    return textView?.attributedText
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:209:53: note: property declared here
@property(null_resettable,copy) NSAttributedString *attributedText API_AVAILABLE(ios(6.0));
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:83:25: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if textView.attributedText != attributedText {
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:209:53: note: property declared here
@property(null_resettable,copy) NSAttributedString *attributedText API_AVAILABLE(ios(6.0));
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UITextView+Rx.swift:84:26: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                textView.attributedText = attributedText
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:209:53: note: mutation of this property is only permitted within the actor
@property(null_resettable,copy) NSAttributedString *attributedText API_AVAILABLE(ios(6.0));
                                                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' 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 shouldLogRequest: (URLRequest) -> Bool = { _ in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure
                    observer.on(.error(error ?? RxCocoaURLError.unknown))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
public struct AnyObserver<Element> : ObserverType {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
import RxSwift
^
@preconcurrency
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/WKWebView+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-AMLY42F2N7KRPFMX0R1IZ1LUE.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-AMLY42F2N7KRPFMX0R1IZ1LUE.scan
SwiftDriverJobDiscovery normal arm64 Compiling XCTest+Rx.swift (in target 'RxTest' from project 'RxSwift')
SwiftDriver\ Compilation RxTest normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxTest' from project 'RxSwift')
    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 RxTest -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest.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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest-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/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.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/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-7GIVIWY92Y8ONL3HRERCN1YRL.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-7GIVIWY92Y8ONL3HRERCN1YRL.scan
SwiftCompile normal arm64 Compiling\ RxTabBarControllerDelegateProxy.swift,\ RxTabBarDelegateProxy.swift,\ RxTableViewDataSourcePrefetchingProxy.swift,\ RxTableViewDataSourceProxy.swift,\ RxTableViewDataSourceType.swift,\ RxTableViewDelegateProxy.swift,\ RxTableViewReactiveArrayDataSource.swift,\ RxTarget.swift,\ RxTextStorageDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTabBarControllerDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTabBarDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceType.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTextStorageDelegateProxy.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTabBarControllerDelegateProxy.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:357:77: warning: main actor-isolated property 'prefetchDataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasPrefetchDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSourcePrefetching> prefetchDataSource API_AVAILABLE(ios(10.0)) API_UNAVAILABLE(watchos);
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:15:24: note: add '@preconcurrency' to the 'HasPrefetchDataSource' conformance to defer isolation checking to run time
extension UITableView: HasPrefetchDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:302:9: note: requirement 'prefetchDataSource' declared here
    var prefetchDataSource: PrefetchDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:354:66: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSource> dataSource;
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UITableView: HasDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:282:9: note: requirement 'dataSource' declared here
    var dataSource: DataSource? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTabBarDelegateProxy.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:357:77: warning: main actor-isolated property 'prefetchDataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasPrefetchDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSourcePrefetching> prefetchDataSource API_AVAILABLE(ios(10.0)) API_UNAVAILABLE(watchos);
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:15:24: note: add '@preconcurrency' to the 'HasPrefetchDataSource' conformance to defer isolation checking to run time
extension UITableView: HasPrefetchDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:302:9: note: requirement 'prefetchDataSource' declared here
    var prefetchDataSource: PrefetchDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:354:66: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSource> dataSource;
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UITableView: HasDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:282:9: note: requirement 'dataSource' declared here
    var dataSource: DataSource? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:357:77: warning: main actor-isolated property 'prefetchDataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasPrefetchDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSourcePrefetching> prefetchDataSource API_AVAILABLE(ios(10.0)) API_UNAVAILABLE(watchos);
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:15:24: note: add '@preconcurrency' to the 'HasPrefetchDataSource' conformance to defer isolation checking to run time
extension UITableView: HasPrefetchDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:302:9: note: requirement 'prefetchDataSource' declared here
    var prefetchDataSource: PrefetchDataSource? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:20:13: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private let tableViewPrefetchDataSourceNotSet = TableViewPrefetchDataSourceNotSet()
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:354:66: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSource> dataSource;
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UITableView: HasDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:282:9: note: requirement 'dataSource' declared here
    var dataSource: DataSource? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:357:77: warning: main actor-isolated property 'prefetchDataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasPrefetchDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSourcePrefetching> prefetchDataSource API_AVAILABLE(ios(10.0)) API_UNAVAILABLE(watchos);
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:15:24: note: add '@preconcurrency' to the 'HasPrefetchDataSource' conformance to defer isolation checking to run time
extension UITableView: HasPrefetchDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:302:9: note: requirement 'prefetchDataSource' declared here
    var prefetchDataSource: PrefetchDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:354:66: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSource> dataSource;
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UITableView: HasDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:282:9: note: requirement 'dataSource' declared here
    var dataSource: DataSource? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:18:13: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private let tableViewDataSourceNotSet = TableViewDataSourceNotSet()
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceType.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:357:77: warning: main actor-isolated property 'prefetchDataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasPrefetchDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSourcePrefetching> prefetchDataSource API_AVAILABLE(ios(10.0)) API_UNAVAILABLE(watchos);
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:15:24: note: add '@preconcurrency' to the 'HasPrefetchDataSource' conformance to defer isolation checking to run time
extension UITableView: HasPrefetchDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:302:9: note: requirement 'prefetchDataSource' declared here
    var prefetchDataSource: PrefetchDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:354:66: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSource> dataSource;
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UITableView: HasDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:282:9: note: requirement 'dataSource' declared here
    var dataSource: DataSource? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDelegateProxy.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:357:77: warning: main actor-isolated property 'prefetchDataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasPrefetchDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSourcePrefetching> prefetchDataSource API_AVAILABLE(ios(10.0)) API_UNAVAILABLE(watchos);
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:15:24: note: add '@preconcurrency' to the 'HasPrefetchDataSource' conformance to defer isolation checking to run time
extension UITableView: HasPrefetchDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:302:9: note: requirement 'prefetchDataSource' declared here
    var prefetchDataSource: PrefetchDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:354:66: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSource> dataSource;
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UITableView: HasDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:282:9: note: requirement 'dataSource' declared here
    var dataSource: DataSource? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:357:77: warning: main actor-isolated property 'prefetchDataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasPrefetchDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSourcePrefetching> prefetchDataSource API_AVAILABLE(ios(10.0)) API_UNAVAILABLE(watchos);
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:15:24: note: add '@preconcurrency' to the 'HasPrefetchDataSource' conformance to defer isolation checking to run time
extension UITableView: HasPrefetchDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:302:9: note: requirement 'prefetchDataSource' declared here
    var prefetchDataSource: PrefetchDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:354:66: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSource> dataSource;
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UITableView: HasDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:282:9: note: requirement 'dataSource' declared here
    var dataSource: DataSource? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:50:10: warning: main actor-isolated instance method 'tableView(_:observedEvent:)' cannot be used to satisfy nonisolated requirement from protocol 'RxTableViewDataSourceType'; this is an error in the Swift 6 language mode
    func tableView(_ tableView: UITableView, observedEvent: Event<Sequence>) {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:50:10: note: add 'nonisolated' to 'tableView(_:observedEvent:)' to make this instance method not isolated to the actor
    func tableView(_ tableView: UITableView, observedEvent: Event<Sequence>) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:43:7: note: add '@preconcurrency' to the 'RxTableViewDataSourceType' conformance to defer isolation checking to run time
    , RxTableViewDataSourceType {
      ^
      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceType.swift:24:10: note: mark the protocol requirement 'tableView(_:observedEvent:)' 'async' to allow actor-isolated conformances
    func tableView(_ tableView: UITableView, observedEvent: Event<Element>)
         ^
                                                                            async
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:70:10: warning: main actor-isolated instance method 'model(at:)' cannot be used to satisfy nonisolated requirement from protocol 'SectionedViewDataSourceType'; this is an error in the Swift 6 language mode
    func model(at indexPath: IndexPath) throws -> Any {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:70:10: note: add 'nonisolated' to 'model(at:)' to make this instance method not isolated to the actor
    func model(at indexPath: IndexPath) throws -> Any {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift:61:7: note: add '@preconcurrency' to the 'SectionedViewDataSourceType' conformance to defer isolation checking to run time
    , SectionedViewDataSourceType {
      ^
      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/SectionedViewDataSourceType.swift:19:10: note: mark the protocol requirement 'model(at:)' 'async' to allow actor-isolated conformances
    func model(at indexPath: IndexPath) throws -> Any
         ^
                                        async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTarget.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:357:77: warning: main actor-isolated property 'prefetchDataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasPrefetchDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSourcePrefetching> prefetchDataSource API_AVAILABLE(ios(10.0)) API_UNAVAILABLE(watchos);
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:15:24: note: add '@preconcurrency' to the 'HasPrefetchDataSource' conformance to defer isolation checking to run time
extension UITableView: HasPrefetchDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:302:9: note: requirement 'prefetchDataSource' declared here
    var prefetchDataSource: PrefetchDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:354:66: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSource> dataSource;
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UITableView: HasDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:282:9: note: requirement 'dataSource' declared here
    var dataSource: DataSource? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTextStorageDelegateProxy.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:357:77: warning: main actor-isolated property 'prefetchDataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasPrefetchDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSourcePrefetching> prefetchDataSource API_AVAILABLE(ios(10.0)) API_UNAVAILABLE(watchos);
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourcePrefetchingProxy.swift:15:24: note: add '@preconcurrency' to the 'HasPrefetchDataSource' conformance to defer isolation checking to run time
extension UITableView: HasPrefetchDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:302:9: note: requirement 'prefetchDataSource' declared here
    var prefetchDataSource: PrefetchDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:354:66: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'HasDataSource'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UITableViewDataSource> dataSource;
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxTableViewDataSourceProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UITableView: HasDataSource {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:282:9: note: requirement 'dataSource' declared here
    var dataSource: DataSource? { get set }
        ^
SwiftDriverJobDiscovery normal arm64 Emitting module for RxCocoa (in target 'RxCocoa' from project 'RxSwift')
SwiftDriver\ Compilation\ Requirements RxCocoa normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxCocoa' from project 'RxSwift')
    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 RxCocoa -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/RxCocoaRuntime.modulemap -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa-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/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.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/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-DF8EE3QETLOF3KWKBB6IBPKTX.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-DF8EE3QETLOF3KWKBB6IBPKTX.scan
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/RxCocoa-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa-Swift.h (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/RxCocoa-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftmodule (in target 'RxCocoa' from project 'RxSwift')
    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/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftdoc (in target 'RxCocoa' from project 'RxSwift')
    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/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.abi.json (in target 'RxCocoa' from project 'RxSwift')
    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/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftsourceinfo (in target 'RxCocoa' from project 'RxSwift')
    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/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-7P20R6LVHGDQNGGZ8ZDNOQD8T.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-7P20R6LVHGDQNGGZ8ZDNOQD8T.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-AP3OSP4KJHQJHSYHQQ87M96HL.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-AP3OSP4KJHQJHSYHQQ87M96HL.scan
SwiftDriverJobDiscovery normal arm64 Compiling DispatchQueue+Extensions.swift, Driver+Subscription.swift, Driver.swift, Infallible+Bind.swift, Infallible+Driver.swift, ItemEvents.swift, KVORepresentable+CoreGraphics.swift, KVORepresentable+Swift.swift, KVORepresentable.swift, NSButton+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftCompile normal arm64 Compiling\ NSControl+Rx.swift,\ NSObject+Rx+KVORepresentable.swift,\ NSObject+Rx+RawRepresentable.swift,\ NSObject+Rx.swift,\ NSSlider+Rx.swift,\ NSTextField+Rx.swift,\ NSTextStorage+Rx.swift,\ NSTextView+Rx.swift,\ NSView+Rx.swift,\ NotificationCenter+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSControl+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+RawRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSSlider+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSTextField+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSTextStorage+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSTextView+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSView+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSControl+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift:24:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'KeyValueObservingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let initial = KeyValueObservingOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift:15:15: note: consider making struct 'KeyValueObservingOptions' conform to the 'Sendable' protocol
public struct KeyValueObservingOptions: OptionSet {
              ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift:24:23: note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    public static let initial = KeyValueObservingOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let initial = KeyValueObservingOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift:26:23: warning: static property 'new' is not concurrency-safe because non-'Sendable' type 'KeyValueObservingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let new = KeyValueObservingOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift:15:15: note: consider making struct 'KeyValueObservingOptions' conform to the 'Sendable' protocol
public struct KeyValueObservingOptions: OptionSet {
              ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift:26:23: note: add '@MainActor' to make static property 'new' part of global actor 'MainActor'
    public static let new = KeyValueObservingOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let new = KeyValueObservingOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx+RawRepresentable.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:18:13: warning: var 'deallocatingSubjectTriggerContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var deallocatingSubjectTriggerContext: UInt8 = 0
            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:18:13: note: convert 'deallocatingSubjectTriggerContext' to a 'let' constant to make 'Sendable' shared state immutable
private var deallocatingSubjectTriggerContext: UInt8 = 0
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:18:13: note: add '@MainActor' to make var 'deallocatingSubjectTriggerContext' part of global actor 'MainActor'
private var deallocatingSubjectTriggerContext: UInt8 = 0
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:18:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var deallocatingSubjectTriggerContext: UInt8 = 0
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:19:13: warning: var 'deallocatingSubjectContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var deallocatingSubjectContext: UInt8 = 0
            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:19:13: note: convert 'deallocatingSubjectContext' to a 'let' constant to make 'Sendable' shared state immutable
private var deallocatingSubjectContext: UInt8 = 0
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:19:13: note: add '@MainActor' to make var 'deallocatingSubjectContext' part of global actor 'MainActor'
private var deallocatingSubjectContext: UInt8 = 0
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:19:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var deallocatingSubjectContext: UInt8 = 0
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:21:13: warning: var 'deallocatedSubjectTriggerContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var deallocatedSubjectTriggerContext: UInt8 = 0
            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:21:13: note: convert 'deallocatedSubjectTriggerContext' to a 'let' constant to make 'Sendable' shared state immutable
private var deallocatedSubjectTriggerContext: UInt8 = 0
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:21:13: note: add '@MainActor' to make var 'deallocatedSubjectTriggerContext' part of global actor 'MainActor'
private var deallocatedSubjectTriggerContext: UInt8 = 0
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:21:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var deallocatedSubjectTriggerContext: UInt8 = 0
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:22:13: warning: var 'deallocatedSubjectContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var deallocatedSubjectContext: UInt8 = 0
            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:22:13: note: convert 'deallocatedSubjectContext' to a 'let' constant to make 'Sendable' shared state immutable
private var deallocatedSubjectContext: UInt8 = 0
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:22:13: note: add '@MainActor' to make var 'deallocatedSubjectContext' part of global actor 'MainActor'
private var deallocatedSubjectContext: UInt8 = 0
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:22:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var deallocatedSubjectContext: UInt8 = 0
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:87:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Element>' in a '@Sendable' closure
                observer.on(.next(obj[keyPath: keyPath]))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
public struct AnyObserver<Element> : ObserverType {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
import RxSwift
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSObject+Rx.swift:87:48: warning: capture of 'keyPath' with non-sendable type 'KeyPath<Base, Element>' in a '@Sendable' closure
                observer.on(.next(obj[keyPath: keyPath]))
                                               ^
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
public class KeyPath<Root, Value> : PartialKeyPath<Root> {
             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSSlider+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSTextField+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSTextStorage+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSTextView+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NSView+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure
                observer.on(.next(notification))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
public struct AnyObserver<Element> : ObserverType {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
import RxSwift
^
@preconcurrency
SwiftDriverJobDiscovery normal arm64 Compiling Signal.swift, TextInput.swift, UIActivityIndicatorView+Rx.swift, UIApplication+Rx.swift, UIBarButtonItem+Rx.swift, UIButton+Rx.swift, UICollectionView+Rx.swift, UIControl+Rx.swift, UIDatePicker+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftDriver\ Compilation RxBlocking normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxBlocking' from project 'RxSwift')
    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 RxBlocking -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking.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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking-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/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.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/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Observable+Bind.swift, ObservableConvertibleType+Driver.swift, ObservableConvertibleType+SharedSequence.swift, ObservableConvertibleType+Signal.swift, PublishRelay+Signal.swift, RxCocoa.swift, RxCocoaObjCRuntimeError+Extensions.swift, RxCollectionViewDataSourcePrefetchingProxy.swift, RxCollectionViewDataSourceProxy.swift, RxCollectionViewDataSourceType.swift (in target 'RxCocoa' from project 'RxSwift')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxSwift.o (in target 'RxSwift' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxSwift.o
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-AL5SLTAFRNJSZQWJ5H05IUMDS.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-AL5SLTAFRNJSZQWJ5H05IUMDS.scan
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxTest.o normal (in target 'RxTest' from project 'RxSwift')
    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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxTest.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxSwift-Dynamic.framework/RxSwift-Dynamic normal (in target 'RxSwift-Dynamic' from project 'RxSwift')
    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-xros1.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxSwift-Dynamic\ product.build/Objects-normal/arm64/RxSwift-Dynamic.LinkFileList -install_name @rpath/RxSwift-Dynamic.framework/RxSwift-Dynamic -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxSwift-Dynamic\ product.build/Objects-normal/arm64/RxSwift-Dynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxSwift-Dynamic\ product.build/Objects-normal/arm64/RxSwift-Dynamic_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxSwift-Dynamic.framework/RxSwift-Dynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxSwift.build/Objects-normal/arm64/RxSwift.swiftmodule
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxRelay.o normal (in target 'RxRelay' from project 'RxSwift')
    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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/Objects-normal/arm64/RxRelay.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/Objects-normal/arm64/RxRelay_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/Objects-normal/arm64/RxRelay_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/Objects-normal/arm64/RxRelay.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxRelay.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxBlocking.o normal (in target 'RxBlocking' from project 'RxSwift')
    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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxBlocking.o
SwiftDriverJobDiscovery normal arm64 Compiling UIGestureRecognizer+Rx.swift, UINavigationController+Rx.swift, UIPickerView+Rx.swift, UIRefreshControl+Rx.swift, UIScrollView+Rx.swift, UISearchBar+Rx.swift, UISearchController+Rx.swift, UISegmentedControl+Rx.swift, UISlider+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, BehaviorRelay+Driver.swift, ControlEvent+Driver.swift, ControlEvent+Signal.swift, ControlEvent.swift, ControlProperty+Driver.swift, ControlProperty.swift, ControlTarget.swift, DelegateProxy.swift, DelegateProxyType.swift (in target 'RxCocoa' from project 'RxSwift')
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxSwift-Dynamic.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxSwift-Dynamic\ product.build/empty-RxSwift-Dynamic.plist (in target 'RxSwift-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxSwift-Dynamic\ product.build/empty-RxSwift-Dynamic.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxSwift-Dynamic.framework/Info.plist
ExtractAppIntentsMetadata (in target 'RxRelay' from project 'RxSwift')
    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 RxRelay --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.RxRelay --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxRelay.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxRelay.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/Objects-normal/arm64/RxRelay_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/Objects-normal/arm64/RxRelay.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/RxRelay.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/RxRelay.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/Objects-normal/arm64/RxRelay.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 08:10:28.455 appintentsmetadataprocessor[877:4839] Starting appintentsmetadataprocessor export
2025-04-30 08:10:28.495 appintentsmetadataprocessor[877:4839] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'RxTest' from project 'RxSwift')
    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 RxTest --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.RxTest --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxTest.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxTest.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/RxTest.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/RxTest.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 08:10:28.462 appintentsmetadataprocessor[878:4859] Starting appintentsmetadataprocessor export
2025-04-30 08:10:28.500 appintentsmetadataprocessor[878:4859] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'RxBlocking' from project 'RxSwift')
    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 RxBlocking --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.RxBlocking --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxBlocking.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxBlocking.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/RxBlocking.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/RxBlocking.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 08:10:28.463 appintentsmetadataprocessor[879:4860] Starting appintentsmetadataprocessor export
2025-04-30 08:10:28.503 appintentsmetadataprocessor[879:4860] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling RxTextViewDelegateProxy.swift, RxWKNavigationDelegateProxy.swift, SchedulerType+SharedSequence.swift, SectionedViewDataSourceType.swift, SharedSequence+Concurrency.swift, SharedSequence+Operators+arity.swift, SharedSequence+Operators.swift, SharedSequence.swift, Signal+Subscription.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftDriverJobDiscovery normal arm64 Compiling RxCollectionViewDelegateProxy.swift, RxCollectionViewReactiveArrayDataSource.swift, RxNavigationControllerDelegateProxy.swift, RxPickerViewAdapter.swift, RxPickerViewDataSourceProxy.swift, RxPickerViewDataSourceType.swift, RxPickerViewDelegateProxy.swift, RxScrollViewDelegateProxy.swift, RxSearchBarDelegateProxy.swift, RxSearchControllerDelegateProxy.swift (in target 'RxCocoa' from project 'RxSwift')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxTest.o (in target 'RxTest' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxTest.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxRelay.o (in target 'RxRelay' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxRelay.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxBlocking.o (in target 'RxBlocking' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxBlocking.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxTest-Dynamic.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest-Dynamic\ product.build/empty-RxTest-Dynamic.plist (in target 'RxTest-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest-Dynamic\ product.build/empty-RxTest-Dynamic.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxTest-Dynamic.framework/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxTest-Dynamic.framework/RxTest-Dynamic normal (in target 'RxTest-Dynamic' from project 'RxSwift')
    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-xros1.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest-Dynamic\ product.build/Objects-normal/arm64/RxTest-Dynamic.LinkFileList -install_name @rpath/RxTest-Dynamic.framework/RxTest-Dynamic -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest-Dynamic\ product.build/Objects-normal/arm64/RxTest-Dynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest-Dynamic\ product.build/Objects-normal/arm64/RxTest-Dynamic_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxTest-Dynamic.framework/RxTest-Dynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxTest.build/Objects-normal/arm64/RxTest.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxSwift.build/Objects-normal/arm64/RxSwift.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling UIStepper+Rx.swift, UISwitch+Rx.swift, UITabBar+Rx.swift, UITabBarController+Rx.swift, UITableView+Rx.swift, UITextField+Rx.swift, UITextView+Rx.swift, URLSession+Rx.swift, WKWebView+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxRelay-Dynamic.framework/RxRelay-Dynamic normal (in target 'RxRelay-Dynamic' from project 'RxSwift')
    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-xros1.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay-Dynamic\ product.build/Objects-normal/arm64/RxRelay-Dynamic.LinkFileList -install_name @rpath/RxRelay-Dynamic.framework/RxRelay-Dynamic -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay-Dynamic\ product.build/Objects-normal/arm64/RxRelay-Dynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay-Dynamic\ product.build/Objects-normal/arm64/RxRelay-Dynamic_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxRelay-Dynamic.framework/RxRelay-Dynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay.build/Objects-normal/arm64/RxRelay.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxSwift.build/Objects-normal/arm64/RxSwift.swiftmodule
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxBlocking-Dynamic.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking-Dynamic\ product.build/empty-RxBlocking-Dynamic.plist (in target 'RxBlocking-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking-Dynamic\ product.build/empty-RxBlocking-Dynamic.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxBlocking-Dynamic.framework/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxBlocking-Dynamic.framework/RxBlocking-Dynamic normal (in target 'RxBlocking-Dynamic' from project 'RxSwift')
    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-xros1.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking-Dynamic\ product.build/Objects-normal/arm64/RxBlocking-Dynamic.LinkFileList -install_name @rpath/RxBlocking-Dynamic.framework/RxBlocking-Dynamic -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking-Dynamic\ product.build/Objects-normal/arm64/RxBlocking-Dynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking-Dynamic\ product.build/Objects-normal/arm64/RxBlocking-Dynamic_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxBlocking-Dynamic.framework/RxBlocking-Dynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxBlocking.build/Objects-normal/arm64/RxBlocking.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxSwift.build/Objects-normal/arm64/RxSwift.swiftmodule
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxRelay-Dynamic.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay-Dynamic\ product.build/empty-RxRelay-Dynamic.plist (in target 'RxRelay-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxRelay-Dynamic\ product.build/empty-RxRelay-Dynamic.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxRelay-Dynamic.framework/Info.plist
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxSwift-Dynamic.framework/RxSwift-Dynamic.tbd (in target 'RxSwift-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxSwift-Dynamic.framework/RxSwift-Dynamic -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxSwift-Dynamic.framework/RxSwift-Dynamic.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxSwift-Dynamic.framework (in target 'RxSwift-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxSwift-Dynamic.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxSwift-Dynamic.framework (in target 'RxSwift-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxSwift-Dynamic.framework
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/resource_bundle_accessor.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/DerivedSources/resource_bundle_accessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'RxCocoaRuntime' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -include /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/DerivedSources/resource_bundle_accessor.h -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/resource_bundle_accessor.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/resource_bundle_accessor.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/DerivedSources/resource_bundle_accessor.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/resource_bundle_accessor.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.o /Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/_RXDelegateProxy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'RxCocoaRuntime' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -include /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/DerivedSources/resource_bundle_accessor.h -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.dia -c /Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/_RXDelegateProxy.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.o -index-unit-output-path /RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.o /Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/_RXObjCRuntime.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'RxCocoaRuntime' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -include /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/DerivedSources/resource_bundle_accessor.h -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.dia -c /Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/_RXObjCRuntime.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.o -index-unit-output-path /RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.o /Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/_RXKVOObserver.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'RxCocoaRuntime' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -include /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/DerivedSources/resource_bundle_accessor.h -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.dia -c /Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/_RXKVOObserver.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.o -index-unit-output-path /RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RX.o /Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/_RX.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'RxCocoaRuntime' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -include /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/DerivedSources/resource_bundle_accessor.h -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RX.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RX.dia -c /Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/_RX.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RX.o -index-unit-output-path /RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/_RX.o
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxRelay-Dynamic.framework/RxRelay-Dynamic.tbd (in target 'RxRelay-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxRelay-Dynamic.framework/RxRelay-Dynamic -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxRelay-Dynamic.framework/RxRelay-Dynamic.tbd
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxBlocking-Dynamic.framework/RxBlocking-Dynamic.tbd (in target 'RxBlocking-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxBlocking-Dynamic.framework/RxBlocking-Dynamic -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxBlocking-Dynamic.framework/RxBlocking-Dynamic.tbd
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxTest-Dynamic.framework/RxTest-Dynamic.tbd (in target 'RxTest-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxTest-Dynamic.framework/RxTest-Dynamic -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxTest-Dynamic.framework/RxTest-Dynamic.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxBlocking-Dynamic.framework (in target 'RxBlocking-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxBlocking-Dynamic.framework
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxRelay-Dynamic.framework (in target 'RxRelay-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxRelay-Dynamic.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxBlocking-Dynamic.framework (in target 'RxBlocking-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxBlocking-Dynamic.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxRelay-Dynamic.framework (in target 'RxRelay-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxRelay-Dynamic.framework
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxTest-Dynamic.framework (in target 'RxTest-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxTest-Dynamic.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxTest-Dynamic.framework (in target 'RxTest-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxTest-Dynamic.framework
SwiftDriverJobDiscovery normal arm64 Compiling RxTabBarControllerDelegateProxy.swift, RxTabBarDelegateProxy.swift, RxTableViewDataSourcePrefetchingProxy.swift, RxTableViewDataSourceProxy.swift, RxTableViewDataSourceType.swift, RxTableViewDelegateProxy.swift, RxTableViewReactiveArrayDataSource.swift, RxTarget.swift, RxTextStorageDelegateProxy.swift (in target 'RxCocoa' from project 'RxSwift')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoaRuntime.o normal (in target 'RxCocoaRuntime' from project 'RxSwift')
    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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/RxCocoaRuntime.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/RxCocoaRuntime_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoaRuntime.build/Objects-normal/arm64/RxCocoaRuntime_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoaRuntime.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoaRuntime.o (in target 'RxCocoaRuntime' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoaRuntime.o
SwiftDriverJobDiscovery normal arm64 Compiling NSControl+Rx.swift, NSObject+Rx+KVORepresentable.swift, NSObject+Rx+RawRepresentable.swift, NSObject+Rx.swift, NSSlider+Rx.swift, NSTextField+Rx.swift, NSTextStorage+Rx.swift, NSTextView+Rx.swift, NSView+Rx.swift, NotificationCenter+Rx.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftDriver\ Compilation RxCocoa normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxCocoa' from project 'RxSwift')
    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 RxCocoa -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/RxCocoaRuntime.modulemap -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa-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/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.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/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa-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-xros/RxCocoa.o normal (in target 'RxCocoa' from project 'RxSwift')
    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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.o
ExtractAppIntentsMetadata (in target 'RxCocoa' from project 'RxSwift')
    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 RxCocoa --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.RxCocoa --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/RxCocoa.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/RxCocoa.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 08:10:29.076 appintentsmetadataprocessor[903:4970] Starting appintentsmetadataprocessor export
2025-04-30 08:10:29.109 appintentsmetadataprocessor[903:4970] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.o (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/RxCocoa.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxCocoa-Dynamic.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa-Dynamic\ product.build/empty-RxCocoa-Dynamic.plist (in target 'RxCocoa-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa-Dynamic\ product.build/empty-RxCocoa-Dynamic.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxCocoa-Dynamic.framework/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxCocoa-Dynamic.framework/RxCocoa-Dynamic normal (in target 'RxCocoa-Dynamic' from project 'RxSwift')
    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-xros1.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa-Dynamic\ product.build/Objects-normal/arm64/RxCocoa-Dynamic.LinkFileList -install_name @rpath/RxCocoa-Dynamic.framework/RxCocoa-Dynamic -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa-Dynamic\ product.build/Objects-normal/arm64/RxCocoa-Dynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa-Dynamic\ product.build/Objects-normal/arm64/RxCocoa-Dynamic_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -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-xros/PackageFrameworks/RxCocoa-Dynamic.framework/RxCocoa-Dynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug-xros/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-xros/RxRelay.build/Objects-normal/arm64/RxRelay.swiftmodule
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxCocoa-Dynamic.framework/RxCocoa-Dynamic.tbd (in target 'RxCocoa-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxCocoa-Dynamic.framework/RxCocoa-Dynamic -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros/RxCocoa-Dynamic.framework/RxCocoa-Dynamic.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxCocoa-Dynamic.framework (in target 'RxCocoa-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxCocoa-Dynamic.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxCocoa-Dynamic.framework (in target 'RxCocoa-Dynamic' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks/RxCocoa-Dynamic.framework
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "RxSwift",
  "name" : "RxSwift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "RxSwift",
      "targets" : [
        "RxSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxCocoa",
      "targets" : [
        "RxCocoa"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxRelay",
      "targets" : [
        "RxRelay"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxBlocking",
      "targets" : [
        "RxBlocking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxTest",
      "targets" : [
        "RxTest"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxSwift-Dynamic",
      "targets" : [
        "RxSwift"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxCocoa-Dynamic",
      "targets" : [
        "RxCocoa"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxRelay-Dynamic",
      "targets" : [
        "RxRelay"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxBlocking-Dynamic",
      "targets" : [
        "RxBlocking"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxTest-Dynamic",
      "targets" : [
        "RxTest"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "RxTest",
      "module_type" : "SwiftTarget",
      "name" : "RxTest",
      "path" : "Sources/RxTest",
      "product_memberships" : [
        "RxTest",
        "RxTest-Dynamic"
      ],
      "sources" : [
        "Any+Equatable.swift",
        "Bag.swift",
        "ColdObservable.swift",
        "Event+Equatable.swift",
        "HotObservable.swift",
        "Recorded+Event.swift",
        "Recorded.swift",
        "RxTest.swift",
        "Subscription.swift",
        "TestScheduler.swift",
        "TestSchedulerVirtualTimeConverter.swift",
        "TestableObservable.swift",
        "TestableObserver.swift",
        "XCTest+Rx.swift"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxSwift",
      "module_type" : "SwiftTarget",
      "name" : "RxSwift",
      "path" : "Sources/RxSwift",
      "product_memberships" : [
        "RxSwift",
        "RxCocoa",
        "RxRelay",
        "RxBlocking",
        "RxTest",
        "RxSwift-Dynamic",
        "RxCocoa-Dynamic",
        "RxRelay-Dynamic",
        "RxBlocking-Dynamic",
        "RxTest-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/RxSwift/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AddRef.swift",
        "Amb.swift",
        "AnonymousDisposable.swift",
        "AnonymousObserver.swift",
        "AnyObserver.swift",
        "AsMaybe.swift",
        "AsSingle.swift",
        "AsyncLock.swift",
        "AsyncSubject.swift",
        "AtomicInt.swift",
        "Bag+Rx.swift",
        "Bag.swift",
        "BehaviorSubject.swift",
        "BinaryDisposable.swift",
        "Binder.swift",
        "BooleanDisposable.swift",
        "Buffer.swift",
        "Cancelable.swift",
        "Catch.swift",
        "CombineLatest+Collection.swift",
        "CombineLatest+arity.swift",
        "CombineLatest.swift",
        "CompactMap.swift",
        "Completable+AndThen.swift",
        "Completable.swift",
        "CompositeDisposable.swift",
        "Concat.swift",
        "ConcurrentDispatchQueueScheduler.swift",
        "ConcurrentMainScheduler.swift",
        "ConnectableObservableType.swift",
        "Create.swift",
        "CurrentThreadScheduler.swift",
        "Date+Dispatch.swift",
        "Debounce.swift",
        "Debug.swift",
        "Decode.swift",
        "DefaultIfEmpty.swift",
        "Deferred.swift",
        "Delay.swift",
        "DelaySubscription.swift",
        "Dematerialize.swift",
        "DispatchQueue+Extensions.swift",
        "DispatchQueueConfiguration.swift",
        "Disposable.swift",
        "Disposables.swift",
        "DisposeBag.swift",
        "DisposeBase.swift",
        "DistinctUntilChanged.swift",
        "Do.swift",
        "ElementAt.swift",
        "Empty.swift",
        "Enumerated.swift",
        "Error.swift",
        "Errors.swift",
        "Event.swift",
        "Filter.swift",
        "First.swift",
        "Generate.swift",
        "GroupBy.swift",
        "GroupedObservable.swift",
        "HistoricalScheduler.swift",
        "HistoricalSchedulerTimeConverter.swift",
        "ImmediateSchedulerType.swift",
        "Infallible+CombineLatest+Collection.swift",
        "Infallible+CombineLatest+arity.swift",
        "Infallible+Concurrency.swift",
        "Infallible+Create.swift",
        "Infallible+Debug.swift",
        "Infallible+Operators.swift",
        "Infallible+Zip+arity.swift",
        "Infallible.swift",
        "InfiniteSequence.swift",
        "InvocableScheduledItem.swift",
        "InvocableType.swift",
        "Just.swift",
        "Lock.swift",
        "LockOwnerType.swift",
        "MainScheduler.swift",
        "Map.swift",
        "Materialize.swift",
        "Maybe.swift",
        "Merge.swift",
        "Multicast.swift",
        "Never.swift",
        "NopDisposable.swift",
        "Observable+Concurrency.swift",
        "Observable.swift",
        "ObservableConvertibleType+Infallible.swift",
        "ObservableConvertibleType.swift",
        "ObservableType+Extensions.swift",
        "ObservableType+PrimitiveSequence.swift",
        "ObservableType.swift",
        "ObserveOn.swift",
        "ObserverBase.swift",
        "ObserverType.swift",
        "OperationQueueScheduler.swift",
        "Optional.swift",
        "Platform.Darwin.swift",
        "Platform.Linux.swift",
        "PrimitiveSequence+Concurrency.swift",
        "PrimitiveSequence+Zip+arity.swift",
        "PrimitiveSequence.swift",
        "PriorityQueue.swift",
        "Producer.swift",
        "PublishSubject.swift",
        "Queue.swift",
        "Range.swift",
        "Reactive.swift",
        "RecursiveLock.swift",
        "RecursiveScheduler.swift",
        "Reduce.swift",
        "RefCountDisposable.swift",
        "Repeat.swift",
        "ReplaySubject.swift",
        "RetryWhen.swift",
        "Rx.swift",
        "RxMutableBox.swift",
        "Sample.swift",
        "Scan.swift",
        "ScheduledDisposable.swift",
        "ScheduledItem.swift",
        "ScheduledItemType.swift",
        "SchedulerServices+Emulation.swift",
        "SchedulerType.swift",
        "Sequence.swift",
        "SerialDispatchQueueScheduler.swift",
        "SerialDisposable.swift",
        "ShareReplayScope.swift",
        "Single.swift",
        "SingleAssignmentDisposable.swift",
        "SingleAsync.swift",
        "Sink.swift",
        "Skip.swift",
        "SkipUntil.swift",
        "SkipWhile.swift",
        "StartWith.swift",
        "SubjectType.swift",
        "SubscribeOn.swift",
        "SubscriptionDisposable.swift",
        "SwiftSupport.swift",
        "Switch.swift",
        "SwitchIfEmpty.swift",
        "SynchronizedDisposeType.swift",
        "SynchronizedOnType.swift",
        "SynchronizedUnsubscribeType.swift",
        "TailRecursiveSink.swift",
        "Take.swift",
        "TakeLast.swift",
        "TakeWithPredicate.swift",
        "Throttle.swift",
        "Timeout.swift",
        "Timer.swift",
        "ToArray.swift",
        "Using.swift",
        "VirtualTimeConverterType.swift",
        "VirtualTimeScheduler.swift",
        "Window.swift",
        "WithLatestFrom.swift",
        "WithUnretained.swift",
        "Zip+Collection.swift",
        "Zip+arity.swift",
        "Zip.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxRelay",
      "module_type" : "SwiftTarget",
      "name" : "RxRelay",
      "path" : "Sources/RxRelay",
      "product_memberships" : [
        "RxCocoa",
        "RxRelay",
        "RxCocoa-Dynamic",
        "RxRelay-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/RxRelay/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "BehaviorRelay.swift",
        "Observable+Bind.swift",
        "PublishRelay.swift",
        "ReplayRelay.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxCocoaRuntime",
      "module_type" : "ClangTarget",
      "name" : "RxCocoaRuntime",
      "path" : "Sources/RxCocoaRuntime",
      "product_memberships" : [
        "RxCocoa",
        "RxCocoa-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/RxCocoaRuntime/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "_RX.m",
        "_RXDelegateProxy.m",
        "_RXKVOObserver.m",
        "_RXObjCRuntime.m"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxCocoa",
      "module_type" : "SwiftTarget",
      "name" : "RxCocoa",
      "path" : "Sources/RxCocoa",
      "product_memberships" : [
        "RxCocoa",
        "RxCocoa-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "BehaviorRelay+Driver.swift",
        "ControlEvent+Driver.swift",
        "ControlEvent+Signal.swift",
        "ControlEvent.swift",
        "ControlProperty+Driver.swift",
        "ControlProperty.swift",
        "ControlTarget.swift",
        "DelegateProxy.swift",
        "DelegateProxyType.swift",
        "DispatchQueue+Extensions.swift",
        "Driver+Subscription.swift",
        "Driver.swift",
        "Infallible+Bind.swift",
        "Infallible+Driver.swift",
        "ItemEvents.swift",
        "KVORepresentable+CoreGraphics.swift",
        "KVORepresentable+Swift.swift",
        "KVORepresentable.swift",
        "NSButton+Rx.swift",
        "NSControl+Rx.swift",
        "NSObject+Rx+KVORepresentable.swift",
        "NSObject+Rx+RawRepresentable.swift",
        "NSObject+Rx.swift",
        "NSSlider+Rx.swift",
        "NSTextField+Rx.swift",
        "NSTextStorage+Rx.swift",
        "NSTextView+Rx.swift",
        "NSView+Rx.swift",
        "NotificationCenter+Rx.swift",
        "Observable+Bind.swift",
        "ObservableConvertibleType+Driver.swift",
        "ObservableConvertibleType+SharedSequence.swift",
        "ObservableConvertibleType+Signal.swift",
        "PublishRelay+Signal.swift",
        "RxCocoa.swift",
        "RxCocoaObjCRuntimeError+Extensions.swift",
        "RxCollectionViewDataSourcePrefetchingProxy.swift",
        "RxCollectionViewDataSourceProxy.swift",
        "RxCollectionViewDataSourceType.swift",
        "RxCollectionViewDelegateProxy.swift",
        "RxCollectionViewReactiveArrayDataSource.swift",
        "RxNavigationControllerDelegateProxy.swift",
        "RxPickerViewAdapter.swift",
        "RxPickerViewDataSourceProxy.swift",
        "RxPickerViewDataSourceType.swift",
        "RxPickerViewDelegateProxy.swift",
        "RxScrollViewDelegateProxy.swift",
        "RxSearchBarDelegateProxy.swift",
        "RxSearchControllerDelegateProxy.swift",
        "RxTabBarControllerDelegateProxy.swift",
        "RxTabBarDelegateProxy.swift",
        "RxTableViewDataSourcePrefetchingProxy.swift",
        "RxTableViewDataSourceProxy.swift",
        "RxTableViewDataSourceType.swift",
        "RxTableViewDelegateProxy.swift",
        "RxTableViewReactiveArrayDataSource.swift",
        "RxTarget.swift",
        "RxTextStorageDelegateProxy.swift",
        "RxTextViewDelegateProxy.swift",
        "RxWKNavigationDelegateProxy.swift",
        "SchedulerType+SharedSequence.swift",
        "SectionedViewDataSourceType.swift",
        "SharedSequence+Concurrency.swift",
        "SharedSequence+Operators+arity.swift",
        "SharedSequence+Operators.swift",
        "SharedSequence.swift",
        "Signal+Subscription.swift",
        "Signal.swift",
        "TextInput.swift",
        "UIActivityIndicatorView+Rx.swift",
        "UIApplication+Rx.swift",
        "UIBarButtonItem+Rx.swift",
        "UIButton+Rx.swift",
        "UICollectionView+Rx.swift",
        "UIControl+Rx.swift",
        "UIDatePicker+Rx.swift",
        "UIGestureRecognizer+Rx.swift",
        "UINavigationController+Rx.swift",
        "UIPickerView+Rx.swift",
        "UIRefreshControl+Rx.swift",
        "UIScrollView+Rx.swift",
        "UISearchBar+Rx.swift",
        "UISearchController+Rx.swift",
        "UISegmentedControl+Rx.swift",
        "UISlider+Rx.swift",
        "UIStepper+Rx.swift",
        "UISwitch+Rx.swift",
        "UITabBar+Rx.swift",
        "UITabBarController+Rx.swift",
        "UITableView+Rx.swift",
        "UITextField+Rx.swift",
        "UITextView+Rx.swift",
        "URLSession+Rx.swift",
        "WKWebView+Rx.swift"
      ],
      "target_dependencies" : [
        "RxSwift",
        "RxRelay",
        "RxCocoaRuntime"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxBlocking",
      "module_type" : "SwiftTarget",
      "name" : "RxBlocking",
      "path" : "Sources/RxBlocking",
      "product_memberships" : [
        "RxBlocking",
        "RxBlocking-Dynamic"
      ],
      "sources" : [
        "AtomicInt.swift",
        "BlockingObservable+Operators.swift",
        "BlockingObservable.swift",
        "ObservableConvertibleType+Blocking.swift",
        "Platform.Darwin.swift",
        "Platform.Linux.swift",
        "RecursiveLock.swift",
        "Resources.swift",
        "RunLoopLock.swift"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.