Skip to content

Commit c0ee7a1

Browse files
authored
Rollup merge of rust-lang#102101 - BelovDV:new-check-lld-version, r=petrochenkov
check lld version to choose correct option to disable multi-threading in tests Testing compiler with 'use-lld = true' may be incorrect with old lld. Flag, disabling multi-threading, should consider lld version. r? `@petrochenkov`
2 parents a0e9c70 + 0c4a01a commit c0ee7a1

File tree

4 files changed

+22
-9
lines changed

4 files changed

+22
-9
lines changed

src/bootstrap/bin/rustdoc.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,9 @@ fn main() {
5555
arg.push(&linker);
5656
cmd.arg(arg);
5757
}
58-
if env::var_os("RUSTDOC_FUSE_LD_LLD").is_some() {
58+
if let Ok(no_threads) = env::var("RUSTDOC_LLD_NO_THREADS") {
5959
cmd.arg("-Clink-arg=-fuse-ld=lld");
60-
if cfg!(windows) {
61-
cmd.arg("-Clink-arg=-Wl,/threads:1");
62-
} else {
63-
cmd.arg("-Clink-arg=-Wl,--threads=1");
64-
}
60+
cmd.arg(format!("-Clink-arg=-Wl,{}", no_threads));
6561
}
6662
// Cargo doesn't pass RUSTDOCFLAGS to proc_macros:
6763
// https://github.com/rust-lang/cargo/issues/4423

src/bootstrap/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1152,8 +1152,8 @@ impl Build {
11521152
options[0] = Some("-Clink-arg=-fuse-ld=lld".to_string());
11531153
}
11541154

1155-
let threads = if target.contains("windows") { "/threads:1" } else { "--threads=1" };
1156-
options[1] = Some(format!("-Clink-arg=-Wl,{}", threads));
1155+
let no_threads = util::lld_flag_no_threads(target.contains("windows"));
1156+
options[1] = Some(format!("-Clink-arg=-Wl,{}", no_threads));
11571157
}
11581158

11591159
IntoIterator::into_iter(options).flatten()

src/bootstrap/test.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,10 @@ impl Step for RustdocTheme {
771771
cmd.env("RUSTDOC_LINKER", linker);
772772
}
773773
if builder.is_fuse_ld_lld(self.compiler.host) {
774-
cmd.env("RUSTDOC_FUSE_LD_LLD", "1");
774+
cmd.env(
775+
"RUSTDOC_LLD_NO_THREADS",
776+
util::lld_flag_no_threads(self.compiler.host.contains("windows")),
777+
);
775778
}
776779
try_run(builder, &mut cmd);
777780
}

src/bootstrap/util.rs

+14
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use std::time::{Instant, SystemTime, UNIX_EPOCH};
1313

1414
use crate::builder::Builder;
1515
use crate::config::{Config, TargetSelection};
16+
use crate::OnceCell;
1617

1718
/// A helper macro to `unwrap` a result except also print out details like:
1819
///
@@ -607,3 +608,16 @@ pub fn get_clang_cl_resource_dir(clang_cl_path: &str) -> PathBuf {
607608
let clang_rt_dir = clang_rt_builtins.parent().expect("The clang lib folder should exist");
608609
clang_rt_dir.to_path_buf()
609610
}
611+
612+
pub fn lld_flag_no_threads(is_windows: bool) -> &'static str {
613+
static LLD_NO_THREADS: OnceCell<(&'static str, &'static str)> = OnceCell::new();
614+
let (windows, other) = LLD_NO_THREADS.get_or_init(|| {
615+
let out = output(Command::new("lld").arg("-flavor").arg("ld").arg("--version"));
616+
let newer = match (out.find(char::is_numeric), out.find('.')) {
617+
(Some(b), Some(e)) => out.as_str()[b..e].parse::<i32>().ok().unwrap_or(14) > 10,
618+
_ => true,
619+
};
620+
if newer { ("/threads:1", "--threads=1") } else { ("/no-threads", "--no-threads") }
621+
});
622+
if is_windows { windows } else { other }
623+
}

0 commit comments

Comments
 (0)