[libc-commits] [PATCH] D158877: [libc][bazel] Add missing triple_double header and target to bazel overlay.
Tue Ly via Phabricator via libc-commits
libc-commits at lists.llvm.org
Fri Aug 25 12:22:23 PDT 2023
lntue created this revision.
lntue added reviewers: sivachandra, brooksmoses.
Herald added a project: All.
lntue requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Add missing triple_double header and target to bazel overlay.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D158877
Files:
utils/bazel/llvm-project-overlay/libc/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/libc/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -832,6 +832,15 @@
],
)
+libc_support_library(
+ name = "__support_fputil_triple_double",
+ hdrs = ["src/__support/FPUtil/triple_double.h"],
+ deps = [
+ ":__support_common",
+ ":libc_root",
+ ],
+)
+
libc_support_library(
name = "__support_fputil_dyadic_float",
hdrs = ["src/__support/FPUtil/dyadic_float.h"],
@@ -1106,6 +1115,7 @@
srcs = ["src/math/generic/common_constants.cpp"],
hdrs = ["src/math/generic/common_constants.h"],
deps = [
+ ":__support_fputil_triple_double",
":__support_number_pair",
":libc_root",
],
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D158877.553574.patch
Type: text/x-patch
Size: 845 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230825/7f926f77/attachment.bin>
More information about the libc-commits
mailing list