@@ -35,7 +35,7 @@ Read ["Installing Rust"] from [The Book].
35
35
3 . Build and install:
36
36
37
37
``` sh
38
- $ ./x.py build && sudo ./x.py dist
38
+ $ ./x.py build && sudo ./x.py dist --install
39
39
$ make && sudo make install
40
40
```
41
41
@@ -44,7 +44,7 @@ Read ["Installing Rust"] from [The Book].
44
44
> adjusting the ` prefix` option under ` [install]` . Various other options are
45
45
> also supported, and are documented in the config file.
46
46
47
- When complete, ` sudo ./x.py dist` will place several programs into
47
+ When complete, ` sudo ./x.py dist --install ` will place several programs into
48
48
` /usr/local/bin` : ` rustc` , the Rust compiler, and ` rustdoc` , the
49
49
API-documentation tool. This install does not include [Cargo],
50
50
Rust' s package manager, which you may also want to build.
98
98
4 . Navigate to Rust's source code (or clone it), then build it:
99
99
100
100
``` sh
101
- $ ./x.py build && ./x.py dist
101
+ $ ./x.py build && ./x.py dist --install
102
102
```
103
103
104
104
#### MSVC
@@ -116,7 +116,7 @@ With these dependencies installed, you can build the compiler with:
116
116
If you're running inside of an msys shell, however, you can run:
117
117
118
118
``` sh
119
- $ ./x.py build --build=x86_64-pc-windows-msvc && ./x.py dist
119
+ $ ./x.py build --build=x86_64-pc-windows-msvc && ./x.py dist --install
120
120
```
121
121
122
122
Currently building Rust only works with some known versions of Visual Studio. If
0 commit comments