-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compatibility with M1 macbook (arm64) #15
Comments
BUMP |
We had a similar issue reported to swift-composable-architecture here: pointfreeco/swift-composable-architecture#344 It turned out to not be a problem with the library but rather an issue with the project depending on it. Can you reproduce your issue in a brand new project with no other dependencies? If so, and if you have a fix, we'd gladly accept a PR! |
Ha, now that I think of it, swift-composable-architecture depends on combine-schedulers, and that folks have been able to run the sample apps just fine, so I'm inclined to think that this isn't a library problem here, as well. Would love to have information about solutions to this issue. @mbrandonw and I haven't upgraded to M1s yet so we don't yet have a way of trying to reproduce the problem. |
Thanks @stephencelis |
@micHar Given the discussion above I'm going to close this out, but if you think it's still a problem, please let us know! |
I will try that, thanks for letting me know |
Just to mention. |
Describe the bug
I cannot build the tests on an M1 macbook. It seems to work fine on intel machine.
The issue is that if I start with a clean project I get
No such module CombineSchedulers
in IDE where theimport CombineSchedulers
is and when building my tests - underCompile Swift Source Files (arm64)
I also get the errorNo such module CombineSchedulers
.If I build my app target first, the errors in IDE disappears. But then I proceed to building my tests and I get
No such module MYMODULE
underCompile Swift Source Files (arm64)
.Expected behavior
Test target should build and run tests.
Environment
The text was updated successfully, but these errors were encountered: