From 45e9accecb18cbdbadad05abeed860f68d7a46f3 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 21 Mar 2019 23:29:47 +0100 Subject: [PATCH] Include llvm-ar with llvm-tools component --- src/bootstrap/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index 976b30a55c9..4887c9be670 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -190,6 +190,7 @@ pub unsafe fn setup(_build: &mut crate::Build) { "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-ar" // used for creating and modifying archive files ]; /// A structure representing a Rust compiler.