Add llvm-debuginfod-find tool to Bazel build

Add missing `llvm-debuginfod-find` tool to the Bazel build.

Patch by: vettoreldaniele.

Reviewed By: GMNGeoffrey

Differential Revision: https://reviews.llvm.org/D126489
This commit is contained in:
Daniele Vettorel
2022-05-27 10:17:29 -04:00
committed by Jakub Kuderski
parent e651ed8621
commit b479ea4b0a

View File

@@ -2877,6 +2877,23 @@ cc_binary(
],
)
cc_binary(
name = "llvm-debuginfod-find",
srcs = glob([
"tools/llvm-debuginfod-find/*.cpp",
"tools/llvm-debuginfod-find/*.h",
]),
copts = llvm_copts,
stamp = 0,
deps = [
":Symbolize",
":BitReader",
":Core",
":Support",
":Debuginfod",
],
)
cc_binary(
name = "llvm-dis",
srcs = glob([