diff options
| author | Ralf Jung <post@ralfj.de> | 2024-03-29 12:27:20 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-03-31 19:44:54 +0200 |
| commit | b5fe655ae855c72d49f26103ec4717995c91ff02 (patch) | |
| tree | baf5e23c986dfe2d50cca4d906d623667195b0af | |
| parent | 4056df5cf74e83286417f0df83cba510c32488d3 (diff) | |
| download | rust-b5fe655ae855c72d49f26103ec4717995c91ff02.tar.gz rust-b5fe655ae855c72d49f26103ec4717995c91ff02.zip | |
bootstrap/rustc: remove a miri hack
| -rw-r--r-- | src/bootstrap/src/bin/rustc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/bin/rustc.rs b/src/bootstrap/src/bin/rustc.rs index 74a924d86c7..12251924717 100644 --- a/src/bootstrap/src/bin/rustc.rs +++ b/src/bootstrap/src/bin/rustc.rs @@ -150,7 +150,7 @@ fn main() { { cmd.arg("-Ztls-model=initial-exec"); } - } else if std::env::var("MIRI").is_err() { + } else { // Find any host flags that were passed by bootstrap. // The flags are stored in a RUSTC_HOST_FLAGS variable, separated by spaces. if let Ok(flags) = std::env::var("RUSTC_HOST_FLAGS") { |
