diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-10-27 19:46:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-27 19:46:10 +0200 |
| commit | b9015dab9dc27e83532f08b1ddb683b37eeeac45 (patch) | |
| tree | b6a42ab4c3053ddebe4c4e66691cda55c3090cd2 | |
| parent | f9d62a84f03104af2e638c72a94dfe793f4d3067 (diff) | |
| parent | b915fc86ca1b567c1355febf2c440bad6e66c573 (diff) | |
| download | rust-b9015dab9dc27e83532f08b1ddb683b37eeeac45.tar.gz rust-b9015dab9dc27e83532f08b1ddb683b37eeeac45.zip | |
Rollup merge of #117287 - onur-ozkan:fix-miri-target-info, r=RalfJung
fix miri target information for Test step self-explanatory r? RalfJung
| -rw-r--r-- | src/bootstrap/src/core/build_steps/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/test.rs b/src/bootstrap/src/core/build_steps/test.rs index 27eac212b14..fda06aef10c 100644 --- a/src/bootstrap/src/core/build_steps/test.rs +++ b/src/bootstrap/src/core/build_steps/test.rs @@ -630,7 +630,7 @@ impl Step for Miri { SourceType::InTree, &[], ); - let _guard = builder.msg_sysroot_tool(Kind::Test, compiler.stage, "miri", host, host); + let _guard = builder.msg_sysroot_tool(Kind::Test, compiler.stage, "miri", host, target); cargo.add_rustc_lib_path(builder, compiler); |
