Skip to content

Commit 92da0ec

Browse files
authored
Fix bazel build issue caused in llvm#166517 (some targets were still failing) (llvm#166737)
1 parent eab4460 commit 92da0ec

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

utils/bazel/llvm-project-overlay/libc/BUILD.bazel

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5281,6 +5281,7 @@ libc_function(
52815281
hdrs = ["src/stdlib/strfromf.h"],
52825282
deps = [
52835283
":__support_common",
5284+
":printf_error_mapper",
52845285
":str_from_util",
52855286
],
52865287
)
@@ -5291,6 +5292,7 @@ libc_function(
52915292
hdrs = ["src/stdlib/strfromd.h"],
52925293
deps = [
52935294
":__support_common",
5295+
":printf_error_mapper",
52945296
":str_from_util",
52955297
],
52965298
)
@@ -5301,6 +5303,7 @@ libc_function(
53015303
hdrs = ["src/stdlib/strfroml.h"],
53025304
deps = [
53035305
":__support_common",
5306+
":printf_error_mapper",
53045307
":str_from_util",
53055308
],
53065309
)
@@ -6526,12 +6529,12 @@ libc_support_library(
65266529
],
65276530
}),
65286531
deps = [
6529-
":hdr_errno_macros",
6530-
":printf_core_structs",
65316532
":__support_cpp_type_traits",
65326533
":__support_error_or",
65336534
":__support_macros_properties_architectures",
6534-
]
6535+
":hdr_errno_macros",
6536+
":printf_core_structs",
6537+
],
65356538
)
65366539

65376540
libc_support_library(

0 commit comments

Comments
 (0)