We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f520900 commit 564baf0Copy full SHA for 564baf0
src/tools/miri/tests/ui.rs
@@ -133,7 +133,11 @@ fn miri_config(
133
program: miri_path()
134
.with_file_name(format!("cargo-miri{}", env::consts::EXE_SUFFIX)),
135
// There is no `cargo miri build` so we just use `cargo miri run`.
136
- args: ["miri", "run"].into_iter().map(Into::into).collect(),
+ // Add `-Zbinary-dep-depinfo` since it is needed for bootstrap builds (and doesn't harm otherwise).
137
+ args: ["miri", "run", "-Zbinary-dep-depinfo"]
138
+ .into_iter()
139
+ .map(Into::into)
140
+ .collect(),
141
// Reset `RUSTFLAGS` to work around <https://github.com/rust-lang/rust/pull/119574#issuecomment-1876878344>.
142
envs: vec![("RUSTFLAGS".into(), None)],
143
..CommandBuilder::cargo()
0 commit comments