]> git.lizzy.rs Git - rust.git/commitdiff
Add `llvm-dis` to the set of tools in `ci-llvm`
authorMiguel Ojeda <ojeda@kernel.org>
Thu, 22 Sep 2022 13:03:38 +0000 (15:03 +0200)
committerMiguel Ojeda <ojeda@kernel.org>
Fri, 23 Sep 2022 08:19:59 +0000 (10:19 +0200)
The LLVM disassembler is needed for the test introduced in
https://github.com/rust-lang/rust/pull/97550.

Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
src/bootstrap/dist.rs
src/bootstrap/download-ci-llvm-stamp

index c9ee3c1c7d65d435fea3e1a1ffef9d14f22bcc92..642831a66a22b86fc259bdea0c3c6088fc942b94 100644 (file)
@@ -2059,6 +2059,7 @@ fn run(self, builder: &Builder<'_>) -> Option<GeneratedTarball> {
             "llvm-dwp",
             "llvm-nm",
             "llvm-dwarfdump",
+            "llvm-dis",
         ] {
             tarball.add_file(src_bindir.join(exe(bin, target)), "bin", 0o755);
         }
index 19504a51a584b1af9f19cc4ba78865b72b81cd5c..2e11cf19c3f6a1c9ee8d66e7e4d57368c1bff10d 100644 (file)
@@ -1,4 +1,4 @@
 Change this file to make users of the `download-ci-llvm` configuration download
 a new version of LLVM from CI, even if the LLVM submodule hasn’t changed.
 
-Last change is for: https://github.com/rust-lang/rust/pull/96867
+Last change is for: https://github.com/rust-lang/rust/pull/97550