From 562d50eb7b67109ca420eab8705673b138863e6a Mon Sep 17 00:00:00 2001 From: Zachary Catlin Date: Wed, 11 Nov 2020 21:02:21 -0500 Subject: [PATCH] Include llvm-as in llvm-tools-preview component Including llvm-as adds the ability to include assembly language fragments that can be inlined using LTO. --- src/bootstrap/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index 3d111839dc725..ad8b9c7253c68 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -177,6 +177,7 @@ const LLVM_TOOLS: &[&str] = &[ "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-ar", // used for creating and modifying archive files + "llvm-as", // used to convert LLVM assembly to LLVM bitcode "llvm-dis", // used to disassemble LLVM bitcode "llc", // used to compile LLVM bytecode "opt", // used to optimize LLVM bytecode