Fix broken hyperlink (#862)
* Fix broken hyperlink * Link to previous pages instead of skipping ahead * Fix line lengths
This commit is contained in:
parent
daa7597067
commit
b29062cb76
|
|
@ -81,7 +81,7 @@ don't work (but that is easily detected and fixed).
|
||||||
The sequence of commands you want is as follows:
|
The sequence of commands you want is as follows:
|
||||||
|
|
||||||
- Initial build: `./x.py build -i library/std`
|
- Initial build: `./x.py build -i library/std`
|
||||||
- As [documented above](#command), this will build a functional
|
- As [documented previously], this will build a functional
|
||||||
stage1 compiler as part of running all stage0 commands (which include
|
stage1 compiler as part of running all stage0 commands (which include
|
||||||
building a `std` compatible with the stage1 compiler) as well as the
|
building a `std` compatible with the stage1 compiler) as well as the
|
||||||
first few steps of the "stage 1 actions" up to "stage1 (sysroot stage1)
|
first few steps of the "stage 1 actions" up to "stage1 (sysroot stage1)
|
||||||
|
|
@ -89,6 +89,8 @@ The sequence of commands you want is as follows:
|
||||||
- Subsequent builds: `./x.py build -i library/std --keep-stage 1`
|
- Subsequent builds: `./x.py build -i library/std --keep-stage 1`
|
||||||
- Note that we added the `--keep-stage 1` flag here
|
- Note that we added the `--keep-stage 1` flag here
|
||||||
|
|
||||||
|
[documented previously]: ./how-to-build-and-run.md#building-the-compiler
|
||||||
|
|
||||||
As mentioned, the effect of `--keep-stage 1` is that we just *assume* that the
|
As mentioned, the effect of `--keep-stage 1` is that we just *assume* that the
|
||||||
old standard library can be re-used. If you are editing the compiler, this
|
old standard library can be re-used. If you are editing the compiler, this
|
||||||
is almost always true: you haven't changed the standard library, after
|
is almost always true: you haven't changed the standard library, after
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue