File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
utils/bazel/llvm-project-overlay/libc Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,9 @@ cc_library(
124
124
name = "__support_fputil_sqrt" ,
125
125
hdrs = sqrt_hdrs ,
126
126
deps = [
127
+ ":__support_common" ,
127
128
":__support_fputil" ,
129
+ ":__support_standalone_cpp" ,
128
130
":libc_root" ,
129
131
],
130
132
)
@@ -463,21 +465,21 @@ libc_math_function(
463
465
name = "sqrt" ,
464
466
additional_deps = [
465
467
":__support_fputil_sqrt" ,
466
- ]
468
+ ],
467
469
)
468
470
469
471
libc_math_function (
470
472
name = "sqrtf" ,
471
473
additional_deps = [
472
474
":__support_fputil_sqrt" ,
473
- ]
475
+ ],
474
476
)
475
477
476
478
libc_math_function (
477
479
name = "sqrtl" ,
478
480
additional_deps = [
479
481
":__support_fputil_sqrt" ,
480
- ]
482
+ ],
481
483
)
482
484
483
485
libc_math_function (name = "copysign" )
You can’t perform that action at this time.
0 commit comments