[llvm] [libc][bazel] Rephrase list comp for downstream (PR #129119)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 13:11:34 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Michael Jones (michaelrj-google)
<details>
<summary>Changes</summary>
The downstream build was having trouble transforming the previous list
comprehension, but it works on this one. I guess it just needs to look
like a proper target.
---
Full diff: https://github.com/llvm/llvm-project/pull/129119.diff
1 Files Affected:
- (modified) utils/bazel/llvm-project-overlay/libc/test/src/stdbit/BUILD.bazel (+4-1)
``````````diff
diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/stdbit/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/test/src/stdbit/BUILD.bazel
index e7ddbdf41e517..b9d153947dc7d 100644
--- a/utils/bazel/llvm-project-overlay/libc/test/src/stdbit/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/test/src/stdbit/BUILD.bazel
@@ -39,7 +39,10 @@ bit_prefix_list = [
libc_test(
name = bit_prefix + bit_suffix + "_test",
srcs = [bit_prefix + bit_suffix + "_test.cpp"],
- libc_function_deps = ["//libc:" + bit_prefix + bit_suffix],
+ libc_function_deps = ["//libc:func_name".replace(
+ "func_name",
+ bit_prefix + bit_suffix,
+ )],
deps = ["//libc:__support_cpp_limits"],
)
for bit_prefix in bit_prefix_list
``````````
</details>
https://github.com/llvm/llvm-project/pull/129119
More information about the llvm-commits
mailing list