-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Enable cross-crate incremental compilation by default. #42055
Enable cross-crate incremental compilation by default. #42055
Conversation
@@ -963,7 +963,7 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options, | |||
"attempt to recover from parse errors (experimental)"), | |||
incremental: Option<String> = (None, parse_opt_string, [UNTRACKED], | |||
"enable incremental compilation (experimental)"), | |||
incremental_cc: bool = (false, parse_bool, [UNTRACKED], | |||
incremental_cc: bool = (true, parse_bool, [UNTRACKED], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we just remove the option altogether?
@bors r+ |
📌 Commit af0c900 has been approved by |
…al-cc, r=nikomatsakis Enable cross-crate incremental compilation by default. Now that direct metadata hashing has been implemented for a while and we haven't seen any problems with it over at [rust-icci](https://travis-ci.org/rust-icci/), let's re-enable cross crate support for incremental compilation again. r? @nikomatsakis
☔ The latest upstream changes (presumably #41911) made this pull request unmergeable. Please resolve the merge conflicts. |
🔒 Merge conflict |
af0c900
to
1b8df3d
Compare
@bors r=nikomatsakis |
📌 Commit 1b8df3d has been approved by |
⌛ Testing commit 1b8df3d with merge 4ec4be4... |
💔 Test failed - status-travis |
@bors retry |
…komatsakis Enable cross-crate incremental compilation by default. Now that direct metadata hashing has been implemented for a while and we haven't seen any problems with it over at [rust-icci](https://travis-ci.org/rust-icci/), let's re-enable cross crate support for incremental compilation again. r? @nikomatsakis
☀️ Test successful - status-appveyor, status-travis |
Now that direct metadata hashing has been implemented for a while and we haven't seen any problems with it over at rust-icci, let's re-enable cross crate support for incremental compilation again.
r? @nikomatsakis