Skip to content

Commit 8f0fa9d

Browse files
committed
Auto merge of #78131 - SimonSapin:ar, r=Mark-Simulacrum
Package more llvm-* tools in the rust-dev component, for run-make-fulldeps tests Fixes #78110
2 parents ef3e386 + 99f99ca commit 8f0fa9d

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

src/bootstrap/bootstrap.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,9 @@ def download_stage0(self):
435435
llvm_sha = subprocess.check_output([
436436
"git", "log", "--author=bors", "--format=%H", "-n1",
437437
"-m", "--first-parent",
438-
"--", "src/llvm-project"
438+
"--",
439+
"src/llvm-project",
440+
"src/bootstrap/download-ci-llvm-stamp",
439441
]).decode(sys.getdefaultencoding()).strip()
440442
llvm_assertions = self.get_toml('assertions', 'llvm') == 'true'
441443
if self.program_out_of_date(self.llvm_stamp(), llvm_sha + str(llvm_assertions)):

src/bootstrap/dist.rs

+9-2
Original file line numberDiff line numberDiff line change
@@ -2538,8 +2538,15 @@ impl Step for RustDev {
25382538
let dst_bindir = image.join("bin");
25392539
t!(fs::create_dir_all(&dst_bindir));
25402540

2541-
let exe = builder.llvm_out(target).join("bin").join(exe("llvm-config", target));
2542-
builder.install(&exe, &dst_bindir, 0o755);
2541+
let src_bindir = builder.llvm_out(target).join("bin");
2542+
let install_bin =
2543+
|name| builder.install(&src_bindir.join(exe(name, target)), &dst_bindir, 0o755);
2544+
install_bin("llvm-config");
2545+
install_bin("llvm-ar");
2546+
install_bin("llvm-objdump");
2547+
install_bin("llvm-profdata");
2548+
install_bin("llvm-bcanalyzer");
2549+
install_bin("llvm-cov");
25432550
builder.install(&builder.llvm_filecheck(target), &dst_bindir, 0o755);
25442551

25452552
// Copy the include directory as well; needed mostly to build

src/bootstrap/download-ci-llvm-stamp

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Change this file to make users of the `download-ci-llvm` configuration download
2+
a new version of LLVM from CI, even if the LLVM submodule hasn’t changed.
3+
4+
Last change is for: https://github.com/rust-lang/rust/pull/78131

0 commit comments

Comments
 (0)