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
This commit is contained in:
Daniele Vettorel 2021-08-05 12:32:36 -04:00 committed by Jakub Kuderski
parent 97469d4c20
commit 180f4a87c5
1 changed files with 14 additions and 0 deletions

View File

@ -3279,6 +3279,20 @@ gentbl(
],
)
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([