[Bazel] Fix build for 98f078324f

This commit is contained in:
Benjamin Kramer 2021-07-05 22:39:42 +02:00
parent b3f5d0639e
commit 775cac4cca
1 changed files with 14 additions and 0 deletions

View File

@ -3451,6 +3451,18 @@ cc_binary(
], ],
) )
gentbl(
name = "StringsOptsTableGen",
strip_include_prefix = "tools/llvm-strings",
tbl_outs = [(
"-gen-opt-parser-defs",
"tools/llvm-strings/Opts.inc",
)],
tblgen = ":llvm-tblgen",
td_file = "tools/llvm-strings/Opts.td",
td_srcs = ["include/llvm/Option/OptParser.td"],
)
cc_binary( cc_binary(
name = "llvm-strings", name = "llvm-strings",
srcs = glob([ srcs = glob([
@ -3461,6 +3473,8 @@ cc_binary(
stamp = 0, stamp = 0,
deps = [ deps = [
":Object", ":Object",
":Option",
":StringsOptsTableGen",
":Support", ":Support",
], ],
) )