diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2023-10-11 22:40:04 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2023-10-11 22:40:04 +0200 |
| commit | 482a8204bc3d586c664bd3c494372fa7340be99f (patch) | |
| tree | f59b444e57a210d223fccc6a2d286ce1a69f850f /src/bootstrap | |
| parent | 9a0e90f7b47fa09aa49cbd9248b0218a6caf5728 (diff) | |
| download | rust-482a8204bc3d586c664bd3c494372fa7340be99f.tar.gz rust-482a8204bc3d586c664bd3c494372fa7340be99f.zip | |
Pass BOLT settings at the correct step
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/compile.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs index 15fee486425..623fa5fa111 100644 --- a/src/bootstrap/compile.rs +++ b/src/bootstrap/compile.rs @@ -907,7 +907,7 @@ impl Step for Rustc { } if builder.build.config.enable_bolt_settings && compiler.stage == 1 { - // Relocations are required for BOLT to work.k + // Relocations are required for BOLT to work. cargo.env("RUSTC_BOLT_LINK_FLAGS", "1"); } |
