[PATCH] D145903: [mlir][Bazel] Adjustments for fa51c1753a274fbb7a71d8fe91fd4e5caf2fa4d3
Adrian Kuegel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 13 00:55:56 PDT 2023
akuegel created this revision.
Herald added subscribers: Moerafaat, zero9178, bzcheeseman, sdasgup3, wenzhicui, wrengr, cota, teijeong, rdzhabarov, tatianashp, msifontes, jurahul, Kayjukh, grosul1, Joonsoo, liufengdb, aartbik, mgester, arpith-jacob, antiagainst, shauheen, rriddle, mehdi_amini, thopre.
Herald added a project: All.
akuegel requested review of this revision.
Herald added subscribers: llvm-commits, stephenneuendorffer, nicolasvasilache.
Herald added a project: LLVM.
Fix bazel build.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D145903
Files:
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
utils/bazel/llvm-project-overlay/mlir/unittests/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/mlir/unittests/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/unittests/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/unittests/BUILD.bazel
@@ -20,6 +20,7 @@
]),
deps = [
"//llvm:TestingSupport",
+ "//mlir:BreakpointManagers",
"//mlir:Debug",
"//mlir:Support",
"//third-party/unittest:gmock",
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
@@ -3572,6 +3572,20 @@
],
)
+cc_library(
+ name = "BreakpointManagers",
+ srcs = glob([
+ "lib/Debug/BreakpointManagers/*.cpp",
+ "lib/Debug/BreakpointManagers/*.h",
+ ]),
+ hdrs = glob(["include/mlir/Debug/BreakpointManagers/*.h"])
+ deps = [
+ ":Debug",
+ ":IR",
+ "//llvm:Support",
+ ],
+)
+
cc_library(
name = "MlirLspServerSupportLib",
srcs = glob(
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145903.504531.patch
Type: text/x-patch
Size: 1128 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230313/bb2d0ac6/attachment.bin>
More information about the llvm-commits
mailing list