[PATCH] D142267: [bazel][libc] fixes

David Blaikie via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 20 19:28:57 PST 2023


dblaikie created this revision.
Herald added subscribers: ecnelises, tschuett.
Herald added a project: All.
This revision was not accepted when it landed; it landed in state "Draft".
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe1326d14f1b7: [bazel][libc] fixes (authored by dblaikie).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D142267

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
@@ -241,6 +241,7 @@
     name = "__support_str_to_integer",
     hdrs = ["src/__support/str_to_integer.h"],
     deps = [
+        ":__support_common",
         ":__support_cpp_limits",
         ":__support_ctype_utils",
         ":__support_str_to_num_result",
@@ -348,6 +349,7 @@
     hdrs = ["src/__support/FPUtil/Hypot.h"],
     deps = [
         ":__support_builtin_wrappers",
+        ":__support_common",
         ":__support_cpp_bit",
         ":__support_cpp_type_traits",
         ":__support_fputil_basic_operations",
@@ -379,6 +381,7 @@
     name = "__support_fputil_nearest_integer_operations",
     hdrs = ["src/__support/FPUtil/NearestIntegerOperations.h"],
     deps = [
+        ":__support_common",
         ":__support_cpp_type_traits",
         ":__support_fputil_fenv_impl",
         ":__support_fputil_fp_bits",
@@ -483,6 +486,7 @@
         "src/__support/FPUtil/PolyEval.h",
     ],
     deps = [
+        ":__support_common",
         ":__support_fputil_multiply_add",
     ],
 )


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D142267.491018.patch
Type: text/x-patch
Size: 1237 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230121/c2026194/attachment.bin>


More information about the llvm-commits mailing list