[PATCH] D108017: [clang] Adjust BUILD.bazel file to also generate AttrDocTable.
Adrian Kuegel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 13 00:01:06 PDT 2021
akuegel updated this revision to Diff 366203.
akuegel added a comment.
Also add lib/AST to includes.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D108017/new/
https://reviews.llvm.org/D108017
Files:
utils/bazel/llvm-project-overlay/clang/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/clang/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/clang/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/clang/BUILD.bazel
@@ -489,6 +489,10 @@
"-gen-clang-attr-classes",
"include/clang/AST/Attrs.inc",
),
+ (
+ "-gen-clang-attr-doc-table",
+ "lib/AST/AttrDocTable.inc",
+ ),
(
"-gen-clang-attr-text-node-dump",
"include/clang/AST/AttrTextNodeDump.inc",
@@ -693,6 +697,7 @@
]),
includes = [
"include",
+ "lib/AST",
"lib/AST/Interp",
],
textual_hdrs = [
@@ -710,6 +715,7 @@
"include/clang/AST/DeclNodes.inc",
"include/clang/AST/StmtDataCollectors.inc",
"include/clang/AST/StmtNodes.inc",
+ "lib/AST/AttrDocTable.inc",
"lib/AST/Interp/Opcodes.inc",
] + glob([
"include/clang/AST/*.def",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D108017.366203.patch
Type: text/x-patch
Size: 1005 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210813/11b79998/attachment.bin>
More information about the llvm-commits
mailing list