Skip to content
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

bootstrap/miri: switch to non-deprecated env var for setting the sysroot folder #102226

Merged
merged 1 commit into from
Sep 24, 2022
Merged
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
bootstrap/miri: switch to non-deprecated env var for setting the sysr…
…oot folder
RalfJung committed Sep 24, 2022

Verified

This commit was signed with the committer’s verified signature.
germa89 German
commit 5f77ce029697dd9c91c5240f5b65372fb9d4c09a
2 changes: 1 addition & 1 deletion src/bootstrap/test.rs
Original file line number Diff line number Diff line change
@@ -520,7 +520,7 @@ impl Step for Miri {
cargo.arg("--").arg("miri").arg("setup");

// Tell `cargo miri setup` where to find the sources.
cargo.env("XARGO_RUST_SRC", builder.src.join("library"));
cargo.env("MIRI_LIB_SRC", builder.src.join("library"));
// Tell it where to find Miri.
cargo.env("MIRI", &miri);
// Debug things.