Skip to content

Commit 09240a4

Browse files
Revert "Use an UTF-8 locale for the linker."
1 parent d3df851 commit 09240a4

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)