From edbe9de3cbaf2660bbb22283bf38844df2cf90d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20M=C3=BCller?= 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 --- 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", ], )