diff options
| author | mark <markm@cs.wisc.edu> | 2020-06-02 19:28:36 -0500 |
|---|---|---|
| committer | Who? Me?! <mark-i-m@users.noreply.github.com> | 2020-06-18 12:16:00 -0500 |
| commit | 74ee00932e8f82cddc01434aacb5ec229f025c97 (patch) | |
| tree | 5dae766a9f830e2dd32e8d3a7d2598c3a8d4dd93 /src/doc/rustc-dev-guide | |
| parent | f592f6f9007a2724837197bdaec93374b6feca27 (diff) | |
| download | rust-74ee00932e8f82cddc01434aacb5ec229f025c97.tar.gz rust-74ee00932e8f82cddc01434aacb5ec229f025c97.zip | |
mention incremental disk space
Diffstat (limited to 'src/doc/rustc-dev-guide')
| -rw-r--r-- | src/doc/rustc-dev-guide/src/getting-started.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/doc/rustc-dev-guide/src/getting-started.md b/src/doc/rustc-dev-guide/src/getting-started.md index 5d78e416bdb..3c3781da880 100644 --- a/src/doc/rustc-dev-guide/src/getting-started.md +++ b/src/doc/rustc-dev-guide/src/getting-started.md @@ -84,6 +84,11 @@ Like `cargo`, the build system will use as many cores as possible. Sometimes this can cause you to run low on memory. You can use `-j` to adjust the number concurrent jobs. +Also, if you don't have too much free disk space, you may want to turn off +incremental compilation (see the "Configuring" section below). This will make +compilation take longer, but will save a ton of space from the incremental +caches. + ### Cloning You can just do a normal git clone: |
