We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbd884c commit bfe997eCopy full SHA for bfe997e
utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
@@ -5172,6 +5172,18 @@ cc_binary(
5172
],
5173
)
5174
5175
+gentbl(
5176
+ name = "ReadTAPIOptsTableGen",
5177
+ strip_include_prefix = "tools/llvm-readtapi",
5178
+ tbl_outs = [(
5179
+ "-gen-opt-parser-defs",
5180
+ "tools/llvm-readtapi/TapiOpts.inc",
5181
+ )],
5182
+ tblgen = ":llvm-tblgen",
5183
+ td_file = "tools/llvm-readtapi/TapiOpts.td",
5184
+ td_srcs = ["include/llvm/Option/OptParser.td"],
5185
+)
5186
+
5187
cc_binary(
5188
name = "llvm-readtapi",
5189
testonly = True,
@@ -5183,6 +5195,8 @@ cc_binary(
5195
stamp = 0,
5196
deps = [
5197
":Object",
5198
+ ":Option",
5199
+ ":ReadTAPIOptsTableGen",
5200
":Support",
5201
":TextAPI",
5202
0 commit comments