about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2023-10-11 22:40:04 +0200
committerJakub Beránek <berykubik@gmail.com>2023-10-11 22:40:04 +0200
commit482a8204bc3d586c664bd3c494372fa7340be99f (patch)
treef59b444e57a210d223fccc6a2d286ce1a69f850f /src/bootstrap
parent9a0e90f7b47fa09aa49cbd9248b0218a6caf5728 (diff)
downloadrust-482a8204bc3d586c664bd3c494372fa7340be99f.tar.gz
rust-482a8204bc3d586c664bd3c494372fa7340be99f.zip
Pass BOLT settings at the correct step
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/compile.rs2
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");
         }