We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49e5e4e + 26956eb commit ef85d8bCopy full SHA for ef85d8b
src/bootstrap/src/core/build_steps/llvm.rs
@@ -448,6 +448,7 @@ impl Step for Llvm {
448
if builder.config.llvm_clang {
449
enabled_llvm_projects.push("clang");
450
}
451
+ enabled_llvm_projects.push("bolt");
452
453
// We want libxml to be disabled.
454
// See https://github.com/rust-lang/rust/pull/50104
src/bootstrap/src/lib.rs
@@ -57,6 +57,8 @@ pub use utils::change_tracker::{
57
use crate::core::build_steps::vendor::VENDOR_DIR;
58
59
const LLVM_TOOLS: &[&str] = &[
60
+ "llvm-bolt",
61
+ "merge-fdata",
62
"llvm-cov", // used to generate coverage report
63
"llvm-nm", // used to inspect binaries; it shows symbol names, their sizes and visibility
64
"llvm-objcopy", // used to transform ELFs into binary format which flashing tools consume
0 commit comments