File tree 1 file changed +2
-2
lines changed
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`.
136
136
[ the section on vscode ] : suggested.md#configuring-rust-analyzer-for-rustc
137
137
[ the section on rustup ] : how-to-build-and-run.md?highlight=rustup#creating-a-rustup-toolchain
138
138
139
- ## Incremental builds with ` --keep-stage ` .
139
+ ## Faster builds with ` --keep-stage ` .
140
140
141
141
Sometimes just checking
142
142
whether the compiler builds is not enough. A common example is that
143
143
you need to add a ` debug! ` statement to inspect the value of some
144
144
state 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
146
146
these builds to complete very fast (e.g., around 30 seconds). The only
147
147
catch is this requires a bit of fudging and may produce compilers that
148
148
don't work (but that is easily detected and fixed).
You can’t perform that action at this time.
0 commit comments