Skip to content

Commit

Permalink
Add llvm-debuginfod-find tool to Bazel build
Browse files Browse the repository at this point in the history
Add missing `llvm-debuginfod-find` tool to the Bazel build.

Patch by: vettoreldaniele.

Reviewed By: GMNGeoffrey

Differential Revision: https://reviews.llvm.org/D126489
  • Loading branch information
vettoreldaniele authored and kuhar committed May 27, 2022
1 parent e651ed8 commit b479ea4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
Expand Up @@ -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([
Expand Down

0 comments on commit b479ea4

Please sign in to comment.