[PATCH] D136519: bazel fix for TranslateLib

Aart Bik via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 21 20:08:17 PDT 2022


This revision was automatically updated to reflect the committed changes.
Closed by commit rG21ef1cac1372: bazel fix for TranslateLib (authored by aartbik).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D136519

Files:
  utils/bazel/llvm-project-overlay/mlir/BUILD.bazel


Index: utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -6194,7 +6194,11 @@
 
 cc_library(
     name = "TranslateLib",
-    srcs = glob(["lib/Tools/mlir-translate/*.cpp"]),
+    srcs = glob([
+        "lib/Tools/mlir-translate/*.cpp",
+    ]) + [
+        "include/mlir/Tools/ParseUtilties.h",
+    ],
     hdrs = glob(["include/mlir/Tools/mlir-translate/*.h"]),
     includes = ["include"],
     deps = [


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D136519.469850.patch
Type: text/x-patch
Size: 586 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221022/e2e1f96b/attachment.bin>


More information about the llvm-commits mailing list