The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of RxSwift, reference main (715752), with Swift 6.1 for Linux on 18 Jun 2025 21:12:12 UTC.

Swift 6 data race errors: 25

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

/host/spi-builder-workspace/Sources/RxSwift/SingleAssignmentDisposable.swift:14:20: note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
12 | If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an exception.
13 | */
14 | public final class SingleAssignmentDisposable : DisposeBase, Cancelable {
   |                    `- note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
15 |
16 |     private struct DisposeState: OptionSet {
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:44:34: warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
42 |
43 |
44 |             cancel.setDisposable(action(state))
   |                                  |- warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
   |                                  `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
45 |         }
46 |
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:44:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
33 |     - returns: The disposable object used to cancel the scheduled action (best effort).
34 |     */
35 |     public func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                          `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
36 |         let cancel = SingleAssignmentDisposable()
37 |
   :
42 |
43 |
44 |             cancel.setDisposable(action(state))
   |                                         `- warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
45 |         }
46 |
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:32:49: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
30 |             var isFinished = false
31 |             let disposable = asObservable().subscribe(
32 |                 onNext: { value in continuation.yield(value) },
   |                                                 |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                                 `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 |                 onError: { error in
34 |                     isFinished = true
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:63:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
61 |     func asObservable() -> Observable<Element> {
62 |         Observable.create { observer in
63 |             let task = Task {
   |                             `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
64 |                 do {
65 |                     for try await value in self {
   |                                            `- note: closure captures non-Sendable 'self'
66 |                         observer.onNext(value)
   |                         `- note: closure captures non-Sendable 'observer'
67 |                     }
68 |
[152/188] Compiling RxSwift PrimitiveSequence.swift
/host/spi-builder-workspace/Sources/RxSwift/NopDisposable.swift:14:28: warning: static property 'noOp' is not concurrency-safe because non-'Sendable' type 'any Disposable' may have shared mutable state; this is an error in the Swift 6 language mode
12 | private struct NopDisposable : Disposable {
13 |
14 |     fileprivate static let noOp: Disposable = NopDisposable()
   |                            |- warning: static property 'noOp' is not concurrency-safe because non-'Sendable' type 'any Disposable' may have shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: add '@MainActor' to make static property 'noOp' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     private init() {
/host/spi-builder-workspace/Sources/RxSwift/Disposable.swift:10:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
 8 |
 9 | /// Represents a disposable resource.
10 | public protocol Disposable {
   |                 `- note: protocol 'Disposable' does not conform to the 'Sendable' protocol
11 |     /// Dispose resource.
12 |     func dispose()
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:48:21: warning: capture of 'disposable' with non-sendable type 'any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
46 |             continuation.onTermination = { @Sendable termination in
47 |                 if case .cancelled = termination {
48 |                     disposable.dispose()
   |                     `- warning: capture of 'disposable' with non-sendable type 'any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
49 |                 }
50 |             }
/host/spi-builder-workspace/Sources/RxSwift/Disposable.swift:10:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
 8 |
 9 | /// Represents a disposable resource.
10 | public protocol Disposable {
   |                 `- note: protocol 'Disposable' does not conform to the 'Sendable' protocol
11 |     /// Dispose resource.
12 |     func dispose()
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:137:24: warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 |
136 |     private static let lock = RecursiveLock()
137 |     private static var _defaultErrorHandler: DefaultErrorHandler = { subscriptionCallStack, error in
    |                        |- warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_defaultErrorHandler' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_defaultErrorHandler' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 |         #if DEBUG
139 |             let serializedCallStack = subscriptionCallStack.joined(separator: "\n")
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:146:24: warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
144 |         #endif
145 |     }
146 |     private static var _customCaptureSubscriptionCallstack: CustomCaptureSubscriptionCallstack = {
    |                        |- warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_customCaptureSubscriptionCallstack' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_customCaptureSubscriptionCallstack' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |         #if DEBUG
148 |             return Thread.callStackSymbols
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:39:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
37 |
38 |         let operation = BlockOperation {
39 |             if cancel.isDisposed {
   |                `- warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
40 |                 return
41 |             }
/host/spi-builder-workspace/Sources/RxSwift/SingleAssignmentDisposable.swift:14:20: note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
12 | If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an exception.
13 | */
14 | public final class SingleAssignmentDisposable : DisposeBase, Cancelable {
   |                    `- note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
15 |
16 |     private struct DisposeState: OptionSet {
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:44:34: warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
42 |
43 |
44 |             cancel.setDisposable(action(state))
   |                                  |- warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
   |                                  `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
45 |         }
46 |
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:44:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
33 |     - returns: The disposable object used to cancel the scheduled action (best effort).
34 |     */
35 |     public func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                          `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
36 |         let cancel = SingleAssignmentDisposable()
37 |
   :
42 |
43 |
44 |             cancel.setDisposable(action(state))
   |                                         `- warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
45 |         }
46 |
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:32:49: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
30 |             var isFinished = false
31 |             let disposable = asObservable().subscribe(
32 |                 onNext: { value in continuation.yield(value) },
   |                                                 |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                                 `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 |                 onError: { error in
34 |                     isFinished = true
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:63:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
61 |     func asObservable() -> Observable<Element> {
62 |         Observable.create { observer in
63 |             let task = Task {
   |                             `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
64 |                 do {
65 |                     for try await value in self {
   |                                            `- note: closure captures non-Sendable 'self'
66 |                         observer.onNext(value)
   |                         `- note: closure captures non-Sendable 'observer'
67 |                     }
68 |
[153/188] Compiling RxSwift PriorityQueue.swift
/host/spi-builder-workspace/Sources/RxSwift/NopDisposable.swift:14:28: warning: static property 'noOp' is not concurrency-safe because non-'Sendable' type 'any Disposable' may have shared mutable state; this is an error in the Swift 6 language mode
12 | private struct NopDisposable : Disposable {
13 |
14 |     fileprivate static let noOp: Disposable = NopDisposable()
   |                            |- warning: static property 'noOp' is not concurrency-safe because non-'Sendable' type 'any Disposable' may have shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: add '@MainActor' to make static property 'noOp' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     private init() {
/host/spi-builder-workspace/Sources/RxSwift/Disposable.swift:10:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
 8 |
 9 | /// Represents a disposable resource.
10 | public protocol Disposable {
   |                 `- note: protocol 'Disposable' does not conform to the 'Sendable' protocol
11 |     /// Dispose resource.
12 |     func dispose()
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:48:21: warning: capture of 'disposable' with non-sendable type 'any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
46 |             continuation.onTermination = { @Sendable termination in
47 |                 if case .cancelled = termination {
48 |                     disposable.dispose()
   |                     `- warning: capture of 'disposable' with non-sendable type 'any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
49 |                 }
50 |             }
/host/spi-builder-workspace/Sources/RxSwift/Disposable.swift:10:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
 8 |
 9 | /// Represents a disposable resource.
10 | public protocol Disposable {
   |                 `- note: protocol 'Disposable' does not conform to the 'Sendable' protocol
11 |     /// Dispose resource.
12 |     func dispose()
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:137:24: warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 |
136 |     private static let lock = RecursiveLock()
137 |     private static var _defaultErrorHandler: DefaultErrorHandler = { subscriptionCallStack, error in
    |                        |- warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_defaultErrorHandler' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_defaultErrorHandler' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 |         #if DEBUG
139 |             let serializedCallStack = subscriptionCallStack.joined(separator: "\n")
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:146:24: warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
144 |         #endif
145 |     }
146 |     private static var _customCaptureSubscriptionCallstack: CustomCaptureSubscriptionCallstack = {
    |                        |- warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_customCaptureSubscriptionCallstack' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_customCaptureSubscriptionCallstack' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |         #if DEBUG
148 |             return Thread.callStackSymbols
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:39:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
37 |
38 |         let operation = BlockOperation {
39 |             if cancel.isDisposed {
   |                `- warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
40 |                 return
41 |             }
/host/spi-builder-workspace/Sources/RxSwift/SingleAssignmentDisposable.swift:14:20: note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
12 | If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an exception.
13 | */
14 | public final class SingleAssignmentDisposable : DisposeBase, Cancelable {
   |                    `- note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
15 |
16 |     private struct DisposeState: OptionSet {
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:44:34: warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
42 |
43 |
44 |             cancel.setDisposable(action(state))
   |                                  |- warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
   |                                  `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
45 |         }
46 |
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:44:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
33 |     - returns: The disposable object used to cancel the scheduled action (best effort).
34 |     */
35 |     public func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                          `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
36 |         let cancel = SingleAssignmentDisposable()
37 |
   :
42 |
43 |
44 |             cancel.setDisposable(action(state))
   |                                         `- warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
45 |         }
46 |
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:32:49: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
30 |             var isFinished = false
31 |             let disposable = asObservable().subscribe(
32 |                 onNext: { value in continuation.yield(value) },
   |                                                 |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                                 `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 |                 onError: { error in
34 |                     isFinished = true
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:63:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
61 |     func asObservable() -> Observable<Element> {
62 |         Observable.create { observer in
63 |             let task = Task {
   |                             `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
64 |                 do {
65 |                     for try await value in self {
   |                                            `- note: closure captures non-Sendable 'self'
66 |                         observer.onNext(value)
   |                         `- note: closure captures non-Sendable 'observer'
67 |                     }
68 |
[154/188] Compiling RxSwift SynchronizedOnType.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[155/188] Compiling RxSwift SynchronizedUnsubscribeType.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[156/188] Compiling RxSwift TailRecursiveSink.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[157/188] Compiling RxSwift Take.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[158/188] Compiling RxSwift TakeLast.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[159/188] Compiling RxSwift TakeWithPredicate.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[160/188] Compiling RxSwift Throttle.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[161/188] Compiling RxSwift Timeout.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[162/188] Compiling RxSwift Timer.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[163/188] Compiling RxSwift ToArray.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[164/188] Compiling RxSwift Using.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[165/188] Compiling RxSwift VirtualTimeConverterType.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[166/188] Compiling RxSwift VirtualTimeScheduler.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[167/188] Compiling RxSwift Window.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[168/188] Compiling RxSwift WithLatestFrom.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[169/188] Compiling RxSwift WithUnretained.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[170/188] Compiling RxSwift Zip+Collection.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[171/188] Compiling RxSwift Zip+arity.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[172/188] Compiling RxSwift Zip.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[173/188] Compiling RxSwift resource_bundle_accessor.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[174/189] Wrapping AST for RxSwift for debugging
[175/189] Write Objects.LinkFileList
[177/219] Compiling RxBlocking Resources.swift
[178/220] Compiling RxRelay ReplayRelay.swift
[179/220] Compiling RxBlocking RecursiveLock.swift
[180/220] Compiling RxRelay Utils.swift
[181/220] Compiling RxRelay resource_bundle_accessor.swift
[182/220] Compiling RxBlocking BlockingObservable.swift
[183/220] Compiling RxBlocking Platform.Darwin.swift
[184/220] Compiling RxBlocking Platform.Linux.swift
[185/220] Compiling RxBlocking ObservableConvertibleType+Blocking.swift
[186/220] Emitting module RxBlocking
/host/spi-builder-workspace/Sources/RxBlocking/RunLoopLock.swift:16:9: warning: let 'runLoopModeRaw' is not concurrency-safe because non-'Sendable' type 'CFString' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     import Foundation
15 |     let runLoopMode: RunLoop.Mode = .default
16 |     let runLoopModeRaw: CFString = unsafeBitCast(runLoopMode.rawValue._bridgeToObjectiveC(), to: CFString.self)
   |         `- warning: let 'runLoopModeRaw' is not concurrency-safe because non-'Sendable' type 'CFString' may have shared mutable state; this is an error in the Swift 6 language mode
17 | #else
18 |     let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/host/spi-builder-workspace/Sources/RxBlocking/RunLoopLock.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 7 | //
 8 |
 9 | import CoreFoundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
10 | import Foundation
11 | import RxSwift
   :
14 |     import Foundation
15 |     let runLoopMode: RunLoop.Mode = .default
16 |     let runLoopModeRaw: CFString = unsafeBitCast(runLoopMode.rawValue._bridgeToObjectiveC(), to: CFString.self)
   |         |- note: add '@MainActor' to make let 'runLoopModeRaw' part of global actor 'MainActor'
   |         `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | #else
18 |     let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
[187/220] Compiling RxTest Any+Equatable.swift
[188/220] Compiling RxTest Bag.swift
[189/220] Compiling RxTest TestableObserver.swift
[190/220] Compiling RxRelay PublishRelay.swift
[191/221] Emitting module RxRelay
[192/221] Compiling RxRelay Observable+Bind.swift
[193/221] Compiling RxRelay BehaviorRelay.swift
[194/222] Compiling RxTest HotObservable.swift
[195/222] Compiling RxTest Recorded+Event.swift
[196/222] Compiling RxBlocking RunLoopLock.swift
/host/spi-builder-workspace/Sources/RxBlocking/RunLoopLock.swift:16:9: warning: let 'runLoopModeRaw' is not concurrency-safe because non-'Sendable' type 'CFString' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     import Foundation
15 |     let runLoopMode: RunLoop.Mode = .default
16 |     let runLoopModeRaw: CFString = unsafeBitCast(runLoopMode.rawValue._bridgeToObjectiveC(), to: CFString.self)
   |         `- warning: let 'runLoopModeRaw' is not concurrency-safe because non-'Sendable' type 'CFString' may have shared mutable state; this is an error in the Swift 6 language mode
17 | #else
18 |     let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/host/spi-builder-workspace/Sources/RxBlocking/RunLoopLock.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 7 | //
 8 |
 9 | import CoreFoundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
10 | import Foundation
11 | import RxSwift
   :
14 |     import Foundation
15 |     let runLoopMode: RunLoop.Mode = .default
16 |     let runLoopModeRaw: CFString = unsafeBitCast(runLoopMode.rawValue._bridgeToObjectiveC(), to: CFString.self)
   |         |- note: add '@MainActor' to make let 'runLoopModeRaw' part of global actor 'MainActor'
   |         `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | #else
18 |     let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
[197/223] Compiling RxTest TestSchedulerVirtualTimeConverter.swift
[198/223] Compiling RxTest TestableObservable.swift
[199/223] Compiling RxTest Recorded.swift
[200/223] Compiling RxTest RxTest.swift
[201/223] Compiling RxTest Subscription.swift
[202/223] Compiling RxTest TestScheduler.swift
[204/223] Compiling RxTest ColdObservable.swift
[205/223] Compiling RxTest Event+Equatable.swift
[207/223] Emitting module RxTest
[209/223] Wrapping AST for RxRelay for debugging
[210/223] Write Objects.LinkFileList
[211/223] Linking libRxSwift-Dynamic.so
[212/223] Wrapping AST for RxBlocking for debugging
[213/223] Write Objects.LinkFileList
[215/308] Compiling RxTest XCTest+Rx.swift
[217/309] Emitting module RxCocoa
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
[218/320] Compiling RxCocoa RxSearchControllerDelegateProxy.swift
[219/320] Compiling RxCocoa RxTabBarControllerDelegateProxy.swift
[220/320] Compiling RxCocoa RxTabBarDelegateProxy.swift
[221/320] Compiling RxCocoa RxTableViewDataSourcePrefetchingProxy.swift
[222/320] Compiling RxCocoa RxTableViewDataSourceProxy.swift
[223/320] Compiling RxCocoa RxTableViewDataSourceType.swift
[224/320] Compiling RxCocoa RxTableViewDelegateProxy.swift
[225/320] Compiling RxCocoa RxTableViewReactiveArrayDataSource.swift
[226/320] Compiling RxCocoa RxTarget.swift
[227/320] Compiling RxCocoa RxTextStorageDelegateProxy.swift
[228/320] Compiling RxCocoa RxTextViewDelegateProxy.swift
[229/320] Compiling RxCocoa RxWKNavigationDelegateProxy.swift
[230/320] Compiling RxCocoa UIButton+Rx.swift
[231/320] Compiling RxCocoa UICollectionView+Rx.swift
[232/320] Compiling RxCocoa UIControl+Rx.swift
[233/320] Compiling RxCocoa UIDatePicker+Rx.swift
[234/320] Compiling RxCocoa UIGestureRecognizer+Rx.swift
[235/320] Compiling RxCocoa UINavigationController+Rx.swift
[236/320] Compiling RxCocoa UIPickerView+Rx.swift
[237/320] Compiling RxCocoa UIRefreshControl+Rx.swift
[238/320] Compiling RxCocoa UIScrollView+Rx.swift
[239/320] Compiling RxCocoa UISearchBar+Rx.swift
[240/320] Compiling RxCocoa UISearchController+Rx.swift
[241/320] Compiling RxCocoa UISegmentedControl+Rx.swift
[241/320] Linking libRxRelay-Dynamic.so
[243/320] Compiling RxCocoa NSTextField+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[244/320] Compiling RxCocoa NSTextStorage+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[245/320] Compiling RxCocoa NSTextView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[246/320] Compiling RxCocoa NSView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[247/320] Compiling RxCocoa NotificationCenter+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[248/320] Compiling RxCocoa Observable+Bind.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[249/320] Compiling RxCocoa ObservableConvertibleType+Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[250/320] Compiling RxCocoa ObservableConvertibleType+SharedSequence.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[251/320] Compiling RxCocoa ObservableConvertibleType+Signal.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[252/320] Compiling RxCocoa PublishRelay+Signal.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[253/320] Compiling RxCocoa RxCocoa.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[254/320] Compiling RxCocoa RxCocoaObjCRuntimeError+Extensions.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[255/320] Compiling RxCocoa BehaviorRelay+Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[256/320] Compiling RxCocoa ControlEvent+Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[257/320] Compiling RxCocoa ControlEvent+Signal.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[258/320] Compiling RxCocoa ControlEvent.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[259/320] Compiling RxCocoa ControlProperty+Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[260/320] Compiling RxCocoa ControlProperty.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[261/320] Compiling RxCocoa ControlTarget.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[262/320] Compiling RxCocoa DelegateProxy.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[263/320] Compiling RxCocoa DelegateProxyType.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[264/320] Compiling RxCocoa DispatchQueue+Extensions.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[265/320] Compiling RxCocoa Driver+Subscription.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[266/320] Compiling RxCocoa Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[266/320] Linking libRxBlocking-Dynamic.so
[267/320] Wrapping AST for RxTest for debugging
[268/320] Write Objects.LinkFileList
[270/320] Compiling RxCocoa UISlider+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[271/320] Compiling RxCocoa UIStepper+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[272/320] Compiling RxCocoa UISwitch+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[273/320] Compiling RxCocoa UITabBar+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[274/320] Compiling RxCocoa UITabBarController+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[275/320] Compiling RxCocoa UITableView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[276/320] Compiling RxCocoa UITextField+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[277/320] Compiling RxCocoa UITextView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[278/320] Compiling RxCocoa URLSession+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[279/320] Compiling RxCocoa WKWebView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[280/320] Compiling RxCocoa resource_bundle_accessor.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[280/320] Linking libRxTest-Dynamic.so
[282/320] Compiling RxCocoa RxCollectionViewDataSourcePrefetchingProxy.swift
[283/320] Compiling RxCocoa RxCollectionViewDataSourceProxy.swift
[284/320] Compiling RxCocoa RxCollectionViewDataSourceType.swift
[285/320] Compiling RxCocoa RxCollectionViewDelegateProxy.swift
[286/320] Compiling RxCocoa RxCollectionViewReactiveArrayDataSource.swift
[287/320] Compiling RxCocoa RxNavigationControllerDelegateProxy.swift
[288/320] Compiling RxCocoa RxPickerViewAdapter.swift
[289/320] Compiling RxCocoa RxPickerViewDataSourceProxy.swift
[290/320] Compiling RxCocoa RxPickerViewDataSourceType.swift
[291/320] Compiling RxCocoa RxPickerViewDelegateProxy.swift
[292/320] Compiling RxCocoa RxScrollViewDelegateProxy.swift
[293/320] Compiling RxCocoa RxSearchBarDelegateProxy.swift
[294/320] Compiling RxCocoa Infallible+Bind.swift
[295/320] Compiling RxCocoa Infallible+Driver.swift
[296/320] Compiling RxCocoa ItemEvents.swift
[297/320] Compiling RxCocoa KVORepresentable+CoreGraphics.swift
[298/320] Compiling RxCocoa KVORepresentable+Swift.swift
[299/320] Compiling RxCocoa KVORepresentable.swift
[300/320] Compiling RxCocoa NSButton+Rx.swift
[301/320] Compiling RxCocoa NSControl+Rx.swift
[302/320] Compiling RxCocoa NSObject+Rx+KVORepresentable.swift
[303/320] Compiling RxCocoa NSObject+Rx+RawRepresentable.swift
[304/320] Compiling RxCocoa NSObject+Rx.swift
[305/320] Compiling RxCocoa NSSlider+Rx.swift
[306/320] Compiling RxCocoa SchedulerType+SharedSequence.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[307/320] Compiling RxCocoa SectionedViewDataSourceType.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[308/320] Compiling RxCocoa SharedSequence+Concurrency.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[309/320] Compiling RxCocoa SharedSequence+Operators+arity.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[310/320] Compiling RxCocoa SharedSequence+Operators.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[311/320] Compiling RxCocoa SharedSequence.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[312/320] Compiling RxCocoa Signal+Subscription.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[313/320] Compiling RxCocoa Signal.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[314/320] Compiling RxCocoa TextInput.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[315/320] Compiling RxCocoa UIActivityIndicatorView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[316/320] Compiling RxCocoa UIApplication+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[317/320] Compiling RxCocoa UIBarButtonItem+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[318/321] Wrapping AST for RxCocoa for debugging
[319/321] Write Objects.LinkFileList
[320/321] Linking libRxCocoa-Dynamic.so
Build complete! (14.99s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "RxSwift",
  "name" : "RxSwift",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "RxSwift",
      "targets" : [
        "RxSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxCocoa",
      "targets" : [
        "RxCocoa"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxRelay",
      "targets" : [
        "RxRelay"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxBlocking",
      "targets" : [
        "RxBlocking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxTest",
      "targets" : [
        "RxTest"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxSwift-Dynamic",
      "targets" : [
        "RxSwift"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxCocoa-Dynamic",
      "targets" : [
        "RxCocoa"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxRelay-Dynamic",
      "targets" : [
        "RxRelay"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxBlocking-Dynamic",
      "targets" : [
        "RxBlocking"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxTest-Dynamic",
      "targets" : [
        "RxTest"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "RxTest",
      "module_type" : "SwiftTarget",
      "name" : "RxTest",
      "path" : "Sources/RxTest",
      "product_memberships" : [
        "RxTest",
        "RxTest-Dynamic"
      ],
      "sources" : [
        "Any+Equatable.swift",
        "Bag.swift",
        "ColdObservable.swift",
        "Event+Equatable.swift",
        "HotObservable.swift",
        "Recorded+Event.swift",
        "Recorded.swift",
        "RxTest.swift",
        "Subscription.swift",
        "TestScheduler.swift",
        "TestSchedulerVirtualTimeConverter.swift",
        "TestableObservable.swift",
        "TestableObserver.swift",
        "XCTest+Rx.swift"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxSwift",
      "module_type" : "SwiftTarget",
      "name" : "RxSwift",
      "path" : "Sources/RxSwift",
      "product_memberships" : [
        "RxSwift",
        "RxCocoa",
        "RxRelay",
        "RxBlocking",
        "RxTest",
        "RxSwift-Dynamic",
        "RxCocoa-Dynamic",
        "RxRelay-Dynamic",
        "RxBlocking-Dynamic",
        "RxTest-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/RxSwift/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AddRef.swift",
        "Amb.swift",
        "AnonymousDisposable.swift",
        "AnonymousObserver.swift",
        "AnyObserver.swift",
        "AsMaybe.swift",
        "AsSingle.swift",
        "AsyncLock.swift",
        "AsyncSubject.swift",
        "AtomicInt.swift",
        "Bag+Rx.swift",
        "Bag.swift",
        "BehaviorSubject.swift",
        "BinaryDisposable.swift",
        "Binder.swift",
        "BooleanDisposable.swift",
        "Buffer.swift",
        "Cancelable.swift",
        "Catch.swift",
        "CombineLatest+Collection.swift",
        "CombineLatest+arity.swift",
        "CombineLatest.swift",
        "CompactMap.swift",
        "Completable+AndThen.swift",
        "Completable.swift",
        "CompositeDisposable.swift",
        "Concat.swift",
        "ConcurrentDispatchQueueScheduler.swift",
        "ConcurrentMainScheduler.swift",
        "ConnectableObservableType.swift",
        "Create.swift",
        "CurrentThreadScheduler.swift",
        "Date+Dispatch.swift",
        "Debounce.swift",
        "Debug.swift",
        "Decode.swift",
        "DefaultIfEmpty.swift",
        "Deferred.swift",
        "Delay.swift",
        "DelaySubscription.swift",
        "Dematerialize.swift",
        "DispatchQueue+Extensions.swift",
        "DispatchQueueConfiguration.swift",
        "Disposable.swift",
        "Disposables.swift",
        "DisposeBag.swift",
        "DisposeBase.swift",
        "DistinctUntilChanged.swift",
        "Do.swift",
        "ElementAt.swift",
        "Empty.swift",
        "Enumerated.swift",
        "Error.swift",
        "Errors.swift",
        "Event.swift",
        "Filter.swift",
        "First.swift",
        "Generate.swift",
        "GroupBy.swift",
        "GroupedObservable.swift",
        "HistoricalScheduler.swift",
        "HistoricalSchedulerTimeConverter.swift",
        "ImmediateSchedulerType.swift",
        "Infallible+CombineLatest+Collection.swift",
        "Infallible+CombineLatest+arity.swift",
        "Infallible+Concurrency.swift",
        "Infallible+Create.swift",
        "Infallible+Debug.swift",
        "Infallible+Operators.swift",
        "Infallible+Zip+arity.swift",
        "Infallible.swift",
        "InfiniteSequence.swift",
        "InvocableScheduledItem.swift",
        "InvocableType.swift",
        "Just.swift",
        "Lock.swift",
        "LockOwnerType.swift",
        "MainScheduler.swift",
        "Map.swift",
        "Materialize.swift",
        "Maybe.swift",
        "Merge.swift",
        "Multicast.swift",
        "Never.swift",
        "NopDisposable.swift",
        "Observable+Concurrency.swift",
        "Observable.swift",
        "ObservableConvertibleType+Infallible.swift",
        "ObservableConvertibleType.swift",
        "ObservableType+Extensions.swift",
        "ObservableType+PrimitiveSequence.swift",
        "ObservableType.swift",
        "ObserveOn.swift",
        "ObserverBase.swift",
        "ObserverType.swift",
        "OperationQueueScheduler.swift",
        "Optional.swift",
        "Platform.Darwin.swift",
        "Platform.Linux.swift",
        "PrimitiveSequence+Concurrency.swift",
        "PrimitiveSequence+Zip+arity.swift",
        "PrimitiveSequence.swift",
        "PriorityQueue.swift",
        "Producer.swift",
        "PublishSubject.swift",
        "Queue.swift",
        "Range.swift",
        "Reactive.swift",
        "RecursiveLock.swift",
        "RecursiveScheduler.swift",
        "Reduce.swift",
        "RefCountDisposable.swift",
        "Repeat.swift",
        "ReplaySubject.swift",
        "RetryWhen.swift",
        "Rx.swift",
        "RxMutableBox.swift",
        "Sample.swift",
        "Scan.swift",
        "ScheduledDisposable.swift",
        "ScheduledItem.swift",
        "ScheduledItemType.swift",
        "SchedulerServices+Emulation.swift",
        "SchedulerType.swift",
        "Sequence.swift",
        "SerialDispatchQueueScheduler.swift",
        "SerialDisposable.swift",
        "ShareReplayScope.swift",
        "Single.swift",
        "SingleAssignmentDisposable.swift",
        "SingleAsync.swift",
        "Sink.swift",
        "Skip.swift",
        "SkipUntil.swift",
        "SkipWhile.swift",
        "StartWith.swift",
        "SubjectType.swift",
        "SubscribeOn.swift",
        "SubscriptionDisposable.swift",
        "SwiftSupport.swift",
        "Switch.swift",
        "SwitchIfEmpty.swift",
        "SynchronizedDisposeType.swift",
        "SynchronizedOnType.swift",
        "SynchronizedUnsubscribeType.swift",
        "TailRecursiveSink.swift",
        "Take.swift",
        "TakeLast.swift",
        "TakeWithPredicate.swift",
        "Throttle.swift",
        "Timeout.swift",
        "Timer.swift",
        "ToArray.swift",
        "Using.swift",
        "VirtualTimeConverterType.swift",
        "VirtualTimeScheduler.swift",
        "Window.swift",
        "WithLatestFrom.swift",
        "WithUnretained.swift",
        "Zip+Collection.swift",
        "Zip+arity.swift",
        "Zip.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxRelay",
      "module_type" : "SwiftTarget",
      "name" : "RxRelay",
      "path" : "Sources/RxRelay",
      "product_memberships" : [
        "RxCocoa",
        "RxRelay",
        "RxCocoa-Dynamic",
        "RxRelay-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/RxRelay/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "BehaviorRelay.swift",
        "Observable+Bind.swift",
        "PublishRelay.swift",
        "ReplayRelay.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxCocoa",
      "module_type" : "SwiftTarget",
      "name" : "RxCocoa",
      "path" : "Sources/RxCocoa",
      "product_memberships" : [
        "RxCocoa",
        "RxCocoa-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/RxCocoa/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "BehaviorRelay+Driver.swift",
        "ControlEvent+Driver.swift",
        "ControlEvent+Signal.swift",
        "ControlEvent.swift",
        "ControlProperty+Driver.swift",
        "ControlProperty.swift",
        "ControlTarget.swift",
        "DelegateProxy.swift",
        "DelegateProxyType.swift",
        "DispatchQueue+Extensions.swift",
        "Driver+Subscription.swift",
        "Driver.swift",
        "Infallible+Bind.swift",
        "Infallible+Driver.swift",
        "ItemEvents.swift",
        "KVORepresentable+CoreGraphics.swift",
        "KVORepresentable+Swift.swift",
        "KVORepresentable.swift",
        "NSButton+Rx.swift",
        "NSControl+Rx.swift",
        "NSObject+Rx+KVORepresentable.swift",
        "NSObject+Rx+RawRepresentable.swift",
        "NSObject+Rx.swift",
        "NSSlider+Rx.swift",
        "NSTextField+Rx.swift",
        "NSTextStorage+Rx.swift",
        "NSTextView+Rx.swift",
        "NSView+Rx.swift",
        "NotificationCenter+Rx.swift",
        "Observable+Bind.swift",
        "ObservableConvertibleType+Driver.swift",
        "ObservableConvertibleType+SharedSequence.swift",
        "ObservableConvertibleType+Signal.swift",
        "PublishRelay+Signal.swift",
        "RxCocoa.swift",
        "RxCocoaObjCRuntimeError+Extensions.swift",
        "RxCollectionViewDataSourcePrefetchingProxy.swift",
        "RxCollectionViewDataSourceProxy.swift",
        "RxCollectionViewDataSourceType.swift",
        "RxCollectionViewDelegateProxy.swift",
        "RxCollectionViewReactiveArrayDataSource.swift",
        "RxNavigationControllerDelegateProxy.swift",
        "RxPickerViewAdapter.swift",
        "RxPickerViewDataSourceProxy.swift",
        "RxPickerViewDataSourceType.swift",
        "RxPickerViewDelegateProxy.swift",
        "RxScrollViewDelegateProxy.swift",
        "RxSearchBarDelegateProxy.swift",
        "RxSearchControllerDelegateProxy.swift",
        "RxTabBarControllerDelegateProxy.swift",
        "RxTabBarDelegateProxy.swift",
        "RxTableViewDataSourcePrefetchingProxy.swift",
        "RxTableViewDataSourceProxy.swift",
        "RxTableViewDataSourceType.swift",
        "RxTableViewDelegateProxy.swift",
        "RxTableViewReactiveArrayDataSource.swift",
        "RxTarget.swift",
        "RxTextStorageDelegateProxy.swift",
        "RxTextViewDelegateProxy.swift",
        "RxWKNavigationDelegateProxy.swift",
        "SchedulerType+SharedSequence.swift",
        "SectionedViewDataSourceType.swift",
        "SharedSequence+Concurrency.swift",
        "SharedSequence+Operators+arity.swift",
        "SharedSequence+Operators.swift",
        "SharedSequence.swift",
        "Signal+Subscription.swift",
        "Signal.swift",
        "TextInput.swift",
        "UIActivityIndicatorView+Rx.swift",
        "UIApplication+Rx.swift",
        "UIBarButtonItem+Rx.swift",
        "UIButton+Rx.swift",
        "UICollectionView+Rx.swift",
        "UIControl+Rx.swift",
        "UIDatePicker+Rx.swift",
        "UIGestureRecognizer+Rx.swift",
        "UINavigationController+Rx.swift",
        "UIPickerView+Rx.swift",
        "UIRefreshControl+Rx.swift",
        "UIScrollView+Rx.swift",
        "UISearchBar+Rx.swift",
        "UISearchController+Rx.swift",
        "UISegmentedControl+Rx.swift",
        "UISlider+Rx.swift",
        "UIStepper+Rx.swift",
        "UISwitch+Rx.swift",
        "UITabBar+Rx.swift",
        "UITabBarController+Rx.swift",
        "UITableView+Rx.swift",
        "UITextField+Rx.swift",
        "UITextView+Rx.swift",
        "URLSession+Rx.swift",
        "WKWebView+Rx.swift"
      ],
      "target_dependencies" : [
        "RxSwift",
        "RxRelay"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxBlocking",
      "module_type" : "SwiftTarget",
      "name" : "RxBlocking",
      "path" : "Sources/RxBlocking",
      "product_memberships" : [
        "RxBlocking",
        "RxBlocking-Dynamic"
      ],
      "sources" : [
        "AtomicInt.swift",
        "BlockingObservable+Operators.swift",
        "BlockingObservable.swift",
        "ObservableConvertibleType+Blocking.swift",
        "Platform.Darwin.swift",
        "Platform.Linux.swift",
        "RecursiveLock.swift",
        "Resources.swift",
        "RunLoopLock.swift"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:2e2b3aca8600f890617c2faa770b70e33c1dfd303d6f92b308423b89ef6bde64
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.