Build Information
Successful build of RxSwift, reference 6.10.2 (132aea), with Swift 6.1 for visionOS using Xcode 16.3 on 3 Mar 2026 06:07:16 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 InferSendableFromCapturesBuild Log
init(titleForRow: @escaping TitleForRow) {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIPickerView+Rx.swift:147:71: warning: call to main actor-isolated initializer 'init(attributedTitleForRow:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let adapter = RxAttributedStringPickerViewAdapter<Sequence>(attributedTitleForRow: attributedTitleForRow)
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.swift:69:5: note: calls to initializer 'init(attributedTitleForRow:)' from outside of its actor context are implicitly asynchronous
init(attributedTitleForRow: @escaping AttributedTitleForRow) {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.swift:69:5: note: main actor isolation inferred from inheritance from generic class 'RxPickerViewSequenceDataSource'
init(attributedTitleForRow: @escaping AttributedTitleForRow) {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIPickerView+Rx.swift:187:55: warning: call to main actor-isolated initializer 'init(viewForRow:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let adapter = RxPickerViewAdapter<Sequence>(viewForRow: viewForRow)
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.swift:83:5: note: calls to initializer 'init(viewForRow:)' from outside of its actor context are implicitly asynchronous
init(viewForRow: @escaping ViewForRow) {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.swift:83:5: note: main actor isolation inferred from inheritance from generic class 'RxPickerViewSequenceDataSource'
init(viewForRow: @escaping ViewForRow) {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIPickerView+Rx.swift:113:61: warning: sending 'titleForRow' risks causing data races; this is an error in the Swift 6 language mode
let adapter = RxStringPickerViewAdapter<Sequence>(titleForRow: titleForRow)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIPickerView+Rx.swift:113:61: note: sending task-isolated 'titleForRow' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let adapter = RxStringPickerViewAdapter<Sequence>(titleForRow: titleForRow)
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIPickerView+Rx.swift:147:71: warning: sending 'attributedTitleForRow' risks causing data races; this is an error in the Swift 6 language mode
let adapter = RxAttributedStringPickerViewAdapter<Sequence>(attributedTitleForRow: attributedTitleForRow)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIPickerView+Rx.swift:147:71: note: sending task-isolated 'attributedTitleForRow' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let adapter = RxAttributedStringPickerViewAdapter<Sequence>(attributedTitleForRow: attributedTitleForRow)
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIPickerView+Rx.swift:187:55: warning: sending 'viewForRow' risks causing data races; this is an error in the Swift 6 language mode
let adapter = RxPickerViewAdapter<Sequence>(viewForRow: viewForRow)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIPickerView+Rx.swift:187:55: note: sending task-isolated 'viewForRow' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let adapter = RxPickerViewAdapter<Sequence>(viewForRow: viewForRow)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIRefreshControl+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/UIRefreshControl+Rx.swift:19:32: warning: call to main actor-isolated instance method 'beginRefreshing()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
refreshControl.beginRefreshing()
^
UIKit.UIRefreshControl.beginRefreshing:3:24: note: calls to instance method 'beginRefreshing()' from outside of its actor context are implicitly asynchronous
@MainActor open func beginRefreshing()}
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIRefreshControl+Rx.swift:21:32: warning: call to main actor-isolated instance method 'endRefreshing()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
refreshControl.endRefreshing()
^
UIKit.UIRefreshControl.endRefreshing:3:24: note: calls to instance method 'endRefreshing()' from outside of its actor context are implicitly asynchronous
@MainActor open func endRefreshing()}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UIScrollView+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/UIScrollView+Rx.swift:30:24: warning: main actor-isolated property 'contentOffset' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentOffset = contentOffset
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:55:59: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGPoint contentOffset; // default CGPointZero
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISearchBar+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/UISearchBar+Rx.swift:30:35: 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 = searchBar?.text
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:54:62: note: property declared here
@property(nullable,nonatomic,copy) NSString *text; // current/starting search text
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISearchBar+Rx.swift:36:40: warning: main actor-isolated property 'text' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.map { _ in searchBar?.text ?? "" }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:54:62: note: property declared here
@property(nullable,nonatomic,copy) NSString *text; // current/starting search text
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISearchBar+Rx.swift:41:23: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
searchBar.text = text
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:54:62: note: mutation of this property is only permitted within the actor
@property(nullable,nonatomic,copy) NSString *text; // current/starting search text
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISearchBar+Rx.swift:50:33: warning: main actor-isolated property 'selectedScopeButtonIndex' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let index = source?.selectedScopeButtonIndex ?? 0
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:101:38: note: property declared here
@property(nonatomic) NSInteger selectedScopeButtonIndex API_AVAILABLE(ios(3.0)); // index into array of scope button titles. default is 0. ignored if out of range
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISearchBar+Rx.swift:60:23: warning: main actor-isolated property 'selectedScopeButtonIndex' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
searchBar.selectedScopeButtonIndex = index
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:101:38: note: mutation of this property is only permitted within the actor
@property(nonatomic) NSInteger selectedScopeButtonIndex API_AVAILABLE(ios(3.0)); // index into array of scope button titles. default is 0. ignored if out of range
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISearchController+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/UISegmentedControl+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/UISegmentedControl+Rx.swift:24:34: warning: main actor-isolated property 'selectedSegmentIndex' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
segmentedControl.selectedSegmentIndex
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h:92:32: note: property declared here
@property(nonatomic) NSInteger selectedSegmentIndex;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISegmentedControl+Rx.swift:26:34: warning: main actor-isolated property 'selectedSegmentIndex' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
segmentedControl.selectedSegmentIndex = value
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h:92:32: note: mutation of this property is only permitted within the actor
@property(nonatomic) NSInteger selectedSegmentIndex;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISegmentedControl+Rx.swift:34:30: warning: call to main actor-isolated instance method 'setEnabled(_:forSegmentAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
segmentedControl.setEnabled(segmentEnabled, forSegmentAt: index)
^
UIKit.UISegmentedControl.setEnabled:2:22: note: calls to instance method 'setEnabled(_:forSegmentAt:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setEnabled(_ enabled: Bool, forSegmentAt segment: Int)}
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISegmentedControl+Rx.swift:41:30: warning: call to main actor-isolated instance method 'setTitle(_:forSegmentAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
segmentedControl.setTitle(title, forSegmentAt: index)
^
UIKit.UISegmentedControl.setTitle:2:22: note: calls to instance method 'setTitle(_:forSegmentAt:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setTitle(_ title: String?, forSegmentAt segment: Int)}
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISegmentedControl+Rx.swift:48:30: warning: call to main actor-isolated instance method 'setImage(_:forSegmentAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
segmentedControl.setImage(image, forSegmentAt: index)
^
UIKit.UISegmentedControl.setImage:2:22: note: calls to instance method 'setImage(_:forSegmentAt:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setImage(_ image: UIImage?, forSegmentAt segment: Int)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISlider+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/UISlider+Rx.swift:19:24: warning: main actor-isolated property 'value' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
slider.value
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h:21:28: note: property declared here
@property(nonatomic) float value; // default 0.0. this value will be pinned to min/max
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/UISlider+Rx.swift:21:24: warning: main actor-isolated property 'value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
slider.value = value
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h:21:28: note: mutation of this property is only permitted within the actor
@property(nonatomic) float value; // default 0.0. this value will be pinned to min/max
^
SwiftCompile normal arm64 Compiling\ RxCollectionViewDelegateProxy.swift,\ RxCollectionViewReactiveArrayDataSource.swift,\ RxNavigationControllerDelegateProxy.swift,\ RxPickerViewAdapter.swift,\ RxPickerViewDataSourceProxy.swift,\ RxPickerViewDataSourceType.swift,\ RxPickerViewDelegateProxy.swift,\ RxScrollViewDelegateProxy.swift,\ RxSearchBarDelegateProxy.swift,\ RxSearchControllerDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceType.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift (in target 'RxCocoa' from project 'RxSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewDelegateProxy.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/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift (in target 'RxCocoa' from project 'RxSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift:51:10: warning: main actor-isolated instance method 'collectionView(_:observedEvent:)' cannot be used to satisfy nonisolated requirement from protocol 'RxCollectionViewDataSourceType'; this is an error in the Swift 6 language mode
func collectionView(_ collectionView: UICollectionView, observedEvent: Event<Sequence>) {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift:51:10: note: add 'nonisolated' to 'collectionView(_:observedEvent:)' to make this instance method not isolated to the actor
func collectionView(_ collectionView: UICollectionView, observedEvent: Event<Sequence>) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift:43:5: note: add '@preconcurrency' to the 'RxCollectionViewDataSourceType' conformance to defer isolation checking to run time
RxCollectionViewDataSourceType
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewDataSourceType.swift:23:10: note: mark the protocol requirement 'collectionView(_:observedEvent:)' 'async' to allow actor-isolated conformances
func collectionView(_ collectionView: UICollectionView, observedEvent: Event<Element>)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift:72: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/RxCollectionViewReactiveArrayDataSource.swift:72: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/RxCollectionViewReactiveArrayDataSource.swift:62:5: 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
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.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/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.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/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.swift:17: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/RxPickerViewAdapter.swift:17: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/RxPickerViewAdapter.swift:14:73: note: add '@preconcurrency' to the 'SectionedViewDataSourceType' conformance to defer isolation checking to run time
class RxPickerViewArrayDataSource<T>: NSObject, UIPickerViewDataSource, 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
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.swift:39:10: warning: main actor-isolated instance method 'pickerView(_:observedEvent:)' cannot be used to satisfy nonisolated requirement from protocol 'RxPickerViewDataSourceType'; this is an error in the Swift 6 language mode
func pickerView(_ pickerView: UIPickerView, observedEvent: Event<Sequence>) {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.swift:39:10: note: add 'nonisolated' to 'pickerView(_:observedEvent:)' to make this instance method not isolated to the actor
func pickerView(_ pickerView: UIPickerView, observedEvent: Event<Sequence>) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewAdapter.swift:35:5: note: add '@preconcurrency' to the 'RxPickerViewDataSourceType' conformance to defer isolation checking to run time
RxPickerViewDataSourceType
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceType.swift:23:10: note: mark the protocol requirement 'pickerView(_:observedEvent:)' 'async' to allow actor-isolated conformances
func pickerView(_ pickerView: UIPickerView, observedEvent: Event<Element>)
^
async
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.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/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.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 pickerViewDataSourceNotSet = PickerViewDataSourceNotSet()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceType.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/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.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/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.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/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:49:67: warning: main actor-isolated property 'contentOffset' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let subject = BehaviorSubject<CGPoint>(value: scrollView?.contentOffset ?? CGPoint.zero)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:55:59: note: property declared here
@property(nonatomic) CGPoint contentOffset; // default CGPointZero
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.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/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.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/UINavigationController.h:82:73: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxNavigationControllerDelegateProxy.swift:14:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UINavigationController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:21:63: 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(nullable,nonatomic,weak) id<UIPickerViewDataSource> dataSource; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDataSourceProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDataSource' conformance to defer isolation checking to run time
extension UIPickerView: HasDataSource {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:283:9: note: requirement 'dataSource' declared here
var dataSource: DataSource? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:22:63: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIPickerViewDelegate> delegate; // default is nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxPickerViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIPickerView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:93:68: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UIScrollViewDelegate> delegate; // default nil. weak reference
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxScrollViewDelegateProxy.swift:14:25: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UIScrollView: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h:53:60: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property(nullable,nonatomic,weak) id<UISearchBarDelegate> delegate; // weak reference. default is nil
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchBarDelegateProxy.swift:14:24: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchBar: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { get set }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h:75:71: warning: main actor-isolated property 'delegate' cannot be used to satisfy nonisolated requirement from protocol 'HasDelegate'; this is an error in the Swift 6 language mode
@property (nullable, nonatomic, weak) id <UISearchControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift:14:31: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension UISearchController: HasDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxCocoa/DelegateProxyType.swift:264:9: note: requirement 'delegate' declared here
var delegate: Delegate? { 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
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')
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
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
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')
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
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
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/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
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/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
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
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
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')
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')
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
2026-03-02 22:07:14.856 appintentsmetadataprocessor[906:5121] Starting appintentsmetadataprocessor export
2026-03-02 22:07:14.902 appintentsmetadataprocessor[906:5121] Extracted no relevant App Intents symbols, skipping writing output
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
2026-03-02 22:07:14.858 appintentsmetadataprocessor[907:5122] Starting appintentsmetadataprocessor export
2026-03-02 22:07:14.902 appintentsmetadataprocessor[907:5122] 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
2026-03-02 22:07:14.868 appintentsmetadataprocessor[908:5132] Starting appintentsmetadataprocessor export
2026-03-02 22:07:14.908 appintentsmetadataprocessor[908:5132] Extracted no relevant App Intents symbols, skipping writing output
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')
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
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
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
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/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
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')
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
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/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
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
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
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
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
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
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
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/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
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
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/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
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/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/_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
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
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 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')
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/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
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
2026-03-02 22:07:15.497 appintentsmetadataprocessor[935:5250] Starting appintentsmetadataprocessor export
2026-03-02 22:07:15.529 appintentsmetadataprocessor[935:5250] 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
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
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
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" : "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" : "RxRelay-Dynamic",
"targets" : [
"RxRelay"
],
"type" : {
"library" : [
"dynamic"
]
}
},
{
"name" : "RxBlocking-Dynamic",
"targets" : [
"RxBlocking"
],
"type" : {
"library" : [
"dynamic"
]
}
},
{
"name" : "RxTest-Dynamic",
"targets" : [
"RxTest"
],
"type" : {
"library" : [
"dynamic"
]
}
},
{
"name" : "RxCocoa",
"targets" : [
"RxCocoa"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "RxCocoa-Dynamic",
"targets" : [
"RxCocoa"
],
"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",
"RxRelay",
"RxBlocking",
"RxTest",
"RxSwift-Dynamic",
"RxRelay-Dynamic",
"RxBlocking-Dynamic",
"RxTest-Dynamic",
"RxCocoa",
"RxCocoa-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" : [
"RxRelay",
"RxRelay-Dynamic",
"RxCocoa",
"RxCocoa-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.