Skip to content

Commit

Permalink
[bazel] Fix llvm:Core build (llvm#99054)
Browse files Browse the repository at this point in the history
According to @akuegel, this breakage was introduced in c05126b.
  • Loading branch information
wecing authored Jul 16, 2024
1 parent 74b87b0 commit 5b54f36
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,14 @@ cc_library(
]) + [
# To avoid a dependency cycle.
"include/llvm/Analysis/IVDescriptors.h",
],
"include/llvm/CodeGen/GenVT.inc",
] + glob(
# To avoid a dependency cycle.
[
"include/llvm/CodeGen/**/*.h",
"include/llvm/CodeGenTypes/**/*.h",
],
),
hdrs = glob(
[
"include/llvm/*.h",
Expand Down

0 comments on commit 5b54f36

Please sign in to comment.