From b3d238246476ee9bce0cc45b88d4578246362a02 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Thu, 20 Mar 2025 16:25:45 -0700 Subject: [PATCH] [libc][bazel] fix scanf after #131043 The scanf and fscanf implementations were moved into /generic, update the bazel targets. --- utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel index 1bf884a785e64..8ed61d93952cc 100644 --- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel @@ -5203,7 +5203,7 @@ libc_support_library( libc_function( name = "scanf", - srcs = ["src/stdio/scanf.cpp"], + srcs = ["src/stdio/generic/scanf.cpp"], hdrs = ["src/stdio/scanf.h"], deps = [ ":__support_arg_list", @@ -5215,7 +5215,7 @@ libc_function( libc_function( name = "vscanf", - srcs = ["src/stdio/vscanf.cpp"], + srcs = ["src/stdio/generic/vscanf.cpp"], hdrs = ["src/stdio/vscanf.h"], deps = [ ":__support_arg_list", @@ -5227,7 +5227,7 @@ libc_function( libc_function( name = "fscanf", - srcs = ["src/stdio/fscanf.cpp"], + srcs = ["src/stdio/generic/fscanf.cpp"], hdrs = ["src/stdio/fscanf.h"], deps = [ ":__support_arg_list", @@ -5239,7 +5239,7 @@ libc_function( libc_function( name = "vfscanf", - srcs = ["src/stdio/vfscanf.cpp"], + srcs = ["src/stdio/generic/vfscanf.cpp"], hdrs = ["src/stdio/vfscanf.h"], deps = [ ":__support_arg_list",