Skip to content

Commit 5b54f36

Browse files
authored
[bazel] Fix llvm:Core build (#99054)
According to @akuegel, this breakage was introduced in c05126b.
1 parent 74b87b0 commit 5b54f36

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

utils/bazel/llvm-project-overlay/llvm/BUILD.bazel

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,14 @@ cc_library(
947947
]) + [
948948
# To avoid a dependency cycle.
949949
"include/llvm/Analysis/IVDescriptors.h",
950-
],
950+
"include/llvm/CodeGen/GenVT.inc",
951+
] + glob(
952+
# To avoid a dependency cycle.
953+
[
954+
"include/llvm/CodeGen/**/*.h",
955+
"include/llvm/CodeGenTypes/**/*.h",
956+
],
957+
),
951958
hdrs = glob(
952959
[
953960
"include/llvm/*.h",

0 commit comments

Comments
 (0)