Skip to content

Commit e831f94

Browse files
authored
Add more tools by default (#463)
Add more tools by default: * clang-format: Allows to format generated files, so the golden files can be merged in a compliant format and compared against. * clang-tidy: Allows to use the toolchain's tidy command out of the box without needing to install a matching one. * clangd: Alows to use the toolchain's indexer without needing to install the matching one. Interestingly these are available out of the box in WORKSPACE setups. This change makes them available also for BAZELMOD setups.
1 parent 0990c3b commit e831f94

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

toolchain/internal/common.bzl

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ _toolchain_tools = {
2727
name: name
2828
for name in [
2929
"clang-cpp",
30+
"clang-format",
31+
"clang-tidy",
32+
"clangd",
3033
"ld.lld",
3134
"llvm-ar",
3235
"llvm-dwp",

0 commit comments

Comments
 (0)