Skip to content

Commit 379a8d1

Browse files
authored
Fix bazel build for 8437b7f. (#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.
1 parent 1f15252 commit 379a8d1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1591,7 +1591,10 @@ libc_support_library(
15911591

15921592
libc_support_library(
15931593
name = "libc_external_common",
1594-
hdrs = glob(["shared/*.h"]),
1594+
hdrs = glob(
1595+
["shared/*.h"],
1596+
exclude = ["shared/rpc_server.h"],
1597+
),
15951598
deps = [
15961599
":__support_common",
15971600
":__support_fputil_fp_bits",

0 commit comments

Comments
 (0)