Skip to content

Commit fc64168

Browse files
committed
Auto merge of rust-lang#126494 - Kobzol:dont-strip-me-bro, r=<try>
Only strip `librustc_driver` and `libLLVM` during `x dist` The strip invocation can be quite slow (~1-2 seconds), and it is executed on every compiler bootstrap refresh when debuginfo is turned off, which can make most bootstrap commands quite slow. Discussed [here](https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/Only.20strip.20LLVM.2Frustc.20in.20the.20dist.20profile). r? `@lqd`
2 parents 1d1356d + 14d3811 commit fc64168

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

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

+2-14
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use crate::core::builder;
2626
use crate::core::builder::crate_description;
2727
use crate::core::builder::Cargo;
2828
use crate::core::builder::{Builder, Kind, PathSet, RunConfig, ShouldRun, Step, TaskPath};
29-
use crate::core::config::{DebuginfoLevel, LlvmLibunwind, RustcLto, TargetSelection};
29+
use crate::core::config::{LlvmLibunwind, RustcLto, TargetSelection};
3030
use crate::utils::helpers::{
3131
exe, get_clang_cl_resource_dir, is_debug_info, is_dylib, output, symlink_dir, t, up_to_date,
3232
};
@@ -970,19 +970,6 @@ impl Step for Rustc {
970970
true, // Only ship rustc_driver.so and .rmeta files, not all intermediate .rlib files.
971971
);
972972

973-
// When building `librustc_driver.so` (like `libLLVM.so`) on linux, it can contain
974-
// unexpected debuginfo from dependencies, for example from the C++ standard library used in
975-
// our LLVM wrapper. Unless we're explicitly requesting `librustc_driver` to be built with
976-
// debuginfo (via the debuginfo level of the executables using it): strip this debuginfo
977-
// away after the fact.
978-
if builder.config.rust_debuginfo_level_rustc == DebuginfoLevel::None
979-
&& builder.config.rust_debuginfo_level_tools == DebuginfoLevel::None
980-
{
981-
let target_root_dir = stamp.parent().unwrap();
982-
let rustc_driver = target_root_dir.join("librustc_driver.so");
983-
strip_debug(builder, target, &rustc_driver);
984-
}
985-
986973
builder.ensure(RustcLink::from_rustc(
987974
self,
988975
builder.compiler(compiler.stage, builder.config.build),
@@ -2142,6 +2129,7 @@ pub enum CargoMessage<'a> {
21422129
BuildFinished,
21432130
}
21442131

2132+
/// Strips debug symbols from the given library or executable **in-place**.
21452133
pub fn strip_debug(builder: &Builder<'_>, target: TargetSelection, path: &Path) {
21462134
// FIXME: to make things simpler for now, limit this to the host and target where we know
21472135
// `strip -g` is both available and will fix the issue, i.e. on a x64 linux host that is not

src/bootstrap/src/core/build_steps/dist.rs

+15-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ use crate::core::build_steps::doc::DocumentationFormat;
2424
use crate::core::build_steps::llvm;
2525
use crate::core::build_steps::tool::{self, Tool};
2626
use crate::core::builder::{Builder, Kind, RunConfig, ShouldRun, Step};
27-
use crate::core::config::TargetSelection;
27+
use crate::core::config::{DebuginfoLevel, TargetSelection};
2828
use crate::utils::channel::{self, Info};
2929
use crate::utils::helpers::{
3030
exe, is_dylib, move_file, output, t, target_supports_cranelift_backend, timeit,
3131
};
3232
use crate::utils::tarball::{GeneratedTarball, OverlayKind, Tarball};
3333
use crate::{Compiler, DependencyType, Mode, LLVM_TOOLS};
34+
use crate::core::build_steps::compile::strip_debug;
3435

3536
pub fn pkgname(builder: &Builder<'_>, component: &str) -> String {
3637
format!("{}-{}", component, builder.rust_package_vers())
@@ -433,14 +434,26 @@ impl Step for Rustc {
433434

434435
// Copy runtime DLLs needed by the compiler
435436
if libdir_relative.to_str() != Some("bin") {
437+
let target_libdir = image.join("lib");
436438
let libdir = builder.rustc_libdir(compiler);
437439
for entry in builder.read_dir(&libdir) {
438440
let name = entry.file_name();
439441
if let Some(s) = name.to_str() {
440442
if is_dylib(s) {
441443
// Don't use custom libdir here because ^lib/ will be resolved again
442444
// with installer
443-
builder.install(&entry.path(), &image.join("lib"), 0o644);
445+
builder.install(&entry.path(), &target_libdir, 0o644);
446+
447+
// When building `librustc_driver.so` (like `libLLVM.so`) on linux, it can contain
448+
// unexpected debuginfo from dependencies, for example from the C++ standard library used in
449+
// our LLVM wrapper. Unless we're explicitly requesting `librustc_driver` to be built with
450+
// debuginfo (via the debuginfo level of the executables using it): strip this debuginfo
451+
// away after the fact when we distribute it.
452+
if s.starts_with("librustc_driver") &&
453+
builder.config.rust_debuginfo_level_rustc == DebuginfoLevel::None &&
454+
builder.config.rust_debuginfo_level_tools == DebuginfoLevel::None {
455+
strip_debug(builder, host, &target_libdir.join(name));
456+
}
444457
}
445458
}
446459
}

0 commit comments

Comments
 (0)