Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 282c83c

Browse files
committed
[libc] Add missing sqrt deps for layering checks
1 parent 746e435 commit 282c83c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

utils/bazel/llvm-project-overlay/libc/BUILD.bazel

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ cc_library(
124124
name = "__support_fputil_sqrt",
125125
hdrs = sqrt_hdrs,
126126
deps = [
127+
":__support_common",
127128
":__support_fputil",
129+
":__support_standalone_cpp",
128130
":libc_root",
129131
],
130132
)
@@ -463,21 +465,21 @@ libc_math_function(
463465
name = "sqrt",
464466
additional_deps = [
465467
":__support_fputil_sqrt",
466-
]
468+
],
467469
)
468470

469471
libc_math_function(
470472
name = "sqrtf",
471473
additional_deps = [
472474
":__support_fputil_sqrt",
473-
]
475+
],
474476
)
475477

476478
libc_math_function(
477479
name = "sqrtl",
478480
additional_deps = [
479481
":__support_fputil_sqrt",
480-
]
482+
],
481483
)
482484

483485
libc_math_function(name = "copysign")

0 commit comments

Comments
 (0)