[llvm] Fix bazel build for 8437b7f5. (PR #132046)
James Y Knight via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 08:01:29 PDT 2025
https://github.com/jyknight created https://github.com/llvm/llvm-project/pull/132046
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.
>From 8b5b30e33d977ba263132bedaa4be98d1d429b03 Mon Sep 17 00:00:00 2001
From: James Y Knight <jyknight at google.com>
Date: Wed, 19 Mar 2025 10:34:28 -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..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",
More information about the llvm-commits
mailing list