about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorMateusz Mikuła <oss@mateuszmikula.dev>2025-04-27 13:10:06 +0200
committerMateusz Mikuła <oss@mateuszmikula.dev>2025-05-31 15:58:43 +0200
commit98961cd3da999cda30a1ab6c751bc9cf0a6cb6b3 (patch)
treea9515d910f5cb5afa2fb3f737e2dad8992ef6647 /src/bootstrap
parente0d014a3dffbb3f0575cfbeb0f480c5080c4d018 (diff)
downloadrust-98961cd3da999cda30a1ab6c751bc9cf0a6cb6b3.tar.gz
rust-98961cd3da999cda30a1ab6c751bc9cf0a6cb6b3.zip
Fix incorrect comment
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/src/core/build_steps/compile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/compile.rs b/src/bootstrap/src/core/build_steps/compile.rs
index d5ea96b43f5..38c1c852210 100644
--- a/src/bootstrap/src/core/build_steps/compile.rs
+++ b/src/bootstrap/src/core/build_steps/compile.rs
@@ -1409,7 +1409,7 @@ fn rustc_llvm_env(builder: &Builder<'_>, cargo: &mut Cargo, target: TargetSelect
         cargo.env("LLVM_LINKER_FLAGS", llvm_linker_flags);
     }
 
-    // Building with a static libstdc++ is only supported on linux right now,
+    // Building with a static libstdc++ is only supported on Linux and windows-gnu* right now,
     // not for MSVC or macOS
     if builder.config.llvm_static_stdcpp
         && !target.contains("freebsd")