File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -136,13 +136,13 @@ lets you use `cargo fmt`.
136136[ the section on vscode ] : suggested.md#configuring-rust-analyzer-for-rustc
137137[ the section on rustup ] : how-to-build-and-run.md?highlight=rustup#creating-a-rustup-toolchain
138138
139- ## Incremental builds with ` --keep-stage ` .
139+ ## Faster builds with ` --keep-stage ` .
140140
141141Sometimes just checking
142142whether the compiler builds is not enough. A common example is that
143143you need to add a ` debug! ` statement to inspect the value of some
144144state or better understand the problem. In that case, you really need
145- a full build. By leveraging incremental, though , you can often get
145+ a full build. By bypassing bootstrap's cache invalidation , you can often get
146146these builds to complete very fast (e.g., around 30 seconds). The only
147147catch is this requires a bit of fudging and may produce compilers that
148148don't work (but that is easily detected and fixed).
You can’t perform that action at this time.
0 commit comments