|
3 | 3 | The primary installation method, as described at <https://rustup.rs>, differs
|
4 | 4 | by platform:
|
5 | 5 |
|
6 |
| -* On Windows, download and run the [`rustup-init.exe` built for the |
7 |
| - `x86_64-pc-windows-msvc` target][setup]. In general, this is the build of |
| 6 | +* On Windows, download and run the `rustup-init.exe` built for the |
| 7 | + [`x86_64-pc-windows-msvc`] or [`aarch64-pc-windows-msvc`] target, |
| 8 | + depending on your OS architecture. In general, this is the build of |
8 | 9 | `rustup` one should install on Windows. This will require the Visual C++
|
9 | 10 | Build Tools 2019 or equivalent (Visual Studio 2019, etc.) to already be
|
10 |
| - installed. If you would prefer to install GNU toolchains or the i686 or aarch64 |
| 11 | + installed. If you would prefer to install GNU toolchains or the i686 |
11 | 12 | toolchains by default this can be modified at install time, either
|
12 | 13 | interactively, with the `--default-host` flag, or after installation
|
13 | 14 | via `rustup set default-host`.
|
14 | 15 | * On Unix, run `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh` in your shell. This
|
15 | 16 | downloads and runs [`rustup-init.sh`], which in turn downloads and runs the
|
16 | 17 | correct version of the `rustup-init` executable for your platform.
|
17 | 18 |
|
18 |
| -[setup]: https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe |
| 19 | +[`x86_64-pc-windows-msvc`]: https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe |
| 20 | +[`aarch64-pc-windows-msvc`]: https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe |
19 | 21 | [`rustup-init.sh`]: https://static.rust-lang.org/rustup/rustup-init.sh
|
20 | 22 |
|
21 | 23 | `rustup-init` accepts arguments, which can be passed through the shell script.
|
|
0 commit comments