Skip to content

Commit

Permalink
Auto merge of #6610 - alexcrichton:revert-incremental, r=Eh2406
Browse files Browse the repository at this point in the history
Revert "Make incremental compilation the default for all profiles."

This reverts commit 2c40858.
  • Loading branch information
bors committed Jan 28, 2019
2 parents d7001c8 + b9da4d7 commit 2c4a411
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cargo/core/profiles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ impl Default for Profile {
debug_assertions: false,
overflow_checks: false,
rpath: false,
incremental: true,
incremental: false,
panic: None,
}
}
Expand Down Expand Up @@ -467,6 +467,7 @@ impl Profile {
debuginfo: Some(2),
debug_assertions: true,
overflow_checks: true,
incremental: true,
..Profile::default()
}
}
Expand Down

0 comments on commit 2c4a411

Please sign in to comment.