[libc-commits] [libc] 8e28f04 - [libc] Correct the entrypoints list for ARM/darwin (#107331)

via libc-commits libc-commits at lists.llvm.org
Thu Sep 5 09:38:11 PDT 2024


Author: Michael Jones
Date: 2024-09-05T09:38:05-07:00
New Revision: 8e28f0471b20ed1148951bc7ffe5c503c43692ae

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

LOG: [libc] Correct the entrypoints list for ARM/darwin (#107331)

These entrypoints were added to every target without testing. They don't
work on ARM macs.

Added: 
    

Modified: 
    libc/config/darwin/arm/entrypoints.txt

Removed: 
    


################################################################################
diff  --git a/libc/config/darwin/arm/entrypoints.txt b/libc/config/darwin/arm/entrypoints.txt
index 36da9e13136638..a012504daa5c54 100644
--- a/libc/config/darwin/arm/entrypoints.txt
+++ b/libc/config/darwin/arm/entrypoints.txt
@@ -94,16 +94,6 @@ set(TARGET_LIBC_ENTRYPOINTS
     libc.src.stdlib.calloc
     libc.src.stdlib.realloc
     libc.src.stdlib.free
-
-    # stdio.h external entrypoints
-    libc.src.stdio.snprintf
-    libc.src.stdio.sprintf
-    libc.src.stdio.asprintf
-    libc.src.stdio.asprintf
-    libc.src.stdio.vprintf
-    libc.src.stdio.vsnprintf
-    libc.src.stdio.vsprintf
-    libc.src.stdio.vasprintf
 )
 
 set(TARGET_LIBM_ENTRYPOINTS
@@ -148,9 +138,7 @@ set(TARGET_LIBM_ENTRYPOINTS
     libc.src.math.cospif
     libc.src.math.dfmal
     libc.src.math.dsqrtl
-    libc.src.math.daddl
     libc.src.math.ddivl
-    libc.src.math.dsubl
     libc.src.math.erff
     libc.src.math.exp
     libc.src.math.expf


        


More information about the libc-commits mailing list