Skip to content

Commit e561499

Browse files
committed
Auto merge of #131188 - Kobzol:remove-libstd-so-from-sysroot, r=onur-ozkan
Do not copy libstd dynamic library to sysroot Since #122362, rustc links statically to libstd.[so|dll]. Which means that the libstd.[so|dll] file no longer has to be in the rustc sysroot. However, we are currently still shipping this file, in every new release of Rust, for no reason, it's just wasted bytes. This PR removes the dynamic library file from the built sysroot. However, it is not yet performed on Windows, because stage0 incremental tests start failing there (see description of the issue [here](https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/Failing.20incr.20tests.20on.20Windows.20when.20std.2Edll.20is.20missing/near/474507064)). This is an extended version of #128986. CC `@Zoxc`
2 parents f559d61 + f59c8ff commit e561499

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

src/bootstrap/src/bin/rustc.rs

-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ fn main() {
9595
// When statically linking `std` into `rustc_driver`, remove `-C prefer-dynamic`
9696
if env::var("RUSTC_LINK_STD_INTO_RUSTC_DRIVER").unwrap() == "1"
9797
&& crate_name == Some("rustc_driver")
98-
&& stage != "0"
9998
{
10099
if let Some(pos) = args.iter().enumerate().position(|(i, a)| {
101100
a == "-C" && args.get(i + 1).map(|a| a == "prefer-dynamic").unwrap_or(false)

src/bootstrap/src/core/build_steps/compile.rs

+17-1
Original file line numberDiff line numberDiff line change
@@ -1923,8 +1923,24 @@ impl Step for Assemble {
19231923
let src_libdir = builder.sysroot_libdir(build_compiler, host);
19241924
for f in builder.read_dir(&src_libdir) {
19251925
let filename = f.file_name().into_string().unwrap();
1926-
if (is_dylib(&filename) || is_debug_info(&filename)) && !proc_macros.contains(&filename)
1926+
1927+
let is_proc_macro = proc_macros.contains(&filename);
1928+
let is_dylib_or_debug = is_dylib(&filename) || is_debug_info(&filename);
1929+
1930+
// If we link statically to stdlib, do not copy the libstd dynamic library file
1931+
// FIXME: Also do this for Windows once incremental post-optimization stage0 tests
1932+
// work without std.dll (see https://github.com/rust-lang/rust/pull/131188).
1933+
let can_be_rustc_dynamic_dep = if builder
1934+
.link_std_into_rustc_driver(target_compiler.host)
1935+
&& !target_compiler.host.is_windows()
19271936
{
1937+
let is_std = filename.starts_with("std-") || filename.starts_with("libstd-");
1938+
!is_std
1939+
} else {
1940+
true
1941+
};
1942+
1943+
if is_dylib_or_debug && can_be_rustc_dynamic_dep && !is_proc_macro {
19281944
builder.copy_link(&f.path(), &rustc_libdir.join(&filename));
19291945
}
19301946
}

tests/ui/command/command-current-dir.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//@ run-pass
2+
//@ no-prefer-dynamic We move the binary around, so do not depend dynamically on libstd
23
//@ ignore-wasm32 no processes
34
//@ ignore-sgx no processes
45
//@ ignore-fuchsia Needs directory creation privilege

0 commit comments

Comments
 (0)