From c874e36ad18808206281a4860ae88a359e223f01 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Mon, 27 Aug 2018 19:00:07 +0200 Subject: [PATCH 1/2] add llvm-readobj to llvm-tools-preview --- src/bootstrap/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index 5bb475e07ba8d..720edaa91958c 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. From 84796cbc01efe0f3b12985869c7a3efa88caf9f0 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Tue, 28 Aug 2018 14:58:52 +0200 Subject: [PATCH 2/2] sort --- src/bootstrap/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index 720edaa91958c..862002f6e97fd 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -211,9 +211,9 @@ const LLVM_TOOLS: &[&str] = &[ "llvm-objcopy", // used to transform ELFs into binary format which flashing tools consume "llvm-objdump", // used to disassemble programs "llvm-profdata", // used to inspect and merge files generated by profiles + "llvm-readobj", // used to get information from ELFs/objects that the other tools don't provide "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.