Skip to content

Commit

Permalink
Disable localization for all linkers
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Apr 27, 2020
1 parent 46ec74e commit 1686f5c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
4 changes: 3 additions & 1 deletion src/librustc_codegen_ssa/back/link.rs
Expand Up @@ -16,7 +16,7 @@ use rustc_target::spec::{LinkerFlavor, LldFlavor, PanicStrategy, RelocModel, Rel

use super::archive::ArchiveBuilder;
use super::command::Command;
use super::linker::Linker;
use super::linker::{self, Linker};
use super::rpath::{self, RPathConfig};
use crate::{
looks_like_rust_object_file, CodegenResults, CrateInfo, METADATA_FILENAME,
Expand Down Expand Up @@ -498,6 +498,8 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
target_cpu,
);

linker::disable_localization(&mut cmd);

for &(ref k, ref v) in &sess.target.target.options.link_env {
cmd.env(k, v);
}
Expand Down
13 changes: 13 additions & 0 deletions src/librustc_codegen_ssa/back/linker.rs
Expand Up @@ -19,6 +19,19 @@ use rustc_session::Session;
use rustc_span::symbol::Symbol;
use rustc_target::spec::{LinkerFlavor, LldFlavor};

/// Disables non-English messages from localized linkers.
/// Such messages may cause issues with text encoding on Windows (#35785)
/// and prevent inspection of linker output in case of errors, which we occasionally do.
/// This should be acceptable because other messages from rustc are in English anyway,
/// and may also be desirable to improve searchability of the linker diagnostics.
pub fn disable_localization(linker: &mut Command) {
// No harm in setting both env vars simultaneously.
// Unix-style linkers.
linker.env("LC_ALL", "C");
// MSVC's `link.exe`.
linker.env("VSLANG", "1033");
}

/// For all the linkers we support, and information they might
/// need out of the shared crate context before we get rid of it.
#[derive(RustcEncodable, RustcDecodable)]
Expand Down
4 changes: 0 additions & 4 deletions src/librustc_target/spec/msvc_base.rs
Expand Up @@ -21,10 +21,6 @@ pub fn opts() -> TargetOptions {
executables: true,
is_like_windows: true,
is_like_msvc: true,
// set VSLANG to 1033 can prevent link.exe from using
// language packs, and avoid generating Non-UTF-8 error
// messages if a link error occurred.
link_env: vec![("VSLANG".to_string(), "1033".to_string())],
lld_flavor: LldFlavor::Link,
pre_link_args,
abi_return_struct_as_int: true,
Expand Down

0 comments on commit 1686f5c

Please sign in to comment.