Skip to content

Commit bb46953

Browse files
pickfiretshepang
authored andcommitted
Rename src/rustc to compiler/rustc
1 parent 039e29f commit bb46953

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,14 @@ should still read the rest of the section:
180180
| `x.py build --keep-stage 1 library/std` | Build the 1st stage of the compiler and skips rebuilding the standard library; this is useful after you've done an ordinary stage1 build to skip compilation time, but it can cause weird problems. (Just do a regular build to resolve.) |
181181
| `x.py test [--keep-stage 1]` | Run the test suite using the stage1 compiler |
182182
| `x.py test --bless [--keep-stage 1]` | Run the test suite using the stage1 compiler _and_ update expected test output. |
183-
| `x.py build --stage 2 src/rustc` | Do a full 2-stage build. You almost never want to do this. |
183+
| `x.py build --stage 2 compiler/rustc` | Do a full 2-stage build. You almost never want to do this. |
184184
| `x.py test --stage 2` | Do a full 2-stage build and run all tests. You almost never want to do this. |
185185

186186
To do a full 2-stage build of the whole compiler, you should run this (after
187187
updating `config.toml` as mentioned above):
188188

189189
```sh
190-
./x.py build --stage 2 src/rustc
190+
./x.py build --stage 2 compiler/rustc
191191
```
192192

193193
In the process, this will also necessarily build the standard libraries, and it

0 commit comments

Comments
 (0)