[llvm] [libc] Fix bazel build by adding `:wchar_utils` to deps. (PR #151090)
Ingo Müller via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 28 23:51:15 PDT 2025
https://github.com/ingomueller-net updated https://github.com/llvm/llvm-project/pull/151090
>From edbe9de3cbaf2660bbb22283bf38844df2cf90d1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ingo=20M=C3=BCller?= <ingomueller at google.com>
Date: Tue, 29 Jul 2025 06:42:22 +0000
Subject: [PATCH] [libc] Fix bazel build by adding missing deps.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This was broken by #150661, which added includes to `wcspbrk.cpp` and
`wcschr.cpp` that weren't in the dependencies of the corresponding
targets.
Signed-off-by: Ingo Müller <ingomueller at google.com>
---
utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 1 +
1 file changed, 1 insertion(+)
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index 0e40d92cb5c97..d9e0110c437a6 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -6379,6 +6379,7 @@ libc_function(
":__support_common",
":__support_macros_null_check",
":types_wchar_t",
+ ":wchar_utils",
],
)
More information about the llvm-commits
mailing list