[PATCH] D109171: [Bazel] Update for Cpp emitter (2f0750dd2e)
Geoffrey Martin-Noble via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 2 10:09:41 PDT 2021
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rG43d9cc1e20ef: [Bazel] Update for Cpp emitter (2f0750dd2e) (authored by GMNGeoffrey).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D109171/new/
https://reviews.llvm.org/D109171
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
@@ -931,6 +931,23 @@
deps = [":EmitCTdFiles"],
)
+cc_library(
+ name = "TargetCpp",
+ srcs = glob([
+ "lib/Target/Cpp/*.cpp",
+ "lib/Target/Cpp/*.h",
+ ]),
+ hdrs = glob(["include/mlir/Target/Cpp/*.h"]),
+ deps = [
+ ":EmitC",
+ ":IR",
+ ":SCFDialect",
+ ":StandardOps",
+ ":Support",
+ ":Translation",
+ ],
+)
+
##---------------------------------------------------------------------------##
# Async dialect.
##---------------------------------------------------------------------------##
@@ -4995,6 +5012,7 @@
deps = [
":FromLLVMIRTranslation",
":SPIRVTranslateRegistration",
+ ":TargetCpp",
":ToLLVMIRTranslationRegistration",
],
)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D109171.370316.patch
Type: text/x-patch
Size: 998 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210902/3d9dd29e/attachment.bin>
More information about the llvm-commits
mailing list