Skip to content

Commit 3ea89e0

Browse files
committed
Fix Bazel after 1fbfef9
1 parent 034dd4c commit 3ea89e0

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

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

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5138,19 +5138,23 @@ libc_support_library(
51385138
],
51395139
)
51405140

5141+
libc_support_library(
5142+
name = "scanf_string_reader",
5143+
hdrs = ["src/stdio/scanf_core/string_reader.h"],
5144+
deps = [
5145+
":__support_macros_attributes",
5146+
":scanf_reader",
5147+
],
5148+
)
5149+
51415150
libc_support_library(
51425151
name = "scanf_converter",
51435152
srcs = [
5144-
"src/stdio/scanf_core/converter.cpp",
51455153
"src/stdio/scanf_core/converter_utils.h",
51465154
"src/stdio/scanf_core/current_pos_converter.h",
5147-
"src/stdio/scanf_core/float_converter.cpp",
51485155
"src/stdio/scanf_core/float_converter.h",
5149-
"src/stdio/scanf_core/int_converter.cpp",
51505156
"src/stdio/scanf_core/int_converter.h",
5151-
"src/stdio/scanf_core/ptr_converter.cpp",
51525157
"src/stdio/scanf_core/ptr_converter.h",
5153-
"src/stdio/scanf_core/string_converter.cpp",
51545158
"src/stdio/scanf_core/string_converter.h",
51555159
],
51565160
hdrs = [
@@ -5170,7 +5174,6 @@ libc_support_library(
51705174

51715175
libc_support_library(
51725176
name = "scanf_main",
5173-
srcs = ["src/stdio/scanf_core/scanf_main.cpp"],
51745177
hdrs = ["src/stdio/scanf_core/scanf_main.h"],
51755178
deps = [
51765179
":__support_arg_list",
@@ -5251,7 +5254,7 @@ libc_function(
52515254
":__support_arg_list",
52525255
":__support_file_file",
52535256
":scanf_main",
5254-
":scanf_reader",
5257+
":scanf_string_reader",
52555258
":types_FILE",
52565259
],
52575260
)
@@ -5264,7 +5267,7 @@ libc_function(
52645267
":__support_arg_list",
52655268
":__support_file_file",
52665269
":scanf_main",
5267-
":scanf_reader",
5270+
":scanf_string_reader",
52685271
":types_FILE",
52695272
],
52705273
)

0 commit comments

Comments
 (0)