[libc-commits] [libc] b024fd2 - [libc] disable strfroml entrypoint on aarch64 (#101854)

via libc-commits libc-commits at lists.llvm.org
Sat Aug 3 19:28:17 PDT 2024


Author: Schrodinger ZHU Yifan
Date: 2024-08-03T22:28:13-04:00
New Revision: b024fd267b813149f7bd5ba88731673b9a29258d

URL: https://github.com/llvm/llvm-project/commit/b024fd267b813149f7bd5ba88731673b9a29258d
DIFF: https://github.com/llvm/llvm-project/commit/b024fd267b813149f7bd5ba88731673b9a29258d.diff

LOG: [libc] disable strfroml entrypoint on aarch64 (#101854)

Disable `strfroml` entrypoint on aarch64 to please clang-11 buildbots.
Detailed in https://github.com/llvm/llvm-project/issues/101846. This is
not a fix for #101846 so I will keep the issue open until our buildbot
is updated or other mitigation is applied.

Added: 
    

Modified: 
    libc/config/linux/aarch64/entrypoints.txt

Removed: 
    


################################################################################
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