about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2018-08-27 19:00:07 +0200
committerJorge Aparicio <jorge@japaric.io>2018-08-27 19:00:07 +0200
commitc874e36ad18808206281a4860ae88a359e223f01 (patch)
tree47fe62fa5a9a512ac447727cf5afa151842aafb4 /src/bootstrap
parentb638d8c75f4e38c75c5caa52b10b18a350431687 (diff)
downloadrust-c874e36ad18808206281a4860ae88a359e223f01.tar.gz
rust-c874e36ad18808206281a4860ae88a359e223f01.zip
add llvm-readobj to llvm-tools-preview
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs
index 5bb475e07ba..720edaa9195 100644
--- a/src/bootstrap/lib.rs
+++ b/src/bootstrap/lib.rs
@@ -213,6 +213,7 @@ const LLVM_TOOLS: &[&str] = &[
     "llvm-profdata", // used to inspect and merge files generated by profiles
     "llvm-size", // used to prints the size of the linker sections of a program
     "llvm-strip", // used to discard symbols from binary files to reduce their size
+    "llvm-readobj", // used to get information from ELFs/objects that the other tools don't provide
 ];
 
 /// A structure representing a Rust compiler.