ReactiveCocoa / ReactiveSwift

Streams of values over time

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Could not find module 'ReactiveSwift' for target 'arm64-apple-ios-simulator'

tangzzz-fan opened this issue · comments

I am using a m1 chip to build the project based on Carthage. It could build and run well on Intel chip, but cannot pass on m1.
Carthage build script used end up with --use-xcframeworks.
Error message is :"Could not find module 'ReactiveSwift' for target 'arm64-apple-ios-simulator'"
Anyone meet this issue too?

Sounds similar to this issue: #825

If you are building ReactiveSwift into an XCFramework for use with Apple Silicon it also needs to include an arm64-apple-ios-simulator slice so it can be used in the simulator on Apple Silicon Macs.

Sounds similar to this issue: #825

If you are building ReactiveSwift into an XCFramework for use with Apple Silicon it also needs to include an arm64-apple-ios-simulator slice so it can be used in the simulator on Apple Silicon Macs.

Thank you for your quick reply, I will improve it immediately!