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:
Joshua Nelson 2020-06-17 11:01:46 -04:00 committed by Tshepang Lekhonkhobe
parent 7e3da5c2ee
commit b5be6012f6
1 changed files with 2 additions and 2 deletions

View File

@ -259,8 +259,6 @@ Here are a few other useful `x.py` commands. We'll cover some of them in detail
in other sections:
- 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,
not just up to `libstd`
- `./x.py build` builds the stage2 compiler
@ -283,3 +281,5 @@ everything up then you only need to run one command!
```bash
./x.py clean
```
`rm -rf build` works too, but then you have to rebuild LLVM.