-
Notifications
You must be signed in to change notification settings - Fork 5
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
Rust supports Windows on Arm #4
Conversation
Firefox is supported and is on production for Windows on Arm. One of its big dependencies is Rust.
Rust is in an interesting position because |
@dstaley it just requires: rustup target add aarch64-pc-windows-msvc tbh, that shouldn't count as an additional step beyond the normal ones :) |
I know it's a small step, but my goal with the project was to highlight applications that are shipping ARM64 versions by default. My thinking was that I'd only light up an application if you could follow the exact same steps on both an x86 and an ARM64 machine and get the respective versions. If the x86 version of Rust doesn't require the user to run the command you've listed, then the ARM64 version would need to work without the command in order to mark it as available. That being said, I'm surprised the installer doesn't default to the correct toolchain, and I'll be filing an issue with Furthermore, I'm hesitant to mark Rust as available since it looks like |
The rustc and cargo columns in that table indicate whether rustc and cargo are built for that platform when landing changes. I.e. continuous integration. It doesn’t indicate whether rustc and cargo are available or not.
|
From my understanding, what it means is that you can target For starters, they are not in the list of standalone installers. In fact, there aren't any installers on that list that don't already have a tickmark in both the What you get by running There is currently an open issue about |
|
It seems that support will arrived with v1.49.0 |
Firefox is supported and is on production for Windows on Arm. One of its big dependencies is Rust.