We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
llvm-dis
llc
opt
llvm-tools-preview
1 parent f3ab6f0 commit c16c8acCopy full SHA for c16c8ac
src/bootstrap/lib.rs
@@ -177,6 +177,9 @@ const LLVM_TOOLS: &[&str] = &[
177
"llvm-size", // used to prints the size of the linker sections of a program
178
"llvm-strip", // used to discard symbols from binary files to reduce their size
179
"llvm-ar", // used for creating and modifying archive files
180
+ "llvm-dis", // used to disassemble LLVM bitcode
181
+ "llc", // used to compile LLVM bytecode
182
+ "opt", // used to optimize LLVM bytecode
183
];
184
185
/// A structure representing a Rust compiler.
0 commit comments