[libc-commits] [libc] [libc] [NFC] disable strfroml entrypoint on aarch64 (PR #101854)
Schrodinger ZHU Yifan via libc-commits
libc-commits at lists.llvm.org
Sat Aug 3 16:40:43 PDT 2024
https://github.com/SchrodingerZhu created https://github.com/llvm/llvm-project/pull/101854
None
>From 92fa72c586fe38e52945d99ac236cbdb685dee5b Mon Sep 17 00:00:00 2001
From: Schrodinger ZHU Yifan <i at zhuyi.fan>
Date: Sat, 3 Aug 2024 16:39:52 -0700
Subject: [PATCH] [libc] [NFC] disable strfroml entrypoint on aarch64
---
libc/config/linux/aarch64/entrypoints.txt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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
More information about the libc-commits
mailing list