The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of RxAppKit, reference main (ea8128), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 27 Apr 2025 17:45:44 UTC.

Swift 6 data race errors: 47

Build Command

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

Build Log

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

/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTabViewController+Rx.swift:8:20: warning: main actor-isolated property 'tabViewItems' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            target.tabViewItems.forEach(target.removeTabViewItem(_:))
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabViewController.h:54:53: note: property declared here
@property (copy) NSArray<__kindof NSTabViewItem *> *tabViewItems;
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTabViewController+Rx.swift:8:48: warning: converting function value of type '@MainActor @Sendable (NSTabViewItem) -> Void' to '(NSTabViewItem) throws -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
            target.tabViewItems.forEach(target.removeTabViewItem(_:))
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTabViewController+Rx.swift:9:41: warning: converting function value of type '@MainActor @Sendable (NSTabViewItem) -> Void' to '(NSTabViewItem) throws -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
            tabViewItems.forEach(target.addTabViewItem(_:))
                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:44:66: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            return self.items(source)(cellProvider, { _, _, _ in NSTableRowView() })
                                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h:23:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init NS_DESIGNATED_INITIALIZER;
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h:23:1: note: main actor isolation inferred from inheritance from class 'NSView'
- (instancetype)init NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:71:44: warning: main actor-isolated property 'clickedRow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        _controlEventForDoubleAction { ($0.clickedRow, $0.clickedColumn) }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:276:32: note: property declared here
@property (readonly) NSInteger clickedRow;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:71:59: warning: main actor-isolated property 'clickedColumn' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        _controlEventForDoubleAction { ($0.clickedRow, $0.clickedColumn) }
                                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:275:32: note: property declared here
@property (readonly) NSInteger clickedColumn;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:75:42: warning: main actor-isolated property 'clickedRow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        _controlEventForBaseAction { ($0.clickedRow, $0.clickedColumn) }
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:276:32: note: property declared here
@property (readonly) NSInteger clickedRow;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:75:57: warning: main actor-isolated property 'clickedColumn' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        _controlEventForBaseAction { ($0.clickedRow, $0.clickedColumn) }
                                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:275:32: note: property declared here
@property (readonly) NSInteger clickedColumn;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:79:42: warning: main actor-isolated property 'selectedRow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        _controlEventForBaseAction { ($0.selectedRow, $0.selectedColumn) }
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:361:32: note: property declared here
@property (readonly) NSInteger selectedRow;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:79:58: warning: main actor-isolated property 'selectedColumn' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        _controlEventForBaseAction { ($0.selectedRow, $0.selectedColumn) }
                                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:360:32: note: property declared here
@property (readonly) NSInteger selectedColumn;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:115:58: warning: main actor-isolated property 'numberOfRows' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let source = didAddRow().filter { $0.row == base.numberOfRows - 1 }
                                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:222:32: note: property declared here
@property (readonly) NSInteger numberOfRows;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:121:34: warning: call to main actor-isolated instance method 'isValidRowIndex' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            guard let view, view.isValidRowIndex(clickedIndex.row) else { return nil }
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:159:10: note: calls to instance method 'isValidRowIndex' from outside of its actor context are implicitly asynchronous
    func isValidRowIndex(_ row: Int) -> Bool {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:159:10: note: main actor isolation inferred from inheritance from class 'NSControl'
    func isValidRowIndex(_ row: Int) -> Bool {
         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTextField+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTextStorage+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTextView+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTextView+Rx.swift:8:44: warning: call to main actor-isolated instance method 'attributedString()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let attributedText = textView?.attributedString()
                                           ^
AppKit.NSTextView.attributedString:3:24: note: calls to instance method 'attributedString()' from outside of its actor context are implicitly asynchronous
  @MainActor open func attributedString() -> NSAttributedString}
                       ^
AppKit.NSTextView.attributedString:3:24: note: main actor isolation inferred from inheritance from class 'NSText'
  @MainActor open func attributedString() -> NSAttributedString}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTextView+Rx.swift:10:74: warning: main actor-isolated property 'textStorage' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let textChanged: Observable<NSAttributedString?> = textView?.textStorage?
                                                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextView.h:113:55: note: property declared here
@property (nullable, readonly, assign) NSTextStorage *textStorage;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTextView+Rx.swift:20:31: warning: call to main actor-isolated instance method 'attributedString()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    textView?.attributedString()
                              ^
AppKit.NSTextView.attributedString:3:24: note: calls to instance method 'attributedString()' from outside of its actor context are implicitly asynchronous
  @MainActor open func attributedString() -> NSAttributedString}
                       ^
AppKit.NSTextView.attributedString:3:24: note: main actor isolation inferred from inheritance from class 'NSText'
  @MainActor open func attributedString() -> NSAttributedString}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTextView+Rx.swift:32:25: warning: call to main actor-isolated instance method 'attributedString()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if textView.attributedString() != attributedString, let attributedString {
                        ^
AppKit.NSTextView.attributedString:3:24: note: calls to instance method 'attributedString()' from outside of its actor context are implicitly asynchronous
  @MainActor open func attributedString() -> NSAttributedString}
                       ^
AppKit.NSTextView.attributedString:3:24: note: main actor isolation inferred from inheritance from class 'NSText'
  @MainActor open func attributedString() -> NSAttributedString}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTextView+Rx.swift:33:26: warning: main actor-isolated property 'textStorage' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                textView.textStorage?.setAttributedString(attributedString)
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextView.h:113:55: note: property declared here
@property (nullable, readonly, assign) NSTextStorage *textStorage;
                                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbar+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSView+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSViewController+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSWindow+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h:278:26: warning: main actor-isolated property 'doubleAction' cannot be used to satisfy nonisolated requirement from protocol 'HasDoubleAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL doubleAction;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSTableView+Rx.swift:6:24: note: add '@preconcurrency' to the 'HasDoubleAction' conformance to defer isolation checking to run time
extension NSTableView: HasDoubleAction {}
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift:9:9: note: requirement 'doubleAction' declared here
    var doubleAction: Selector? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:94:31: warning: main actor-isolated property 'target' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable, weak) id target;
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSToolbarItem+Rx.swift:5:26: note: add '@preconcurrency' to the 'HasTargeAction' conformance to defer isolation checking to run time
extension NSToolbarItem: HasTargeAction {}
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:9:9: note: requirement 'target' declared here
    var target: AnyObject? { set get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h:100:26: warning: main actor-isolated property 'action' cannot be used to satisfy nonisolated requirement from protocol 'HasTargeAction'; this is an error in the Swift 6 language mode
@property (nullable) SEL action;
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift:10:9: note: requirement 'action' declared here
    var action: Selector? { set get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSWindow+Rx.swift:73:63: warning: main actor-isolated class property 'oldScaleFactorUserInfoKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            try (castOrThrow(NSNumber.self, $0.userInfo?[Base.oldScaleFactorUserInfoKey]), castOrThrow(NSColorSpace.self, $0.userInfo?[Base.oldColorSpaceUserInfoKey]))
                                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:958:32: note: class property declared here
APPKIT_EXTERN NSString * const NSBackingPropertyOldScaleFactorKey API_AVAILABLE(macos(10.7)); // added in 10.7.3; an NSNumber
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSWindow+Rx.swift:73:141: warning: main actor-isolated class property 'oldColorSpaceUserInfoKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            try (castOrThrow(NSNumber.self, $0.userInfo?[Base.oldScaleFactorUserInfoKey]), castOrThrow(NSColorSpace.self, $0.userInfo?[Base.oldColorSpaceUserInfoKey]))
                                                                                                                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:959:32: note: class property declared here
APPKIT_EXTERN NSString * const NSBackingPropertyOldColorSpaceKey API_AVAILABLE(macos(10.7));  // added in 10.7.3; an NSColorSpace
                               ^
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-8ZF7U5TXFWVY3XW786ATGVRF9.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-8ZF7U5TXFWVY3XW786ATGVRF9.scan
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')
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/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/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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/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/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 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/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/RxCocoa.build/Objects-normal/arm64/RxCocoa_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoaRuntime/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoa.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoa.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/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/RxCocoa.build/Objects-normal/arm64/RxCocoa-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-8MDBZL8KBCG0K3KO9AMT28TUO.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-8MDBZL8KBCG0K3KO9AMT28TUO.scan
SwiftCompile normal arm64 Compiling\ RxNSToolbarDelegateProxy.swift,\ RxNSToolbarProxy.swift,\ ActionProxy+HasDoubleAction.swift,\ ActionProxy+HasTargetAction.swift,\ ActionProxy+HasTargetRequiredAction.swift,\ ActionProxy.swift,\ HasDoubleAction.swift,\ HasTargeAction.swift,\ HasTargetRequiredAction.swift,\ BaseTarget.swift,\ DoubleClickTarget.swift,\ RxTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasDoubleAction.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetAction.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetRequiredAction.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargetRequiredAction.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Target/BaseTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Target/DoubleClickTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Target/RxTarget.swift (in target 'RxAppKit' from project 'RxAppKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:1: warning: extension declares a conformance of imported type 'NSToolbar' to imported protocol 'HasDelegate'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
extension NSToolbar: HasDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:1: note: add '@retroactive' to silence this warning
extension NSToolbar: HasDelegate {
^                    ~~~~~~~~~~~
                     @retroactive HasDelegate
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarProxy.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarProxy.swift:18:56: warning: main actor-isolated property 'representedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        didSelectItem.accept((toolbarItem, toolbarItem.representedObject))
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Common/NSToolbarItem+.swift:15:9: note: property declared here
    var representedObject: Any? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarProxy.swift:17:16: note: add '@MainActor' to make instance method 'run' part of global actor 'MainActor'
    @objc func run(_ toolbarItem: NSToolbarItem) {
               ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasDoubleAction.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasDoubleAction.swift:6:13: warning: let 'hasDoubleActionSwizzledKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
private let hasDoubleActionSwizzledKey = AssociationKey<Bool>(default: false)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Common/NSObject+Association.swift:4:17: note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
internal struct AssociationKey<Value> {
                ^
                                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasDoubleAction.swift:6:13: note: add '@MainActor' to make let 'hasDoubleActionSwizzledKey' part of global actor 'MainActor'
private let hasDoubleActionSwizzledKey = AssociationKey<Bool>(default: false)
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasDoubleAction.swift:6:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let hasDoubleActionSwizzledKey = AssociationKey<Bool>(default: false)
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetAction.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetAction.swift:6:13: warning: let 'hasSwizzledKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
private let hasSwizzledKey = AssociationKey<Bool>(default: false)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Common/NSObject+Association.swift:4:17: note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
internal struct AssociationKey<Value> {
                ^
                                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetAction.swift:6:13: note: add '@MainActor' to make let 'hasSwizzledKey' part of global actor 'MainActor'
private let hasSwizzledKey = AssociationKey<Bool>(default: false)
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetAction.swift:6:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let hasSwizzledKey = AssociationKey<Bool>(default: false)
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetRequiredAction.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetRequiredAction.swift:6:13: warning: let 'hasSwizzledKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
private let hasSwizzledKey = AssociationKey<Bool>(default: false)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Common/NSObject+Association.swift:4:17: note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
internal struct AssociationKey<Value> {
                ^
                                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetRequiredAction.swift:6:13: note: add '@MainActor' to make let 'hasSwizzledKey' part of global actor 'MainActor'
private let hasSwizzledKey = AssociationKey<Bool>(default: false)
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy+HasTargetRequiredAction.swift:6:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let hasSwizzledKey = AssociationKey<Bool>(default: false)
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:43:26: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if let app = NSApp {
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:41:14: note: add '@MainActor' to make local function 'invoke' part of global actor 'MainActor'
        func invoke(_ pair: Pair) {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:44:21: warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                app.sendAction(action, to: pair.target, from: sender)
                    ^
AppKit.NSApplication.sendAction:2:22: note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
@MainActor open func sendAction(_ action: Selector, to target: Any?, from sender: Any?) -> Bool}
                     ^
AppKit.NSApplication.sendAction:2:22: note: main actor isolation inferred from inheritance from class 'NSResponder'
@MainActor open func sendAction(_ action: Selector, to target: Any?, from sender: Any?) -> Bool}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:41:14: note: add '@MainActor' to make local function 'invoke' part of global actor 'MainActor'
        func invoke(_ pair: Pair) {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:56:26: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if let app = NSApp {
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:54:14: note: add '@MainActor' to make local function 'invoke' part of global actor 'MainActor'
        func invoke(_ pair: Pair) {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:57:21: warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                app.sendAction(doubleAction, to: target, from: sender)
                    ^
AppKit.NSApplication.sendAction:2:22: note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
@MainActor open func sendAction(_ action: Selector, to target: Any?, from sender: Any?) -> Bool}
                     ^
AppKit.NSApplication.sendAction:2:22: note: main actor isolation inferred from inheritance from class 'NSResponder'
@MainActor open func sendAction(_ action: Selector, to target: Any?, from sender: Any?) -> Bool}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:54:14: note: add '@MainActor' to make local function 'invoke' part of global actor 'MainActor'
        func invoke(_ pair: Pair) {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:44:21: warning: sending 'pair.target' risks causing data races; this is an error in the Swift 6 language mode
                app.sendAction(action, to: pair.target, from: sender)
                ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:44:21: note: sending task-isolated 'pair.target' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
                app.sendAction(action, to: pair.target, from: sender)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:44:21: warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
                app.sendAction(action, to: pair.target, from: sender)
                ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:44:21: note: sending task-isolated value of non-Sendable type 'Any?' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing races in between task-isolated and main actor-isolated uses
                app.sendAction(action, to: pair.target, from: sender)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:57:21: warning: sending 'target.some' risks causing data races; this is an error in the Swift 6 language mode
                app.sendAction(doubleAction, to: target, from: sender)
                ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:57:21: note: sending task-isolated 'target.some' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
                app.sendAction(doubleAction, to: target, from: sender)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:57:21: warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
                app.sendAction(doubleAction, to: target, from: sender)
                ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/ActionProxy/ActionProxy.swift:57:21: note: sending task-isolated value of non-Sendable type 'Any?' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing races in between task-isolated and main actor-isolated uses
                app.sendAction(doubleAction, to: target, from: sender)
                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasDoubleAction.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargeAction.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Protocols/HasTargetRequiredAction.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Target/BaseTarget.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Target/DoubleClickTarget.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Target-Action/Target/RxTarget.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h:76:50: 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, weak) id<NSToolbarDelegate> delegate;
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Proxies/RxNSToolbarDelegateProxy.swift:7:22: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSToolbar: HasDelegate {
                     ^
                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftDriverJobDiscovery normal arm64 Compiling RxNSSharingServicePickerToolbarItemAdapter.swift, SharingServicePickerToolbarItemAdapter.swift, RxNSTableViewArrayAdapter.swift, RxNSTableViewArrayAnimatedAdapter.swift, TableViewArrayAdapter.swift, RxNSToolbarAdapter.swift, ToolbarAdapter.swift, RequiredMethodDelegateProxyType.swift, RxNSBrowserDelegateType.swift, RxNSCollectionViewDataSourceType.swift, RxNSComboBoxDataSourceType.swift, RxNSOutlineViewDataSourceType.swift, RxNSPageControllDelegateType.swift (in target 'RxAppKit' from project 'RxAppKit')
SwiftCompile normal arm64 Compiling\ NSPopUpButton+Rx.swift,\ NSPopover+Rx.swift,\ NSProgressIndicator+Rx.swift,\ NSResponder+Rx.swift,\ NSSavePanel+Rx.swift,\ NSScrollView+Rx.swift,\ NSSearchField+Rx.swift,\ NSSegmentedControl+Rx.swift,\ NSSharingServicePickerToolbarItem+Rx.swift,\ NSSplitView+Rx.swift,\ NSSplitViewController+Rx.swift,\ NSStackView+Rx.swift,\ NSStandardKeyBindingResponding+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSProgressIndicator+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSResponder+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSavePanel+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSearchField+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSegmentedControl+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSharingServicePickerToolbarItem+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitView+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitViewController+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStandardKeyBindingResponding+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:10:41: warning: main actor-isolated property 'selectedItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        _controlEventForBaseAction { $0.selectedItem?.title }
                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButton.h:114:52: note: property declared here
@property (nullable, readonly, strong) NSMenuItem *selectedItem;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:14:41: warning: main actor-isolated property 'indexOfSelectedItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        _controlEventForBaseAction { $0.indexOfSelectedItem }
                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButton.h:115:32: note: property declared here
@property (readonly) NSInteger indexOfSelectedItem;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:19:18: warning: main actor-isolated property 'indexOfSelectedItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            base.indexOfSelectedItem
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButton.h:115:32: note: property declared here
@property (readonly) NSInteger indexOfSelectedItem;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:21:18: warning: call to main actor-isolated instance method 'selectItem(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            base.selectItem(at: selectedIndex)
                 ^
AppKit.NSPopUpButton.selectItem:2:22: note: calls to instance method 'selectItem(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func selectItem(at index: Int)}
                     ^
AppKit.NSPopUpButton.selectItem:2:22: note: main actor isolation inferred from inheritance from class 'NSButton'
@MainActor open func selectItem(at index: Int)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:27:23: warning: main actor-isolated property 'itemTitles' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if target.itemTitles.isEmpty {
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButton.h:122:49: note: property declared here
@property (readonly, copy) NSArray<NSString *> *itemTitles;
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:28:38: warning: converting function value of type '@MainActor @Sendable (String) -> Void' to '(String) throws -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
                items.forEach(target.addItem(withTitle:))
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:30:64: warning: main actor-isolated property 'itemTitles' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                let changeset = StagedChangeset(source: target.itemTitles, target: .init(items))
                                                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButton.h:122:49: note: property declared here
@property (readonly, copy) NSArray<NSString *> *itemTitles;
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:33:32: warning: call to main actor-isolated instance method 'insertItem(withTitle:at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        target.insertItem(withTitle: items[$0.element], at: $0.element)
                               ^
AppKit.NSPopUpButton.insertItem:2:22: note: calls to instance method 'insertItem(withTitle:at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func insertItem(withTitle title: String, at index: Int)}
                     ^
AppKit.NSPopUpButton.insertItem:2:22: note: main actor isolation inferred from inheritance from class 'NSButton'
@MainActor open func insertItem(withTitle title: String, at index: Int)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:37:39: warning: main actor-isolated property 'itemTitles' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                        .map { target.itemTitles[$0.element] }
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButton.h:122:49: note: property declared here
@property (readonly, copy) NSArray<NSString *> *itemTitles;
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:38:43: warning: call to main actor-isolated instance method 'removeItem(withTitle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        .forEach { target.removeItem(withTitle: $0) }
                                          ^
AppKit.NSPopUpButton.removeItem:2:22: note: calls to instance method 'removeItem(withTitle:)' from outside of its actor context are implicitly asynchronous
@MainActor open func removeItem(withTitle title: String)}
                     ^
AppKit.NSPopUpButton.removeItem:2:22: note: main actor isolation inferred from inheritance from class 'NSButton'
@MainActor open func removeItem(withTitle title: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:41:32: warning: call to main actor-isolated instance method 'removeItem(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        target.removeItem(at: $0.source.element)
                               ^
AppKit.NSPopUpButton.removeItem:2:22: note: calls to instance method 'removeItem(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func removeItem(at index: Int)}
                     ^
AppKit.NSPopUpButton.removeItem:2:22: note: main actor isolation inferred from inheritance from class 'NSButton'
@MainActor open func removeItem(at index: Int)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:42:32: warning: call to main actor-isolated instance method 'insertItem(withTitle:at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        target.insertItem(withTitle: items[$0.target.element], at: $0.target.element)
                               ^
AppKit.NSPopUpButton.insertItem:2:22: note: calls to instance method 'insertItem(withTitle:at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func insertItem(withTitle title: String, at index: Int)}
                     ^
AppKit.NSPopUpButton.insertItem:2:22: note: main actor isolation inferred from inheritance from class 'NSButton'
@MainActor open func insertItem(withTitle title: String, at index: Int)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:46:32: warning: call to main actor-isolated instance method 'removeItem(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        target.removeItem(at: $0.element)
                               ^
AppKit.NSPopUpButton.removeItem:2:22: note: calls to instance method 'removeItem(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func removeItem(at index: Int)}
                     ^
AppKit.NSPopUpButton.removeItem:2:22: note: main actor isolation inferred from inheritance from class 'NSButton'
@MainActor open func removeItem(at index: Int)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopUpButton+Rx.swift:47:32: warning: call to main actor-isolated instance method 'insertItem(withTitle:at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        target.insertItem(withTitle: items[$0.element], at: $0.element)
                               ^
AppKit.NSPopUpButton.insertItem:2:22: note: calls to instance method 'insertItem(withTitle:at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func insertItem(withTitle title: String, at index: Int)}
                     ^
AppKit.NSPopUpButton.insertItem:2:22: note: main actor isolation inferred from inheritance from class 'NSButton'
@MainActor open func insertItem(withTitle title: String, at index: Int)}
                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:24:76: warning: main actor-isolated class property 'closeReasonUserInfoKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            try .init(rawValue: castOrThrow(String.self, $0.userInfo?[Base.closeReasonUserInfoKey]))
                                                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:200:32: note: class property declared here
APPKIT_EXTERN NSString * const NSPopoverCloseReasonKey API_AVAILABLE(macos(10.7));
                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSProgressIndicator+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSProgressIndicator+Rx.swift:8:20: warning: main actor-isolated property 'isIndeterminate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            target.isIndeterminate = true
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSProgressIndicator.h:26:41: note: mutation of this property is only permitted within the actor
@property (getter=isIndeterminate) BOOL indeterminate;
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSProgressIndicator+Rx.swift:9:20: warning: main actor-isolated property 'doubleValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            target.doubleValue = 0
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSProgressIndicator.h:32:18: note: mutation of this property is only permitted within the actor
@property double doubleValue;
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSProgressIndicator+Rx.swift:11:24: warning: call to main actor-isolated instance method 'startAnimation' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                target.startAnimation(nil)
                       ^
AppKit.NSProgressIndicator.startAnimation:2:22: note: calls to instance method 'startAnimation' from outside of its actor context are implicitly asynchronous
@MainActor open func startAnimation(_ sender: Any?)}
                     ^
AppKit.NSProgressIndicator.startAnimation:2:22: note: main actor isolation inferred from inheritance from class 'NSView'
@MainActor open func startAnimation(_ sender: Any?)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSProgressIndicator+Rx.swift:13:24: warning: call to main actor-isolated instance method 'stopAnimation' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                target.stopAnimation(nil)
                       ^
AppKit.NSProgressIndicator.stopAnimation:2:22: note: calls to instance method 'stopAnimation' from outside of its actor context are implicitly asynchronous
@MainActor open func stopAnimation(_ sender: Any?)}
                     ^
AppKit.NSProgressIndicator.stopAnimation:2:22: note: main actor isolation inferred from inheritance from class 'NSView'
@MainActor open func stopAnimation(_ sender: Any?)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSProgressIndicator+Rx.swift:20:20: warning: main actor-isolated property 'isIndeterminate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            target.isIndeterminate = false
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSProgressIndicator.h:26:41: note: mutation of this property is only permitted within the actor
@property (getter=isIndeterminate) BOOL indeterminate;
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSProgressIndicator+Rx.swift:21:20: warning: main actor-isolated property 'doubleValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            target.doubleValue = Double(progressValue)
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSProgressIndicator.h:32:18: note: mutation of this property is only permitted within the actor
@property double doubleValue;
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSResponder+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSavePanel+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSavePanel+Rx.swift:56:18: warning: call to main actor-isolated instance method 'begin(completionHandler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            base.begin { result in
                 ^
AppKit.NSSavePanel.begin:3:24: note: calls to instance method 'begin(completionHandler:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func begin(completionHandler handler: @escaping (NSApplication.ModalResponse) -> Void)}
                       ^
AppKit.NSSavePanel.begin:3:24: note: main actor isolation inferred from inheritance from class 'NSPanel'
  @MainActor open func begin(completionHandler handler: @escaping (NSApplication.ModalResponse) -> Void)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSavePanel+Rx.swift:72:18: warning: call to main actor-isolated instance method 'beginSheetModal(for:completionHandler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            base.beginSheetModal(for: window) { result in
                 ^
AppKit.NSSavePanel.beginSheetModal:3:24: note: calls to instance method 'beginSheetModal(for:completionHandler:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func beginSheetModal(for window: NSWindow, completionHandler handler: @escaping (NSApplication.ModalResponse) -> Void)}
                       ^
AppKit.NSSavePanel.beginSheetModal:3:24: note: main actor isolation inferred from inheritance from class 'NSPanel'
  @MainActor open func beginSheetModal(for window: NSWindow, completionHandler handler: @escaping (NSApplication.ModalResponse) -> Void)}
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSavePanel+Rx.swift:56:18: warning: sending value of non-Sendable type '(NSApplication.ModalResponse) -> Void' risks causing data races; this is an error in the Swift 6 language mode
            base.begin { result in
            ~~~~~^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSavePanel+Rx.swift:56:18: note: sending task-isolated value of non-Sendable type '(NSApplication.ModalResponse) -> Void' to main actor-isolated instance method 'begin(completionHandler:)' risks causing races in between task-isolated and main actor-isolated uses
            base.begin { result in
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSavePanel+Rx.swift:72:18: warning: sending value of non-Sendable type '(NSApplication.ModalResponse) -> Void' risks causing data races; this is an error in the Swift 6 language mode
            base.beginSheetModal(for: window) { result in
            ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSavePanel+Rx.swift:72:18: note: sending task-isolated value of non-Sendable type '(NSApplication.ModalResponse) -> Void' to main actor-isolated instance method 'beginSheetModal(for:completionHandler:)' risks causing races in between task-isolated and main actor-isolated uses
            base.beginSheetModal(for: window) { result in
                 ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift:7:135: warning: main actor-isolated property 'contentView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let source: Observable<CGPoint> = NotificationCenter.default.rx.notification(NSView.boundsDidChangeNotification, object: base.contentView).map { [weak self = base] _ in
                                                                                                                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrollView.h:49:32: note: property declared here
@property (strong) NSClipView *contentView;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift:9:37: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            return self.contentView.bounds.origin
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
@property NSRect bounds;
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift:9:25: warning: main actor-isolated property 'contentView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            return self.contentView.bounds.origin
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrollView.h:49:32: note: property declared here
@property (strong) NSClipView *contentView;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift:13:36: warning: main actor-isolated property 'bounds' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            scrollView.contentView.bounds.origin = contentOffset
                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: mutation of this property is only permitted within the actor
@property NSRect bounds;
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift:13:24: warning: main actor-isolated property 'contentView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            scrollView.contentView.bounds.origin = contentOffset
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrollView.h:49:32: note: property declared here
@property (strong) NSClipView *contentView;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift:46:87: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            guard let scrollView = base, let contentHeight = scrollView.documentView?.bounds.height else { return false }
                                                                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
@property NSRect bounds;
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift:46:73: warning: main actor-isolated property 'documentView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            guard let scrollView = base, let contentHeight = scrollView.documentView?.bounds.height else { return false }
                                                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrollView.h:48:47: note: property declared here
@property (nullable, strong) __kindof NSView *documentView;
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSScrollView+Rx.swift:47:44: warning: main actor-isolated property 'documentVisibleRect' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let visibleHeight = scrollView.documentVisibleRect.height
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrollView.h:46:29: note: property declared here
@property (readonly) NSRect documentVisibleRect;
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSearchField+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSegmentedControl+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSegmentedControl+Rx.swift:7:47: warning: cannot form key path to main actor-isolated property 'selectedSegment'; this is an error in the Swift 6 language mode
        return _controlProperty(forKeyPath: \.selectedSegment)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSegmentedControl+Rx.swift:13:30: warning: call to main actor-isolated instance method 'setEnabled(_:forSegment:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            segmentedControl.setEnabled(segmentEnabled, forSegment: index)
                             ^
AppKit.NSSegmentedControl.setEnabled:2:22: note: calls to instance method 'setEnabled(_:forSegment:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setEnabled(_ enabled: Bool, forSegment segment: Int)}
                     ^
AppKit.NSSegmentedControl.setEnabled:2:22: note: main actor isolation inferred from inheritance from class 'NSControl'
@MainActor open func setEnabled(_ enabled: Bool, forSegment segment: Int)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSegmentedControl+Rx.swift:20:30: warning: call to main actor-isolated instance method 'setLabel(_:forSegment:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            segmentedControl.setLabel(title, forSegment: index)
                             ^
AppKit.NSSegmentedControl.setLabel:2:22: note: calls to instance method 'setLabel(_:forSegment:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setLabel(_ label: String, forSegment segment: Int)}
                     ^
AppKit.NSSegmentedControl.setLabel:2:22: note: main actor isolation inferred from inheritance from class 'NSControl'
@MainActor open func setLabel(_ label: String, forSegment segment: Int)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSegmentedControl+Rx.swift:27:30: warning: call to main actor-isolated instance method 'setImage(_:forSegment:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            segmentedControl.setImage(image, forSegment: index)
                             ^
AppKit.NSSegmentedControl.setImage:2:22: note: calls to instance method 'setImage(_:forSegment:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setImage(_ image: NSImage?, forSegment segment: Int)}
                     ^
AppKit.NSSegmentedControl.setImage:2:22: note: main actor isolation inferred from inheritance from class 'NSControl'
@MainActor open func setImage(_ image: NSImage?, forSegment segment: Int)}
                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSegmentedControl+Rx.swift:27:30: warning: sending 'image' risks causing data races; this is an error in the Swift 6 language mode
            segmentedControl.setImage(image, forSegment: index)
            ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSegmentedControl+Rx.swift:27:30: note: sending task-isolated 'image' to main actor-isolated instance method 'setImage(_:forSegment:)' risks causing data races between main actor-isolated and task-isolated uses
            segmentedControl.setImage(image, forSegment: index)
                             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSharingServicePickerToolbarItem+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitView+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitViewController+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitViewController+Rx.swift:10:20: warning: call to main actor-isolated instance method 'toggleSidebar' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            target.toggleSidebar(sender)
                   ^
AppKit.NSSplitViewController.toggleSidebar:3:34: note: calls to instance method 'toggleSidebar' from outside of its actor context are implicitly asynchronous
  @IBAction @MainActor open func toggleSidebar(_ sender: Any?)}
                                 ^
AppKit.NSSplitViewController.toggleSidebar:3:34: note: main actor isolation inferred from inheritance from class 'NSViewController'
  @IBAction @MainActor open func toggleSidebar(_ sender: Any?)}
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitViewController+Rx.swift:15:20: warning: call to main actor-isolated instance method 'toggleSidebar' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            target.toggleSidebar(nil)
                   ^
AppKit.NSSplitViewController.toggleSidebar:3:34: note: calls to instance method 'toggleSidebar' from outside of its actor context are implicitly asynchronous
  @IBAction @MainActor open func toggleSidebar(_ sender: Any?)}
                                 ^
AppKit.NSSplitViewController.toggleSidebar:3:34: note: main actor isolation inferred from inheritance from class 'NSViewController'
  @IBAction @MainActor open func toggleSidebar(_ sender: Any?)}
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitViewController+Rx.swift:22:20: warning: call to main actor-isolated instance method 'toggleInspector' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            target.toggleInspector(sender)
                   ^
AppKit.NSSplitViewController.toggleInspector:3:34: note: calls to instance method 'toggleInspector' from outside of its actor context are implicitly asynchronous
  @IBAction @MainActor open func toggleInspector(_ sender: Any?)}
                                 ^
AppKit.NSSplitViewController.toggleInspector:3:34: note: main actor isolation inferred from inheritance from class 'NSViewController'
  @IBAction @MainActor open func toggleInspector(_ sender: Any?)}
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitViewController+Rx.swift:10:20: warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
            target.toggleSidebar(sender)
            ~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitViewController+Rx.swift:10:20: note: sending task-isolated value of non-Sendable type 'Any?' to main actor-isolated instance method 'toggleSidebar' risks causing races in between task-isolated and main actor-isolated uses
            target.toggleSidebar(sender)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitViewController+Rx.swift:22:20: warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
            target.toggleInspector(sender)
            ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSSplitViewController+Rx.swift:22:20: note: sending task-isolated value of non-Sendable type 'Any?' to main actor-isolated instance method 'toggleInspector' risks causing races in between task-isolated and main actor-isolated uses
            target.toggleInspector(sender)
                   ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStandardKeyBindingResponding+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h:82:59: 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, weak) IBOutlet id <NSPopoverDelegate> delegate;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSPopover+Rx.swift:5:35: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSPopover: @retroactive HasDelegate {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h:110:52: 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, weak) id<NSStackViewDelegate> delegate;
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RxAppKit/Components/NSStackView+Rx.swift:5:37: note: add '@preconcurrency' to the 'HasDelegate' conformance to defer isolation checking to run time
extension NSStackView: @retroactive HasDelegate {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift:263:9: note: requirement 'delegate' declared here
    var delegate: Delegate? { get set }
        ^
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-E1S6SIHJ54P9QGDZS7NDULESV.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-E1S6SIHJ54P9QGDZS7NDULESV.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for RxAppKit (in target 'RxAppKit' from project 'RxAppKit')
SwiftDriver\ Compilation\ Requirements RxAppKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxAppKit' from project 'RxAppKit')
    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 RxAppKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/RxCocoaRuntime.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/RxAppKitObjC.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit-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/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoaRuntime/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/RxAppKitObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.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/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling NSColorPanel+Rx.swift, NSColorWell+Rx.swift, NSComboBox+Rx.swift, NSControl+Rx.swift, NSDatePicker+Rx.swift, NSEvent+Rx.swift, NSFontManager+Rx.swift, NSGestureRecognizer+Rx.swift, NSMenu+Rx.swift, NSMenuItem+Rx.swift, NSObject+Rx.swift, NSOutlineView+Rx.swift, NSPageController+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-AC7HYCI9ICP6ZYL2DV2SBT0DV.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-AC7HYCI9ICP6ZYL2DV2SBT0DV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-60PC4AGQS3S9LB5X4TX8APNE.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-60PC4AGQS3S9LB5X4TX8APNE.scan
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/RxAppKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit-Swift.h (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/RxAppKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.swiftmodule (in target 'RxAppKit' from project 'RxAppKit')
    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/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.swiftdoc (in target 'RxAppKit' from project 'RxAppKit')
    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/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.swiftmodule/arm64-apple-macos.swiftdoc
SwiftDriverJobDiscovery normal arm64 Compiling RxNSOutlineViewDelegateProxy.swift, RxNSPageControllDelegateProxy.swift, RxNSPopoverDelegateProxy.swift, RxNSSearchFieldDelegateProxy.swift, RxNSSharingServicePickerDelegateProxy.swift, RxNSSharingServicePickerToolbarItemDelegateProxy.swift, RxNSStackViewDelegateProxy.swift, RxNSTabViewDelegateProxy.swift, RxNSTableViewDataSourceProxy.swift, RxNSTableViewDelegateProxy.swift, RxNSTextFieldDelegateProxy.swift, RxNSTextStorageDelegateProxy.swift (in target 'RxAppKit' from project 'RxAppKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.abi.json (in target 'RxAppKit' from project 'RxAppKit')
    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/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.swiftsourceinfo (in target 'RxAppKit' from project 'RxAppKit')
    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/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'RxRelay' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name RxRelay --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier rxswift.RxRelay --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxRelay.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxRelay.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxRelay.build/Objects-normal/arm64/RxRelay_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxRelay.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxRelay.build/Objects-normal/arm64/RxRelay.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxRelay.build/RxRelay.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxRelay.build/RxRelay.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxRelay.build/Objects-normal/arm64/RxRelay.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 10:45:42.823 appintentsmetadataprocessor[1173:6217] Starting appintentsmetadataprocessor export
2025-04-27 10:45:42.865 appintentsmetadataprocessor[1173:6217] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling RxAppKit.swift, RxCocoa.swift, TableViewAnimationConfiguration.swift, ViewTransition.swift, HasDoubleAction+Rx.swift, HasTargeAction+Rx.swift, HasTargetRequiredAction+Rx.swift, NSAlert+Rx.swift, NSApplication+Rx.swift, NSBrowser+Rx.swift, NSButton+Rx.swift, NSCollectionView+Rx.swift, NSCollectionViewItem+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-2KAUEY44KCPASLJOOZ6TFZY12.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-2KAUEY44KCPASLJOOZ6TFZY12.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOKit-3BN0CZCEFU3PJQ86EVFTGXLHX.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOKit-3BN0CZCEFU3PJQ86EVFTGXLHX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-DJQMG6Z2X66ZS74RMSB12Y1WK.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-DJQMG6Z2X66ZS74RMSB12Y1WK.scan
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxRelay.o (in target 'RxRelay' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxRelay.o
SwiftDriverJobDiscovery normal arm64 Compiling RxNSSharingServicePickerToolbarItemDelegateType.swift, RxNSTableViewDataSourceType.swift, RxNSToolbarDelegateType.swift, RxToolbarItemRepresentable.swift, RowsViewDataSourceType.swift, RxNSBrowserDelegateProxy.swift, RxNSCollectionViewDataSourceProxy.swift, RxNSCollectionViewDelegateProxy.swift, RxNSComboBoxDataSourceProxy.swift, RxNSMenuDelegateProxy.swift, RxNSMenuProxy.swift, RxNSOpenSavePanelDelegateProxy.swift, RxNSOutlineViewDataSourceProxy.swift (in target 'RxAppKit' from project 'RxAppKit')
SwiftDriverJobDiscovery normal arm64 Compiling AnyDifferentiable.swift, DelegateProxyType.swift, NSControl.StateValue+.swift, NSObject+Association.swift, NSToolbar+.swift, NSToolbarItem+.swift, ObjC+Constants.swift, ObjC+Messages.swift, ObjC+Runtime.swift, ObjC+RuntimeSubclassing.swift, ObjC+Selector.swift, Objc+Synchronized.swift, ObjectContainer.swift (in target 'RxAppKit' from project 'RxAppKit')
SwiftDriverJobDiscovery normal arm64 Compiling NSWindowController+Rx.swift, BrowserAdapter.swift, RxNSBrowserAdapter.swift, CollectionViewArrayDataSource.swift, CollectionViewSectionedDataSource.swift, RxNSCollectionViewArrayDataSource.swift, RxNSCollectionViewSectionedDataSource.swift, ComboBoxDataSource.swift, RxNSComboBoxDataSource.swift, OutlineViewAdapter.swift, RxNSOutlineViewAdapter.swift, PageControllerAdapter.swift, RxNSPageControllerAdapter.swift (in target 'RxAppKit' from project 'RxAppKit')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DiskArbitration-CVZA4BZ8GE1MP88N8QJFFTMSW.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DiskArbitration-CVZA4BZ8GE1MP88N8QJFFTMSW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-EUWP7AEKVPAY3D6SUYYRVKJGY.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-EUWP7AEKVPAY3D6SUYYRVKJGY.scan
SwiftDriverJobDiscovery normal arm64 Compiling NSStepper+Rx.swift, NSSwitch+Rx.swift, NSTabView+Rx.swift, NSTabViewController+Rx.swift, NSTableView+Rx.swift, NSTextField+Rx.swift, NSTextStorage+Rx.swift, NSTextView+Rx.swift, NSToolbar+Rx.swift, NSToolbarItem+Rx.swift, NSView+Rx.swift, NSViewController+Rx.swift, NSWindow+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreServices-77ZSJ6QFYM2P4AML871QYFEGW.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreServices-77ZSJ6QFYM2P4AML871QYFEGW.scan
SwiftDriverJobDiscovery normal arm64 Compiling RxNSToolbarDelegateProxy.swift, RxNSToolbarProxy.swift, ActionProxy+HasDoubleAction.swift, ActionProxy+HasTargetAction.swift, ActionProxy+HasTargetRequiredAction.swift, ActionProxy.swift, HasDoubleAction.swift, HasTargeAction.swift, HasTargetRequiredAction.swift, BaseTarget.swift, DoubleClickTarget.swift, RxTarget.swift (in target 'RxAppKit' from project 'RxAppKit')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-CE2P1I4W4U6WFP5MIOCOU4LMM.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-CE2P1I4W4U6WFP5MIOCOU4LMM.scan
SwiftDriverJobDiscovery normal arm64 Compiling NSPopUpButton+Rx.swift, NSPopover+Rx.swift, NSProgressIndicator+Rx.swift, NSResponder+Rx.swift, NSSavePanel+Rx.swift, NSScrollView+Rx.swift, NSSearchField+Rx.swift, NSSegmentedControl+Rx.swift, NSSharingServicePickerToolbarItem+Rx.swift, NSSplitView+Rx.swift, NSSplitViewController+Rx.swift, NSStackView+Rx.swift, NSStandardKeyBindingResponding+Rx.swift (in target 'RxAppKit' from project 'RxAppKit')
SwiftDriver\ Compilation RxAppKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RxAppKit' from project 'RxAppKit')
    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 RxAppKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/RxCocoaRuntime.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/RxAppKitObjC.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit-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/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoaRuntime/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/RxAppKitObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.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/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.o /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/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/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/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.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 -w -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/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.dia -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoaRuntime/_RXKVOObserver.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.o -index-unit-output-path /RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXKVOObserver.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RX.o /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/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/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/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.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 -w -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/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RX.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RX.dia -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoaRuntime/_RX.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RX.o -index-unit-output-path /RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RX.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.o /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/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/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/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.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 -w -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/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.dia -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoaRuntime/_RXDelegateProxy.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.o -index-unit-output-path /RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXDelegateProxy.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.o /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/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/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/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.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 -w -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/RxCocoaRuntime.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.dia -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift/Sources/RxCocoaRuntime/_RXObjCRuntime.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.o -index-unit-output-path /RxSwift.build/Debug/RxCocoaRuntime.build/Objects-normal/arm64/_RXObjCRuntime.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxCocoaRuntime.o normal (in target 'RxCocoaRuntime' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/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/RxCocoaRuntime.build/Objects-normal/arm64/RxCocoaRuntime_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/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/RxCocoaRuntime.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxCocoaRuntime.o (in target 'RxCocoaRuntime' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxCocoaRuntime.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxCocoa.o normal (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/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/RxCocoa.build/Objects-normal/arm64/RxCocoa_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/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/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoa.build/Objects-normal/arm64/RxCocoa.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxCocoa.o
ExtractAppIntentsMetadata (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name RxCocoa --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier rxswift.RxCocoa --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxCocoa.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxCocoa.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoa.build/Objects-normal/arm64/RxCocoa_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoa.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoa.build/Objects-normal/arm64/RxCocoa.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoa.build/RxCocoa.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoa.build/RxCocoa.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxSwift.build/Debug/RxCocoa.build/Objects-normal/arm64/RxCocoa.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 10:45:43.788 appintentsmetadataprocessor[1189:6306] Starting appintentsmetadataprocessor export
2025-04-27 10:45:43.824 appintentsmetadataprocessor[1189:6306] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxCocoa.o (in target 'RxCocoa' from project 'RxSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RxSwift
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxCocoa.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.o normal (in target 'RxAppKit' from project 'RxAppKit')
    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-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.o
ExtractAppIntentsMetadata (in target 'RxAppKit' from project 'RxAppKit')
    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 RxAppKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.RxAppKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/RxAppKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/RxAppKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RxAppKit.build/Debug/RxAppKit.build/Objects-normal/arm64/RxAppKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 10:45:43.908 appintentsmetadataprocessor[1192:6321] Starting appintentsmetadataprocessor export
2025-04-27 10:45:43.942 appintentsmetadataprocessor[1192:6321] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.o (in target 'RxAppKit' from project 'RxAppKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RxAppKit.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:25db2f9f3c00b5bd8fa9631a3d741414cdc06b4c, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:25db2f9f3c00b5bd8fa9631a3d741414cdc06b4c, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:25db2f9f3c00b5bd8fa9631a3d741414cdc06b4c, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:25db2f9f3c00b5bd8fa9631a3d741414cdc06b4c, name:My Mac }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "rxswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.6.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ReactiveX/RxSwift"
    },
    {
      "identity" : "differencekit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ra1028/DifferenceKit"
    }
  ],
  "manifest_display_name" : "RxAppKit",
  "name" : "RxAppKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    }
  ],
  "products" : [
    {
      "name" : "RxAppKit",
      "targets" : [
        "RxAppKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RxAppKitTests",
      "module_type" : "SwiftTarget",
      "name" : "RxAppKitTests",
      "path" : "Tests/RxAppKitTests",
      "sources" : [
        "RxAppKitTests.swift"
      ],
      "target_dependencies" : [
        "RxAppKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RxAppKitObjC",
      "module_type" : "ClangTarget",
      "name" : "RxAppKitObjC",
      "path" : "Sources/RxAppKitObjC",
      "product_memberships" : [
        "RxAppKit"
      ],
      "sources" : [
        "ObjCRuntimeAliases.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxAppKit",
      "module_type" : "SwiftTarget",
      "name" : "RxAppKit",
      "path" : "Sources/RxAppKit",
      "product_dependencies" : [
        "RxSwift",
        "RxCocoa",
        "DifferenceKit"
      ],
      "product_memberships" : [
        "RxAppKit"
      ],
      "sources" : [
        "Common/AnyDifferentiable.swift",
        "Common/DelegateProxyType.swift",
        "Common/NSControl.StateValue+.swift",
        "Common/NSObject+Association.swift",
        "Common/NSToolbar+.swift",
        "Common/NSToolbarItem+.swift",
        "Common/ObjC+Constants.swift",
        "Common/ObjC+Messages.swift",
        "Common/ObjC+Runtime.swift",
        "Common/ObjC+RuntimeSubclassing.swift",
        "Common/ObjC+Selector.swift",
        "Common/Objc+Synchronized.swift",
        "Common/ObjectContainer.swift",
        "Common/RxAppKit.swift",
        "Common/RxCocoa.swift",
        "Common/TableViewAnimationConfiguration.swift",
        "Common/ViewTransition.swift",
        "Components/HasDoubleAction+Rx.swift",
        "Components/HasTargeAction+Rx.swift",
        "Components/HasTargetRequiredAction+Rx.swift",
        "Components/NSAlert+Rx.swift",
        "Components/NSApplication+Rx.swift",
        "Components/NSBrowser+Rx.swift",
        "Components/NSButton+Rx.swift",
        "Components/NSCollectionView+Rx.swift",
        "Components/NSCollectionViewItem+Rx.swift",
        "Components/NSColorPanel+Rx.swift",
        "Components/NSColorWell+Rx.swift",
        "Components/NSComboBox+Rx.swift",
        "Components/NSControl+Rx.swift",
        "Components/NSDatePicker+Rx.swift",
        "Components/NSEvent+Rx.swift",
        "Components/NSFontManager+Rx.swift",
        "Components/NSGestureRecognizer+Rx.swift",
        "Components/NSMenu+Rx.swift",
        "Components/NSMenuItem+Rx.swift",
        "Components/NSObject+Rx.swift",
        "Components/NSOutlineView+Rx.swift",
        "Components/NSPageController+Rx.swift",
        "Components/NSPopUpButton+Rx.swift",
        "Components/NSPopover+Rx.swift",
        "Components/NSProgressIndicator+Rx.swift",
        "Components/NSResponder+Rx.swift",
        "Components/NSSavePanel+Rx.swift",
        "Components/NSScrollView+Rx.swift",
        "Components/NSSearchField+Rx.swift",
        "Components/NSSegmentedControl+Rx.swift",
        "Components/NSSharingServicePickerToolbarItem+Rx.swift",
        "Components/NSSplitView+Rx.swift",
        "Components/NSSplitViewController+Rx.swift",
        "Components/NSStackView+Rx.swift",
        "Components/NSStandardKeyBindingResponding+Rx.swift",
        "Components/NSStepper+Rx.swift",
        "Components/NSSwitch+Rx.swift",
        "Components/NSTabView+Rx.swift",
        "Components/NSTabViewController+Rx.swift",
        "Components/NSTableView+Rx.swift",
        "Components/NSTextField+Rx.swift",
        "Components/NSTextStorage+Rx.swift",
        "Components/NSTextView+Rx.swift",
        "Components/NSToolbar+Rx.swift",
        "Components/NSToolbarItem+Rx.swift",
        "Components/NSView+Rx.swift",
        "Components/NSViewController+Rx.swift",
        "Components/NSWindow+Rx.swift",
        "Components/NSWindowController+Rx.swift",
        "DataSources & Adapters/Browser/BrowserAdapter.swift",
        "DataSources & Adapters/Browser/RxNSBrowserAdapter.swift",
        "DataSources & Adapters/CollectionView/CollectionViewArrayDataSource.swift",
        "DataSources & Adapters/CollectionView/CollectionViewSectionedDataSource.swift",
        "DataSources & Adapters/CollectionView/RxNSCollectionViewArrayDataSource.swift",
        "DataSources & Adapters/CollectionView/RxNSCollectionViewSectionedDataSource.swift",
        "DataSources & Adapters/ComboBox/ComboBoxDataSource.swift",
        "DataSources & Adapters/ComboBox/RxNSComboBoxDataSource.swift",
        "DataSources & Adapters/OutlineView/OutlineViewAdapter.swift",
        "DataSources & Adapters/OutlineView/RxNSOutlineViewAdapter.swift",
        "DataSources & Adapters/PageController/PageControllerAdapter.swift",
        "DataSources & Adapters/PageController/RxNSPageControllerAdapter.swift",
        "DataSources & Adapters/SharingServicePickerToolbarItem/RxNSSharingServicePickerToolbarItemAdapter.swift",
        "DataSources & Adapters/SharingServicePickerToolbarItem/SharingServicePickerToolbarItemAdapter.swift",
        "DataSources & Adapters/TableView/RxNSTableViewArrayAdapter.swift",
        "DataSources & Adapters/TableView/RxNSTableViewArrayAnimatedAdapter.swift",
        "DataSources & Adapters/TableView/TableViewArrayAdapter.swift",
        "DataSources & Adapters/Toolbar/RxNSToolbarAdapter.swift",
        "DataSources & Adapters/Toolbar/ToolbarAdapter.swift",
        "Protocols/RequiredMethodDelegateProxyType.swift",
        "Protocols/RxNSBrowserDelegateType.swift",
        "Protocols/RxNSCollectionViewDataSourceType.swift",
        "Protocols/RxNSComboBoxDataSourceType.swift",
        "Protocols/RxNSOutlineViewDataSourceType.swift",
        "Protocols/RxNSPageControllDelegateType.swift",
        "Protocols/RxNSSharingServicePickerToolbarItemDelegateType.swift",
        "Protocols/RxNSTableViewDataSourceType.swift",
        "Protocols/RxNSToolbarDelegateType.swift",
        "Protocols/RxToolbarItemRepresentable.swift",
        "Proxies/RowsViewDataSourceType.swift",
        "Proxies/RxNSBrowserDelegateProxy.swift",
        "Proxies/RxNSCollectionViewDataSourceProxy.swift",
        "Proxies/RxNSCollectionViewDelegateProxy.swift",
        "Proxies/RxNSComboBoxDataSourceProxy.swift",
        "Proxies/RxNSMenuDelegateProxy.swift",
        "Proxies/RxNSMenuProxy.swift",
        "Proxies/RxNSOpenSavePanelDelegateProxy.swift",
        "Proxies/RxNSOutlineViewDataSourceProxy.swift",
        "Proxies/RxNSOutlineViewDelegateProxy.swift",
        "Proxies/RxNSPageControllDelegateProxy.swift",
        "Proxies/RxNSPopoverDelegateProxy.swift",
        "Proxies/RxNSSearchFieldDelegateProxy.swift",
        "Proxies/RxNSSharingServicePickerDelegateProxy.swift",
        "Proxies/RxNSSharingServicePickerToolbarItemDelegateProxy.swift",
        "Proxies/RxNSStackViewDelegateProxy.swift",
        "Proxies/RxNSTabViewDelegateProxy.swift",
        "Proxies/RxNSTableViewDataSourceProxy.swift",
        "Proxies/RxNSTableViewDelegateProxy.swift",
        "Proxies/RxNSTextFieldDelegateProxy.swift",
        "Proxies/RxNSTextStorageDelegateProxy.swift",
        "Proxies/RxNSToolbarDelegateProxy.swift",
        "Proxies/RxNSToolbarProxy.swift",
        "Target-Action/ActionProxy/ActionProxy+HasDoubleAction.swift",
        "Target-Action/ActionProxy/ActionProxy+HasTargetAction.swift",
        "Target-Action/ActionProxy/ActionProxy+HasTargetRequiredAction.swift",
        "Target-Action/ActionProxy/ActionProxy.swift",
        "Target-Action/Protocols/HasDoubleAction.swift",
        "Target-Action/Protocols/HasTargeAction.swift",
        "Target-Action/Protocols/HasTargetRequiredAction.swift",
        "Target-Action/Target/BaseTarget.swift",
        "Target-Action/Target/DoubleClickTarget.swift",
        "Target-Action/Target/RxTarget.swift"
      ],
      "target_dependencies" : [
        "RxAppKitObjC"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.