Skip to content

Commit

Permalink
[bazel] Fix llvm:Core build (llvm#99054)
Browse files Browse the repository at this point in the history
Summary: According to @akuegel, this breakage was introduced in c05126b.

Test Plan: 

Reviewers: 

Subscribers: 

Tasks: 

Tags: 


Differential Revision: https://phabricator.intern.facebook.com/D59822416
  • Loading branch information
wecing authored and sayhaan committed Jul 16, 2024
1 parent 2485948 commit b46f1b7
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 b46f1b7

Please sign in to comment.