forked from OSchip/llvm-project
[libc] Add missing sqrt deps for layering checks
This commit is contained in:
parent
746e435ff7
commit
282c83c323
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue