Skip to content

Commit 27de218

Browse files
authored
Unrolled build for rust-lang#129116
Rollup merge of rust-lang#129116 - Zalathar:compiler-rt, r=Mark-Simulacrum Include a copy of `compiler-rt` source in the `download-ci-llvm` tarball This will make it possible to experiment with allowing `download-ci-llvm` builds to build `library/profiler_builtins`, without needing to check out the `src/llvm-project` submodule. By itself, this PR just adds the files to the tarball, but doesn't actually do anything with them. The idea is that once this is merged, it will then be much easier to proceed with work on the necessary bootstrap changes (using the real downloaded tarball), without having to rig up weird hacks to simulate downloading a modified tarball. --- Adding these files to the compressed tarballs appears to increase its size by a negligible amount (<1 MB out of 400/800+ MB). The uncompressed size is about 14 MB (out of 2+ GB for the whole tarball). (The excluded test files would have been another 35 MB.)
2 parents 804be74 + 320be47 commit 27de218

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/bootstrap/download-ci-llvm-stamp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Change this file to make users of the `download-ci-llvm` configuration download
22
a new version of LLVM from CI, even if the LLVM submodule hasn’t changed.
33

4-
Last change is for: https://github.com/rust-lang/rust/pull/125642
4+
Last change is for: https://github.com/rust-lang/rust/pull/129116

src/bootstrap/src/core/build_steps/dist.rs

+13
Original file line numberDiff line numberDiff line change
@@ -2322,6 +2322,19 @@ impl Step for RustDev {
23222322
let link_type = if builder.llvm_link_shared() { "dynamic" } else { "static" };
23232323
t!(std::fs::write(tarball.image_dir().join("link-type.txt"), link_type), dst_libdir);
23242324

2325+
// Copy the `compiler-rt` source, so that `library/profiler_builtins`
2326+
// can potentially use it to build the profiler runtime without needing
2327+
// to check out the LLVM submodule.
2328+
copy_src_dirs(
2329+
builder,
2330+
&builder.src.join("src").join("llvm-project"),
2331+
&["compiler-rt"],
2332+
// The test subdirectory is much larger than the rest of the source,
2333+
// and we currently don't use these test files anyway.
2334+
&["compiler-rt/test"],
2335+
tarball.image_dir(),
2336+
);
2337+
23252338
Some(tarball.generate())
23262339
}
23272340
}

0 commit comments

Comments
 (0)