[PATCH] D142158: [Bazel] Fix layering issues
Geoffrey Martin-Noble via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 19 14:03:19 PST 2023
GMNGeoffrey created this revision.
GMNGeoffrey added reviewers: rupprecht, MaskRay.
Herald added a project: All.
GMNGeoffrey requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
These are caught by clang-16, which we're using in our project.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D142158
Files:
utils/bazel/llvm-project-overlay/lld/BUILD.bazel
utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
@@ -1148,6 +1148,7 @@
":BinaryFormat",
":BitWriter",
":Core",
+ ":ProfileData",
":Support",
":Target",
":config",
@@ -1628,6 +1629,7 @@
":DebugInfoDWARF",
":IPO",
":Instrumentation",
+ ":IRPrinter",
":MC",
":MCParser",
":ProfileData",
@@ -1654,6 +1656,7 @@
],
copts = llvm_copts,
deps = [
+ ":BinaryFormat",
":MC",
":Support",
":config",
Index: utils/bazel/llvm-project-overlay/lld/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/lld/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/lld/BUILD.bazel
@@ -47,6 +47,8 @@
":vcs_version",
"//llvm:CodeGen",
"//llvm:Core",
+ "//llvm:DebugInfoDWARF",
+ "//llvm:IRPrinter",
"//llvm:Option",
"//llvm:Support",
"//llvm:Target",
@@ -265,6 +267,7 @@
"//llvm:Core",
"//llvm:Demangle",
"//llvm:LTO",
+ "//llvm:MC",
"//llvm:Object",
"//llvm:Option",
"//llvm:Support",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D142158.490656.patch
Type: text/x-patch
Size: 1404 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230119/deacf2fb/attachment.bin>
More information about the llvm-commits
mailing list