[libc] Add missing sqrt deps for layering checks

This commit is contained in:
Jordan Rupprecht 2022-01-28 12:07:19 -08:00
parent 746e435ff7
commit 282c83c323
1 changed files with 5 additions and 3 deletions

View File

@ -124,7 +124,9 @@ cc_library(
name = "__support_fputil_sqrt",
hdrs = sqrt_hdrs,
deps = [
":__support_common",
":__support_fputil",
":__support_standalone_cpp",
":libc_root",
],
)
@ -463,21 +465,21 @@ libc_math_function(
name = "sqrt",
additional_deps = [
":__support_fputil_sqrt",
]
],
)
libc_math_function(
name = "sqrtf",
additional_deps = [
":__support_fputil_sqrt",
]
],
)
libc_math_function(
name = "sqrtl",
additional_deps = [
":__support_fputil_sqrt",
]
],
)
libc_math_function(name = "copysign")