From 21aaa1fb22db892f4deedac98af12c03fb870d85 Mon Sep 17 00:00:00 2001 From: Alina Sbirlea Date: Wed, 16 Feb 2022 16:28:05 -0800 Subject: [PATCH] [bazel] Add libc dependency. --- utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel index f4b5d37..632cf98 100644 --- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel @@ -400,7 +400,12 @@ libc_math_function(name = "frexpl") libc_math_function(name = "hypot") -libc_math_function(name = "hypotf") +libc_math_function( + name = "hypotf", + additional_deps = [ + ":__support_fputil_sqrt", + ], +) libc_math_function(name = "logb") -- 2.7.4