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

James Y Knight via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 08:05:38 PDT 2025


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

>From 1367833ccaee963cb4b4afb4b17367ac08792bcb Mon Sep 17 00:00:00 2001
From: James Y Knight <jyknight at google.com>
Date: Wed, 19 Mar 2025 11:05:26 -0400
Subject: [PATCH] Fix bazel build for 8437b7f5.

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.
---
 utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index f3620186d776f..1bf884a785e64 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",



More information about the llvm-commits mailing list