Don't give `x.py clean` as the first x.py example
This command shouldn't be used very often, and it has its own whole section below anyway.
This commit is contained in:
parent
7e3da5c2ee
commit
b5be6012f6
|
|
@ -259,8 +259,6 @@ Here are a few other useful `x.py` commands. We'll cover some of them in detail
|
||||||
in other sections:
|
in other sections:
|
||||||
|
|
||||||
- Building things:
|
- Building things:
|
||||||
- `./x.py clean` – clean up the build directory (`rm -rf build` works too,
|
|
||||||
but then you have to rebuild LLVM)
|
|
||||||
- `./x.py build --stage 1` – builds everything using the stage 1 compiler,
|
- `./x.py build --stage 1` – builds everything using the stage 1 compiler,
|
||||||
not just up to `libstd`
|
not just up to `libstd`
|
||||||
- `./x.py build` – builds the stage2 compiler
|
- `./x.py build` – builds the stage2 compiler
|
||||||
|
|
@ -283,3 +281,5 @@ everything up then you only need to run one command!
|
||||||
```bash
|
```bash
|
||||||
./x.py clean
|
./x.py clean
|
||||||
```
|
```
|
||||||
|
|
||||||
|
`rm -rf build` works too, but then you have to rebuild LLVM.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue