We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c874e36 commit 84796cbCopy full SHA for 84796cb
src/bootstrap/lib.rs
@@ -211,9 +211,9 @@ const LLVM_TOOLS: &[&str] = &[
211
"llvm-objcopy", // used to transform ELFs into binary format which flashing tools consume
212
"llvm-objdump", // used to disassemble programs
213
"llvm-profdata", // used to inspect and merge files generated by profiles
214
+ "llvm-readobj", // used to get information from ELFs/objects that the other tools don't provide
215
"llvm-size", // used to prints the size of the linker sections of a program
216
"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
217
];
218
219
/// A structure representing a Rust compiler.
0 commit comments