Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAlina Sbirlea <asbirlea@google.com>2022-02-17 03:28:05 +0300
committerAlina Sbirlea <asbirlea@google.com>2022-02-17 04:15:45 +0300
commit21aaa1fb22db892f4deedac98af12c03fb870d85 (patch)
treeed4e1d59d84adeea4dfb316faf12469bb7743bcd /utils
parent69297cf639044acf48dd5d9b39b95c54dd50561d (diff)
[bazel] Add libc dependency.
Diffstat (limited to 'utils')
-rw-r--r--utils/bazel/llvm-project-overlay/libc/BUILD.bazel7
1 files changed, 6 insertions, 1 deletions
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index f4b5d3747ed3..632cf987441e 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")