Skip to content

Commit ef85d8b

Browse files
committed
Auto merge of #112049 - Kobzol:pgo-omit-benchmarks, r=<try>
[do not merge] CI experiments Various CI experiments for try/dist builds. r? `@ghost` try-job: dist-x86_64-linux
2 parents 49e5e4e + 26956eb commit ef85d8b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/bootstrap/src/core/build_steps/llvm.rs

+1
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,7 @@ impl Step for Llvm {
448448
if builder.config.llvm_clang {
449449
enabled_llvm_projects.push("clang");
450450
}
451+
enabled_llvm_projects.push("bolt");
451452

452453
// We want libxml to be disabled.
453454
// See https://github.com/rust-lang/rust/pull/50104

src/bootstrap/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ pub use utils::change_tracker::{
5757
use crate::core::build_steps::vendor::VENDOR_DIR;
5858

5959
const LLVM_TOOLS: &[&str] = &[
60+
"llvm-bolt",
61+
"merge-fdata",
6062
"llvm-cov", // used to generate coverage report
6163
"llvm-nm", // used to inspect binaries; it shows symbol names, their sizes and visibility
6264
"llvm-objcopy", // used to transform ELFs into binary format which flashing tools consume

0 commit comments

Comments
 (0)