[llvm] Fix bazel build for 8437b7f5. (PR #132046)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 08:02:20 PDT 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libc

Author: James Y Knight (jyknight)

<details>
<summary>Changes</summary>

When using parse_headers validation, rpc_server.h fails to build, since we don't expose any of the RPC deps in the Bazel build.

So at least for now, just exclude it.

---
Full diff: https://github.com/llvm/llvm-project/pull/132046.diff


1 Files Affected:

- (modified) utils/bazel/llvm-project-overlay/libc/BUILD.bazel (+4-1) 


``````````diff
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index f3620186d776f..cae1202ec9f39 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -1591,7 +1591,10 @@ libc_support_library(
 
 libc_support_library(
     name = "libc_external_common",
-    hdrs = glob(["shared/*.h"]),
+    hdrs = glob(
+        ["shared/*.h"],
+        exclude = ["shared/rpc-server.h"],
+    ),
     deps = [
         ":__support_common",
         ":__support_fputil_fp_bits",

``````````

</details>


https://github.com/llvm/llvm-project/pull/132046


More information about the llvm-commits mailing list