[PATCH] D111974: Fix bazel build.
Adrian Kuegel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 18 00:47:02 PDT 2021
akuegel updated this revision to Diff 380289.
akuegel added a comment.
Second attempt.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111974/new/
https://reviews.llvm.org/D111974
Files:
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
@@ -174,7 +174,10 @@
"lib/Support/*.cpp",
"lib/Support/*.h",
"lib/Support/*.inc",
- ]) + select({
+ ]) + [
+ # To avoid a dependency cycle.
+ "include/llvm/Option/ArgList.h",
+ ] + select({
"@bazel_tools//src/conditions:windows": glob([
"lib/Support/Windows/*.h",
"lib/Support/Windows/*.inc",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111974.380289.patch
Type: text/x-patch
Size: 611 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211018/f24d29fe/attachment.bin>
More information about the llvm-commits
mailing list