-
Notifications
You must be signed in to change notification settings - Fork 47
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
Does not work on M1 Macs #177
Comments
Why not use iTerm under arm? |
It has nothing to do with the terminal, but the xcrun and xcodebuild that fails to build for the correct architecture. |
Is this at all related to a |
I don't have Apple silicon Mac yet. Please provide details (steps to reproduce, expected behavior, actual behavior, and possible fix (if any)). |
I think everything is working as expected. On an M1 it is arm64 unless you explicitly do something. I think the question here is why is the OP running iTerm under Rosetta - what is the issue they are trying to solve with that? |
After some investigation of my own swift-stuff for emacs I noticed that
"uname -a"
is different in iTerm compared to emacs shell. iTerm (rosetta) returns x86_64 while Emacs returns arm64.The only way I could get xcodebuild to run correctly on M1 is if its prepended with
"env /usr/bin/arch - x86_64 \\".
Just to be clear, the command runs oki but the -destination with iOS Simulator doesnt work without it.
The text was updated successfully, but these errors were encountered: