New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restore the ability to disable incremental compilation #19763
Changes from 1 commit
fe0d286
631623a
9ec5334
e790ee9
File filter...
Jump to…
Restore the ability to disable incremental compilation
It became the default in debug mode in the last Rust/Cargo update.
- Loading branch information
| @@ -40,8 +40,10 @@ debug-mozjs = false | ||
| # Any optional flags that will be added to $RUSTFLAGS | ||
| #rustflags = "" | ||
|
|
||
| # Enable rustc’s incremental compilation | ||
| # Enable or disable rustc’s incremental compilation | ||
| # The default is enabled in debug mode only. | ||
| #incremental = false | ||
| #incremental = true | ||
SimonSapin
Author
Member
|
||
|
|
||
| # Whether to use ThinLTO or not | ||
| #thinlto = false | ||
Having both is a bit weird.