[PATCH] D142158: [Bazel] Fix layering issues

Geoffrey Martin-Noble via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 19 14:27:35 PST 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG6b43568ff83f: [Bazel] Fix layering issues (authored by GMNGeoffrey).

Repository:
  rG LLVM Github Monorepo

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

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.490660.patch
Type: text/x-patch
Size: 1404 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230119/f69d1f34/attachment.bin>


More information about the llvm-commits mailing list