File tree 1 file changed +7
-3
lines changed
src/bootstrap/src/core/build_steps
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -1976,9 +1976,13 @@ impl Step for Assemble {
1976
1976
}
1977
1977
}
1978
1978
1979
- {
1980
- // `llvm-strip` is used by rustc, which is actually just a symlink to `llvm-objcopy`,
1981
- // so copy and rename `llvm-objcopy`.
1979
+ if builder. config . llvm_enabled ( target_compiler. host ) && builder. config . llvm_tools_enabled {
1980
+ // `llvm-strip` is used by rustc, which is actually just a symlink to `llvm-objcopy`, so
1981
+ // copy and rename `llvm-objcopy`.
1982
+ //
1983
+ // But only do so if llvm-tools are enabled, as bootstrap compiler might not contain any
1984
+ // LLVM tools, e.g. for cg_clif.
1985
+ // See <https://github.com/rust-lang/rust/issues/132719>.
1982
1986
let src_exe = exe ( "llvm-objcopy" , target_compiler. host ) ;
1983
1987
let dst_exe = exe ( "rust-objcopy" , target_compiler. host ) ;
1984
1988
builder. copy_link ( & libdir_bin. join ( src_exe) , & libdir_bin. join ( dst_exe) ) ;
You can’t perform that action at this time.
0 commit comments