Skip to content

Commit

Permalink
rustc_{a,l,m,t}san: re-run build script if env var LLVM_CONFIG changes
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatagiri committed Jun 30, 2017
1 parent 401614b commit 4f13da7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/librustc_asan/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ fn main() {
.build_target("asan")
.build();
}
println!("cargo:rerun-if-env-changed=LLVM_CONFIG");
}
1 change: 1 addition & 0 deletions src/librustc_lsan/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ fn main() {
.build_target("lsan")
.build();
}
println!("cargo:rerun-if-env-changed=LLVM_CONFIG");
}
1 change: 1 addition & 0 deletions src/librustc_msan/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ fn main() {
.build_target("msan")
.build();
}
println!("cargo:rerun-if-env-changed=LLVM_CONFIG");
}
1 change: 1 addition & 0 deletions src/librustc_tsan/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ fn main() {
.build_target("tsan")
.build();
}
println!("cargo:rerun-if-env-changed=LLVM_CONFIG");
}

0 comments on commit 4f13da7

Please sign in to comment.