File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ The `stage2` compiler is the one distributed with `rustup` and all other
25
25
install methods. However, it takes a very long time to build because one must
26
26
first build the new compiler with an older compiler and then use that to
27
27
build the new compiler with itself. For development, you usually only want
28
- the ` stage1 ` compiler: ` x.py build --stage 1 library/std ` .
28
+ the ` stage1 ` compiler: ` x.py build library/std ` .
29
29
30
30
## Complications of bootstrapping
31
31
@@ -196,7 +196,7 @@ later copied into stage2 as well (both the compiler's `libdir` and the
196
196
This ` std ` is pretty much necessary for any useful work with the compiler.
197
197
Specifically, it's used as the ` std ` for programs compiled by the newly compiled
198
198
compiler (so when you compile ` fn main() { } ` it is linked to the last ` std `
199
- compiled with ` x.py build --stage 1 library/std ` ).
199
+ compiled with ` x.py build library/std ` ).
200
200
201
201
The ` rustc ` generated by the stage0 compiler is linked to the freshly-built
202
202
` std ` , which means that for the most part only ` std ` needs to be cfg-gated,
You can’t perform that action at this time.
0 commit comments