[llvm] [libc] Fix bazel build by build by adding missing deps. (PR #151093)
Ingo Müller via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 29 00:06:26 PDT 2025
https://github.com/ingomueller-net created https://github.com/llvm/llvm-project/pull/151093
This adds two dependencies that I wanted to be part of #151090 but forgot to add them before the last push, which related to `wcschr.cpp` and were originally broken by #150661.
>From eacdb6d9ba1b35b661c7e5cc111ad9bb21d088a4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ingo=20M=C3=BCller?= <ingomueller at google.com>
Date: Tue, 29 Jul 2025 07:56:38 +0100
Subject: [PATCH] [libc] Fix bazel build by build by adding missing deps.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This adds two dependencies that I wanted to be part of #151090 but
forgot to add them before the last push, which related to
`wcschr.cpp` and were originally broken by #150661.
Signed-off-by: Ingo Müller <ingomueller at google.com>
---
utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 2 ++
1 file changed, 2 insertions(+)
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index d9e0110c437a6..e06110a75e771 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -6252,7 +6252,9 @@ libc_function(
deps = [
":__support_common",
":__support_macros_config",
+ ":__support_macros_null_check",
":types_wchar_t",
+ ":wchar_utils",
],
)
More information about the llvm-commits
mailing list