From b9da4d7b1c6138734673ba14a8420ddaaa9fd8fa Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 28 Jan 2019 07:24:41 -0800 Subject: [PATCH] Revert "Make incremental compilation the default for all profiles." This reverts commit 2c408583ce4936d7ab5f07a46db8fdcc954925a1. --- src/cargo/core/profiles.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cargo/core/profiles.rs b/src/cargo/core/profiles.rs index e1302f7b809..6a4214c90ae 100644 --- a/src/cargo/core/profiles.rs +++ b/src/cargo/core/profiles.rs @@ -406,7 +406,7 @@ impl Default for Profile { debug_assertions: false, overflow_checks: false, rpath: false, - incremental: true, + incremental: false, panic: None, } } @@ -467,6 +467,7 @@ impl Profile { debuginfo: Some(2), debug_assertions: true, overflow_checks: true, + incremental: true, ..Profile::default() } }