Skip to content

Commit 180f4a8

Browse files
vettoreldanielekuhar
authored andcommitted
Add llvm-stress binary to Bazel build configuration.
The `llvm-stress` binary is currently missing from the Bazel `BUILD` file for llvm. This patch adds it. Reviewed By: GMNGeoffrey Differential Revision: https://reviews.llvm.org/D107571
1 parent 97469d4 commit 180f4a8

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3279,6 +3279,20 @@ gentbl(
32793279
],
32803280
)
32813281

3282+
cc_binary(
3283+
name = "llvm-stress",
3284+
srcs = glob([
3285+
"tools/llvm-stress/*.cpp",
3286+
"tools/llvm-stress/*.h",
3287+
]),
3288+
copts = llvm_copts,
3289+
stamp = 0,
3290+
deps = [
3291+
":Core",
3292+
":Support",
3293+
],
3294+
)
3295+
32823296
cc_binary(
32833297
name = "llvm-objcopy",
32843298
srcs = glob([

0 commit comments

Comments
 (0)