File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1121,6 +1121,10 @@ impl Step for Assemble {
1121
1121
& lld_install. join ( "bin" ) . join ( & src_exe) ,
1122
1122
& gcc_ld_dir. join ( exe ( "ld" , target_compiler. host ) ) ,
1123
1123
) ;
1124
+ builder. copy (
1125
+ & lld_install. join ( "bin" ) . join ( & src_exe) ,
1126
+ & gcc_ld_dir. join ( exe ( "ld64" , target_compiler. host ) ) ,
1127
+ ) ;
1124
1128
}
1125
1129
1126
1130
// Similarly, copy `llvm-dwp` into libdir for Split DWARF. Only copy it when the LLVM
Original file line number Diff line number Diff line change @@ -412,6 +412,8 @@ impl Step for Rustc {
412
412
let gcc_lld_dir = dst_dir. join ( "gcc-ld" ) ;
413
413
t ! ( fs:: create_dir( & gcc_lld_dir) ) ;
414
414
builder. copy ( & src_dir. join ( & rust_lld) , & gcc_lld_dir. join ( exe ( "ld" , compiler. host ) ) ) ;
415
+ builder
416
+ . copy ( & src_dir. join ( & rust_lld) , & gcc_lld_dir. join ( exe ( "ld64" , compiler. host ) ) ) ;
415
417
}
416
418
417
419
// Copy over llvm-dwp if it's there
You can’t perform that action at this time.
0 commit comments