Skip to content

miri-script: also overwrite CARGO_BUILD_BUILD_DIR #4312

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion miri-script/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ impl MiriEnv {
}

// Hard-code the target dir, since we rely on all binaries ending up in the same spot.
sh.set_var("CARGO_TARGET_DIR", path!(miri_dir / "target"));
// Cargo provides multiple ways to adjust this and we need to overwrite all of them.
let target_dir = path!(miri_dir / "target");
sh.set_var("CARGO_TARGET_DIR", &target_dir);
sh.set_var("CARGO_BUILD_BUILD_DIR", &target_dir);

// We configure dev builds to not be unusably slow.
let devel_opt_level =
Expand Down