@@ -120,15 +120,15 @@ Options:
120
120
--on-fail CMD command to run on failure
121
121
--stage N stage to build
122
122
--keep-stage N stage to keep without recompiling
123
- --src DIR path to the root of the rust checkout
123
+ --src DIR path to the root of the Rust checkout
124
124
-j, --jobs JOBS number of jobs to run in parallel
125
125
-h, --help print this help message
126
126
```
127
127
128
128
For hacking, often building the stage 1 compiler is enough, which saves a lot
129
129
of time. But for final testing and release, the stage 2 compiler is used.
130
130
131
- ` ./x.py check ` is really fast to build the rust compiler.
131
+ ` ./x.py check ` is really fast to build the Rust compiler.
132
132
It is, in particular, very useful when you're doing some kind of
133
133
"type-based refactoring", like renaming a method, or changing the
134
134
signature of some function.
@@ -150,7 +150,7 @@ What this command does is the following:
150
150
- Build ` std ` using the stage1 compiler (cannot use incremental)
151
151
152
152
This final product (stage1 compiler + libs built using that compiler)
153
- is what you need to build other rust programs (unless you use ` #![no_std] ` or
153
+ is what you need to build other Rust programs (unless you use ` #![no_std] ` or
154
154
` #![no_core] ` ).
155
155
156
156
The command includes the ` -i ` switch which enables incremental compilation.
0 commit comments