aboutsummaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/build.rs b/build.rs
index 886ff95..af5805d 100644
--- a/build.rs
+++ b/build.rs
@@ -97,6 +97,11 @@ fn new_build() -> cc::Build {
if !is_windows_msvc() {
build.flag("-std=c11");
}
+ // Do NOT trigger a rebuild any time the env changes (e.g. $PATH).
+ // This prevents all downstream crates from being rebuilt when `cargo check`
+ // or `cargo build` are run in different environments, like Rust Analyzer
+ // vs. in the terminal vs. in a Git pre-commit hook.
+ build.emit_rerun_if_env_changed(false);
build
}