[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:22:21 PDT 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rG970129a2ddbe: [clang] Adjust BUILD.bazel file to also generate AttrDocTable. (authored by akuegel).

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.366204.patch
Type: text/x-patch
Size: 1005 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210813/b2879539/attachment.bin>


More information about the llvm-commits mailing list