Skip to content

Commit a83e294

Browse files
authored
Rollup merge of rust-lang#74478 - rust-lang:revert-74416-linker-locale-utf8, r=Mark-Simulacrum
Revert "Use an UTF-8 locale for the linker." Reverts rust-lang#74416 This is suspected to have caused significant compile time regressions: https://perf.rust-lang.org/compare.html?start=39d5a61f2e4e237123837f5162cc275c2fd7e625&end=d3df8512d2c2afc6d2e7d8b5b951dd7f2ad77b02&stat=instructions:u
2 parents 2fad396 + 09240a4 commit a83e294

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/librustc_codegen_ssa/back/linker.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ use rustc_target::spec::{LinkOutputKind, LinkerFlavor, LldFlavor};
2828
pub fn disable_localization(linker: &mut Command) {
2929
// No harm in setting both env vars simultaneously.
3030
// Unix-style linkers.
31-
// We use an UTF-8 locale, as the generic C locale disables support for non-ASCII
32-
// bytes in filenames on some platforms.
33-
linker.env("LC_ALL", "en_US.UTF-8");
31+
linker.env("LC_ALL", "C");
3432
// MSVC's `link.exe`.
3533
linker.env("VSLANG", "1033");
3634
}

0 commit comments

Comments
 (0)