Skip to content

Commit fe6bced

Browse files
[libc][bazel] fix scanf after #131043 (#132305)
The scanf and fscanf implementations were moved into /generic, update the bazel targets.
1 parent f25185b commit fe6bced

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5203,7 +5203,7 @@ libc_support_library(
52035203

52045204
libc_function(
52055205
name = "scanf",
5206-
srcs = ["src/stdio/scanf.cpp"],
5206+
srcs = ["src/stdio/generic/scanf.cpp"],
52075207
hdrs = ["src/stdio/scanf.h"],
52085208
deps = [
52095209
":__support_arg_list",
@@ -5215,7 +5215,7 @@ libc_function(
52155215

52165216
libc_function(
52175217
name = "vscanf",
5218-
srcs = ["src/stdio/vscanf.cpp"],
5218+
srcs = ["src/stdio/generic/vscanf.cpp"],
52195219
hdrs = ["src/stdio/vscanf.h"],
52205220
deps = [
52215221
":__support_arg_list",
@@ -5227,7 +5227,7 @@ libc_function(
52275227

52285228
libc_function(
52295229
name = "fscanf",
5230-
srcs = ["src/stdio/fscanf.cpp"],
5230+
srcs = ["src/stdio/generic/fscanf.cpp"],
52315231
hdrs = ["src/stdio/fscanf.h"],
52325232
deps = [
52335233
":__support_arg_list",
@@ -5239,7 +5239,7 @@ libc_function(
52395239

52405240
libc_function(
52415241
name = "vfscanf",
5242-
srcs = ["src/stdio/vfscanf.cpp"],
5242+
srcs = ["src/stdio/generic/vfscanf.cpp"],
52435243
hdrs = ["src/stdio/vfscanf.h"],
52445244
deps = [
52455245
":__support_arg_list",

0 commit comments

Comments
 (0)