[llvm] [libc] Fix bazel build by build by adding missing deps. (PR #151093)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 29 00:07:00 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Ingo Müller (ingomueller-net)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/151093.diff
1 Files Affected:
- (modified) utils/bazel/llvm-project-overlay/libc/BUILD.bazel (+2)
``````````diff
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",
],
)
``````````
</details>
https://github.com/llvm/llvm-project/pull/151093
More information about the llvm-commits
mailing list