-
Notifications
You must be signed in to change notification settings - Fork 911
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
Rustup installs i686 versions on 64-bit Windows #296
Comments
It appears that win.rustup.rs is (sort of) an alias to |
This is intended, for two reasons: 1) I'd much rather have users download a single program than have to pick between 32-bit and 64-bit builds (or worse - between 32/64/gnu/msvc), 2) There's no particular reason to tie the default architecture to the architecture of the download. Right now you can switch to a 64-bit toolchains by installing them explicitly, like I suspect that my preferred ultimate solution will be to have a configuration option for default host. At install time (perhaps just on windows), we'll mention "oh, and this is the target you'll build for by default", and then it can be changed interactively (or via command line switch). |
In the meantime, if you really need a build that defaults to 64-bit you can still download it from the "other installation methods" section of the README. |
Ah, I'm going to close this in favor of the aforementioned bug. |
I had to manually specify x86_64-pc-windows-gnu triple to get 64-bit version.
Is it intended?
The text was updated successfully, but these errors were encountered: