2
2
3
3
Command | Description
4
4
----------------------------------------------------------- | ------------------------------------------------------------
5
- ` rustup default nightly ` | Set the default toolchain to the latest nightly
6
- ` rustup set profile minimal ` | Set the default "profile" (see [ profiles ] ( #profiles ) )
7
- ` rustup target list ` | List all available targets for the active toolchain
5
+ ` rustup default nightly ` | Set the [ default toolchain] to the latest nightly
6
+ ` rustup set profile minimal ` | Set the default [ profile ]
7
+ ` rustup target list ` | List all available [ targets] for the active toolchain
8
8
` rustup target add arm-linux-androideabi ` | Install the Android target
9
9
` rustup target remove arm-linux-androideabi ` | Remove the Android target
10
10
` rustup run nightly rustc foo.rs ` | Run the nightly regardless of the active toolchain
11
- ` rustc +nightly foo.rs ` | Shorthand way to run a nightly compiler
11
+ ` rustc +nightly foo.rs ` | [ Shorthand] way to run a nightly compiler
12
12
` rustup run nightly bash ` | Run a shell configured for the nightly compiler
13
13
` rustup default stable-msvc ` | On Windows, use the MSVC toolchain instead of GNU
14
14
` rustup override set nightly-2015-04-01 ` | For the current directory, use a nightly from a specific date
@@ -17,3 +17,8 @@ Command | Description
17
17
` rustup toolchain uninstall nightly ` | Uninstall a given toolchain
18
18
` rustup toolchain help ` | Show the ` help ` page for a subcommand (like ` toolchain ` )
19
19
` rustup man cargo ` | \( * Unix only* \) View the man page for a given command (like ` cargo ` )
20
+
21
+ [ default toolchain ] : overrides.md#default-toolchain
22
+ [ profile ] : concepts/profiles.md
23
+ [ shorthand ] : overrides.md#toolchain-override-shorthand
24
+ [ targets ] : cross-compilation.md
0 commit comments