-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
[binary-releases] macos aarch64 (m1) support #2286
Comments
Nice catch! Thanks |
I just noticed ^^the target triple is |
@JonasKruckenberg could you make Thanks |
Sorry for the delay, here you go!
|
@JonasKruckenberg could you try without cargo install tauri-cli --version 1.0.0-beta.5 then Let me know if it works |
It works! 🥳👍🏻 |
@nklayman looks like this is coming from the binary releases as the built-in Maybe we could build a CI version with Thanks |
I don't think we can cross compile, so we'd have to wait for actions/runner-images#2187. We could work around this by checking the arch at runtime instead of build time. |
Describe the bug
The bundler fails to include a sidecar on apple silicon machines. It is expecting to find a binary named:
${name}-x86_64-apple-darwin
even though the correct thing to do is to look for a binary with the name${name}-aarch64-apple-darwin
.Platform and Versions (required):
Workaround
you can specify the target explicitly by running
yarn tauri build --target aarch64-apple-darwin
.The text was updated successfully, but these errors were encountered: