Skip to content

Commit 7dcedd8

Browse files
committed
Handle rerun-if-changed directives in dependencies
There was a failure mode of the handling of the rerun-if-changed directive where it would rerun the build script twice before hitting a steady state of actually processing the directives. The order of events that led to this were: 1. A project was built from a clean directory. Cargo recorded a fingerprint indicating this (for the build script), but the fingerprint indicated that the build script was a normal build script (no manually specified inputs) because Cargo had no prior knowledge. 2. A project was then rebuilt from the same directory. Cargo's new fingerprint for the build script now indicates that there is a custom list of dependencies, but the previous fingerprint indicates there wasn't, so the mismatch causes another rebuild. 3. All future rebuilds will agree that there are custom lists both before and after, so the directives are processed as one would expect. This commit does a bit of refactoring in the fingerprint module to fix this situation. The recorded fingerprint in step (1) is now recorded as a "custom dependencies are specified" fingerprint if, after the build script is run, custom dependencies were specified. Closes #2267
1 parent 9b0ed1d commit 7dcedd8

File tree

4 files changed

+196
-146
lines changed

4 files changed

+196
-146
lines changed

src/cargo/ops/cargo_rustc/custom_build.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,11 @@ fn build_work<'a, 'cfg>(cx: &mut Context<'a, 'cfg>, unit: &Unit<'a>)
131131
// Check to see if the build script as already run, and if it has keep
132132
// track of whether it has told us about some explicit dependencies
133133
let prev_output = BuildOutput::parse_file(&output_file, &pkg_name).ok();
134-
if let Some(ref prev) = prev_output {
135-
let val = (output_file.clone(), prev.rerun_if_changed.clone());
136-
cx.build_explicit_deps.insert(*unit, val);
137-
}
134+
let rerun_if_changed = match prev_output {
135+
Some(ref prev) => prev.rerun_if_changed.clone(),
136+
None => Vec::new(),
137+
};
138+
cx.build_explicit_deps.insert(*unit, (output_file.clone(), rerun_if_changed));
138139

139140
try!(fs::create_dir_all(&cx.layout(unit.pkg, Kind::Host).build(unit.pkg)));
140141
try!(fs::create_dir_all(&cx.layout(unit.pkg, unit.kind).build(unit.pkg)));

0 commit comments

Comments
 (0)