[llvm] [libc] Fix bazel build by adding `:wchar_utils` to deps. (PR #151090)

via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 28 23:47:24 PDT 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libc

Author: Ingo Müller (ingomueller-net)

<details>
<summary>Changes</summary>

This was broken by #<!-- -->150661, which added an include to `wcspbrk.cpp` that wasn't in the dependencies of the corresponding target.

---
Full diff: https://github.com/llvm/llvm-project/pull/151090.diff


1 Files Affected:

- (modified) utils/bazel/llvm-project-overlay/libc/BUILD.bazel (+1) 


``````````diff
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",
     ],
 )
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/151090


More information about the llvm-commits mailing list