[libc-commits] [libc] [libc] [NFC] disable strfroml entrypoint on aarch64 (PR #101854)
via libc-commits
libc-commits at lists.llvm.org
Sat Aug 3 16:41:12 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Schrodinger ZHU Yifan (SchrodingerZhu)
<details>
<summary>Changes</summary>
Disable strfroml entrypoint on aarch64 to please clang-11 buildbots
---
Full diff: https://github.com/llvm/llvm-project/pull/101854.diff
1 Files Affected:
- (modified) libc/config/linux/aarch64/entrypoints.txt (+2-1)
``````````diff
diff --git a/libc/config/linux/aarch64/entrypoints.txt b/libc/config/linux/aarch64/entrypoints.txt
index 6a23ecbfa784b..dff8f25142dd9 100644
--- a/libc/config/linux/aarch64/entrypoints.txt
+++ b/libc/config/linux/aarch64/entrypoints.txt
@@ -189,7 +189,8 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.stdlib.srand
libc.src.stdlib.strfromd
libc.src.stdlib.strfromf
- libc.src.stdlib.strfroml
+ # TODO: long double support is buggy with clang-11. Re-enable when buildbots are upgraded.
+ # libc.src.stdlib.strfroml
libc.src.stdlib.strtod
libc.src.stdlib.strtof
libc.src.stdlib.strtol
``````````
</details>
https://github.com/llvm/llvm-project/pull/101854
More information about the libc-commits
mailing list