[PATCH] D126489: Add llvm-debuginfod-find tool to Bazel build

Daniele Vettorel via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 26 10:57:23 PDT 2022


vettoreldaniele created this revision.
vettoreldaniele added a reviewer: GMNGeoffrey.
vettoreldaniele added a project: bazel build.
Herald added a project: All.
vettoreldaniele requested review of this revision.
Herald added a project: LLVM.

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


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D126489

Files:
  utils/bazel/llvm-project-overlay/llvm/BUILD.bazel


Index: utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
@@ -2877,6 +2877,23 @@
     ],
 )
 
+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([


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D126489.432332.patch
Type: text/x-patch
Size: 665 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220526/fc865d5d/attachment.bin>


More information about the llvm-commits mailing list