Address more review comments in #1286.

This commit is contained in:
Nicholas Nethercote 2022-01-06 12:52:38 +11:00 committed by Joshua Nelson
parent 940fbb5f7a
commit 08019e25d1
2 changed files with 2 additions and 2 deletions

View File

@ -182,7 +182,7 @@ You almost never need to do this.
If you are working on the standard library, you probably don't need to build If you are working on the standard library, you probably don't need to build
the compiler unless you are planning to use a recently added nightly feature. the compiler unless you are planning to use a recently added nightly feature.
Instead, you can just build stage 0, which uses the current beta compiler. Instead, you can just build using the bootstrap compiler.
```bash ```bash
./x.py build --stage 0 library/std ./x.py build --stage 0 library/std

View File

@ -42,7 +42,7 @@ does is call the `main()` that's in this crate's `lib.rs`, though.)
* Run `./x.py setup tools` before getting started. This will configure `x.py` * Run `./x.py setup tools` before getting started. This will configure `x.py`
with nice settings for developing rustdoc and other tools, including with nice settings for developing rustdoc and other tools, including
downloading a copy of rustc rather than building it. downloading a copy of rustc rather than building it.
* Use `./x.py check` to quickly check for compile errors. * Use `./x.py check src/tools/rustdoc` to quickly check for compile errors.
* Use `./x.py build` to make a usable * Use `./x.py build` to make a usable
rustdoc you can run on other projects. rustdoc you can run on other projects.
* Add `library/test` to be able to use `rustdoc --test`. * Add `library/test` to be able to use `rustdoc --test`.