[llvm] Fix bazel build issue caused in #166517 (some targets were still failing) (PR #166737)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 6 02:11:48 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Karlo Basioli (basioli-k)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/166737.diff
1 Files Affected:
- (modified) utils/bazel/llvm-project-overlay/libc/BUILD.bazel (+6-3)
``````````diff
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index b11d1464eb035..ecd11b91d0d86 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -5281,6 +5281,7 @@ libc_function(
hdrs = ["src/stdlib/strfromf.h"],
deps = [
":__support_common",
+ ":printf_error_mapper",
":str_from_util",
],
)
@@ -5291,6 +5292,7 @@ libc_function(
hdrs = ["src/stdlib/strfromd.h"],
deps = [
":__support_common",
+ ":printf_error_mapper",
":str_from_util",
],
)
@@ -5301,6 +5303,7 @@ libc_function(
hdrs = ["src/stdlib/strfroml.h"],
deps = [
":__support_common",
+ ":printf_error_mapper",
":str_from_util",
],
)
@@ -6526,12 +6529,12 @@ libc_support_library(
],
}),
deps = [
- ":hdr_errno_macros",
- ":printf_core_structs",
":__support_cpp_type_traits",
":__support_error_or",
":__support_macros_properties_architectures",
- ]
+ ":hdr_errno_macros",
+ ":printf_core_structs",
+ ],
)
libc_support_library(
``````````
</details>
https://github.com/llvm/llvm-project/pull/166737
More information about the llvm-commits
mailing list