From: Ralf Jung Date: Sun, 10 May 2020 16:56:38 +0000 (+0200) Subject: we do not need to set RUSTFLAGS for xargo any more as miri-as-rustc already uses... X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=845b89c23607516b5cae90cc3c925c9ab32059c7;p=rust.git we do not need to set RUSTFLAGS for xargo any more as miri-as-rustc already uses these flags --- diff --git a/src/bin/cargo-miri.rs b/src/bin/cargo-miri.rs index 2e1609e1edf..ca7fafd3d9c 100644 --- a/src/bin/cargo-miri.rs +++ b/src/bin/cargo-miri.rs @@ -342,7 +342,6 @@ fn setup(subcommand: MiriCommand) { command.env("RUSTC", find_miri()); } command.env("MIRI_BE_RUSTC", "1"); - command.env("RUSTFLAGS", miri::miri_default_args().join(" ")); // Finally run it! if command.status().expect("failed to run xargo").success().not() { show_error(format!("Failed to run xargo"));