[llvm] More bazel fixes past 72ce6294157964042b7ed5576ce2c99257eeea9d (PR #79442)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 25 05:09:41 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Danial Klimkin (dklimkin)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/79442.diff
2 Files Affected:
- (modified) utils/bazel/llvm-project-overlay/libc/BUILD.bazel (+2)
- (modified) utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel (+1)
``````````diff
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index 3ffe6f1e1a37829..ff9219a72dae15b 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -592,6 +592,7 @@ libc_support_library(
name = "__support_math_extras",
hdrs = ["src/__support/math_extras.h"],
deps = [
+ ":__support_cpp_limits",
":__support_cpp_type_traits",
":__support_macros_attributes",
":__support_macros_config",
@@ -709,6 +710,7 @@ libc_support_library(
deps = [
":__support_common",
":__support_cpp_bit",
+ ":__support_cpp_limits",
":__support_cpp_type_traits",
":__support_fputil_fp_bits",
":__support_fputil_nearest_integer_operations",
diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel
index 3e746a908c9002f..b34e281ce0ecd68 100644
--- a/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel
@@ -60,6 +60,7 @@ libc_support_library(
name = "atoi_test_helper",
hdrs = ["AtoiTest.h"],
deps = [
+ "//libc:__support_cpp_limits",
"//libc:__support_cpp_type_traits",
"//libc/test/UnitTest:LibcUnitTest",
],
``````````
</details>
https://github.com/llvm/llvm-project/pull/79442
More information about the llvm-commits
mailing list