add llvm-readobj to llvm-tools-preview

This commit is contained in:
Jorge Aparicio 2018-08-27 19:00:07 +02:00
parent b638d8c75f
commit c874e36ad1

View file

@ -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.