@@ -24,13 +24,14 @@ use crate::core::build_steps::doc::DocumentationFormat;
24
24
use crate :: core:: build_steps:: llvm;
25
25
use crate :: core:: build_steps:: tool:: { self , Tool } ;
26
26
use crate :: core:: builder:: { Builder , Kind , RunConfig , ShouldRun , Step } ;
27
- use crate :: core:: config:: TargetSelection ;
27
+ use crate :: core:: config:: { DebuginfoLevel , TargetSelection } ;
28
28
use crate :: utils:: channel:: { self , Info } ;
29
29
use crate :: utils:: helpers:: {
30
30
exe, is_dylib, move_file, output, t, target_supports_cranelift_backend, timeit,
31
31
} ;
32
32
use crate :: utils:: tarball:: { GeneratedTarball , OverlayKind , Tarball } ;
33
33
use crate :: { Compiler , DependencyType , Mode , LLVM_TOOLS } ;
34
+ use crate :: core:: build_steps:: compile:: strip_debug;
34
35
35
36
pub fn pkgname ( builder : & Builder < ' _ > , component : & str ) -> String {
36
37
format ! ( "{}-{}" , component, builder. rust_package_vers( ) )
@@ -433,14 +434,26 @@ impl Step for Rustc {
433
434
434
435
// Copy runtime DLLs needed by the compiler
435
436
if libdir_relative. to_str ( ) != Some ( "bin" ) {
437
+ let target_libdir = image. join ( "lib" ) ;
436
438
let libdir = builder. rustc_libdir ( compiler) ;
437
439
for entry in builder. read_dir ( & libdir) {
438
440
let name = entry. file_name ( ) ;
439
441
if let Some ( s) = name. to_str ( ) {
440
442
if is_dylib ( s) {
441
443
// Don't use custom libdir here because ^lib/ will be resolved again
442
444
// 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
+ }
444
457
}
445
458
}
446
459
}
0 commit comments