From 0ef6a9a6c499558426e61732f55ee3e800fccbc4 Mon Sep 17 00:00:00 2001 From: Dennis Kempin Date: Fri, 10 Feb 2023 06:24:24 -0800 Subject: [PATCH] rust-toolchain: Add llvm-tools-preview The llvm tools provide access to commonly used llvm tools through cargo - specifically we need llvm-strip for stripping debug data before packaging tests for remote execution. This is already installed by install-deps. But having it part of the toolchain file will automatically install it on toolchain updates as well. BUG=None TEST=None Change-Id: I433ebccb5d7a2c419c5cab7476146a142967e439 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4240537 Reviewed-by: Daniel Verkamp Commit-Queue: Dennis Kempin --- rust-toolchain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain b/rust-toolchain index e44d5bfee3..d0eaa337d7 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1,3 +1,3 @@ [toolchain] channel = "1.65.0" -components = [ "rustfmt", "clippy" ] +components = [ "rustfmt", "clippy", "llvm-tools-preview" ]