[PATCH] D136452: [bazel] Add missing C++ style clang headers

Aaron Siddhartha Mondal via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 24 15:31:08 PDT 2022


aaronmondal updated this revision to Diff 470305.
aaronmondal added a comment.

Add missing comma.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D136452/new/

https://reviews.llvm.org/D136452

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
@@ -1478,7 +1478,12 @@
 # 'bin' section of the bazel output so that they can be used as data
 # dependencies. It requires listing explicitly all the generated inputs here.
 builtin_headers = glob(
-    ["lib/Headers/**/*.h"],
+    [
+        "lib/Headers/*.h",
+        "lib/Headers/cuda_wrappers/*",
+        "lib/Headers/openmp_wrappers/*",
+        "lib/Headers/ppc_wrappers/*",
+    ],
     exclude = [
         # FIXME: They are not handled in CMake side.
         "lib/Headers/openmp_wrappers/time.h",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D136452.470305.patch
Type: text/x-patch
Size: 744 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221024/dfd5854c/attachment.bin>


More information about the llvm-commits mailing list