From ea59b5c6d546776dbe4f9b89e93a55d227f4c34b Mon Sep 17 00:00:00 2001 From: Jake Zimmerman Date: Sat, 4 May 2024 01:26:34 -0700 Subject: [PATCH] Add two more aliased tools (#321) - `clangd` because it's convenient to be able to configure a language client to use the matching version of clangd that the project is compiled with - `llvm-symbolizer` because it's also convenient --- toolchain/aliases.bzl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/toolchain/aliases.bzl b/toolchain/aliases.bzl index 02b36925..27547511 100644 --- a/toolchain/aliases.bzl +++ b/toolchain/aliases.bzl @@ -23,6 +23,8 @@ aliased_tools = [ "clang-apply-replacements", "clang-format", "clang-tidy", + "clangd", "llvm-cov", "llvm-profdata", + "llvm-symbolizer", ]