From ebb94ecb95253652afe12d12d7150358f5d63e0e Mon Sep 17 00:00:00 2001 From: Jordan Rupprecht Date: Fri, 3 Mar 2023 12:59:56 -0800 Subject: [PATCH] [bazel] Fix errno dep location: libc_function_deps -> deps --- utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel index 0e6ad6e..23088e3 100644 --- a/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel @@ -51,9 +51,11 @@ libc_test( srcs = ["atof_test.cpp"], libc_function_deps = [ "//libc:atof", + ], + deps = [ + "//libc:__support_fputil_fp_bits", "//libc:errno", ], - deps = ["//libc:__support_fputil_fp_bits"], ) libc_test( -- 2.7.4