about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorIvan Tham <pickfire@riseup.net>2020-09-06 22:14:19 +0800
committerTshepang Lekhonkhobe <tshepang@gmail.com>2020-09-06 16:21:08 +0200
commite381ca3f2c0c812d99a38763d7f3afe25cc07a95 (patch)
tree3c8180b6ec3f37d5b81989a9e9f52cfd4430a9eb /src/doc/rustc-dev-guide
parent6500603ef19593b0f1351d099ee9e561e38c2cb7 (diff)
downloadrust-e381ca3f2c0c812d99a38763d7f3afe25cc07a95.tar.gz
rust-e381ca3f2c0c812d99a38763d7f3afe25cc07a95.zip
Rename src/rustc to compiler/rustc
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/getting-started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/getting-started.md b/src/doc/rustc-dev-guide/src/getting-started.md
index 055551c60ab..9c67f3dc4bc 100644
--- a/src/doc/rustc-dev-guide/src/getting-started.md
+++ b/src/doc/rustc-dev-guide/src/getting-started.md
@@ -180,14 +180,14 @@ should still read the rest of the section:
 | `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.) |
 | `x.py test [--keep-stage 1]` | Run the test suite using the stage1 compiler |
 | `x.py test --bless [--keep-stage 1]` | Run the test suite using the stage1 compiler _and_ update expected test output. |
-| `x.py build --stage 2 src/rustc` | Do a full 2-stage build. You almost never want to do this. |
+| `x.py build --stage 2 compiler/rustc` | Do a full 2-stage build. You almost never want to do this. |
 | `x.py test --stage 2` | Do a full 2-stage build and run all tests. You almost never want to do this. |
 
 To do a full 2-stage build of the whole compiler, you should run this (after
 updating `config.toml` as mentioned above):
 
 ```sh
-./x.py build --stage 2 src/rustc
+./x.py build --stage 2 compiler/rustc
 ```
 
 In the process, this will also necessarily build the standard libraries, and it