[PATCH] D107571: Add llvm-stress binary to Bazel build configuration.

Jakub Kuderski via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 5 09:36:10 PDT 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rG180f4a87c5cf: Add llvm-stress binary to Bazel build configuration. (authored by vettoreldaniele, committed by kuhar).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D107571/new/

https://reviews.llvm.org/D107571

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
@@ -3279,6 +3279,20 @@
     ],
 )
 
+cc_binary(
+    name = "llvm-stress",
+    srcs = glob([
+        "tools/llvm-stress/*.cpp",
+        "tools/llvm-stress/*.h",
+    ]),
+    copts = llvm_copts,
+    stamp = 0,
+    deps = [
+        ":Core",
+        ":Support",
+    ],
+)
+
 cc_binary(
     name = "llvm-objcopy",
     srcs = glob([


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107571.364512.patch
Type: text/x-patch
Size: 572 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210805/9e3beff6/attachment.bin>


More information about the llvm-commits mailing list