[libc-commits] [libc] 07b7023 - [libc] Enable more entrypoints on aarch64.

Siva Chandra via libc-commits libc-commits at lists.llvm.org
Wed Oct 26 14:12:50 PDT 2022


Author: Siva Chandra
Date: 2022-10-26T14:03:15-07:00
New Revision: 07b70231813af391ef348b98d219e1dcca231700

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

LOG: [libc] Enable more entrypoints on aarch64.

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 7d2571b0a7c6d..51da5f3c899d6 100644
--- a/libc/config/linux/aarch64/entrypoints.txt
+++ b/libc/config/linux/aarch64/entrypoints.txt
@@ -356,8 +356,10 @@ if(LLVM_LIBC_FULL_BUILD)
     libc.src.stdio.feof_unlocked
     libc.src.stdio.ferror
     libc.src.stdio.ferror_unlocked
+    libc.src.stdio.fgetc
     libc.src.stdio.fflush
     libc.src.stdio.fopen
+    libc.src.stdio.fputc
     libc.src.stdio.fputs
     libc.src.stdio.fopencookie
     libc.src.stdio.fread
@@ -368,8 +370,11 @@ if(LLVM_LIBC_FULL_BUILD)
     libc.src.stdio.fwrite_unlocked
     libc.src.stdio.fprintf
     libc.src.stdio.printf
+    libc.src.stdio.putc
+    libc.src.stdio.putchar
     libc.src.stdio.puts
     libc.src.stdio.stderr
+    libc.src.stdio.stdin
     libc.src.stdio.stdout
 
     # stdlib.h entrypoints
@@ -415,12 +420,14 @@ if(LLVM_LIBC_FULL_BUILD)
     # time.h entrypoints
     libc.src.time.asctime
     libc.src.time.asctime_r
+    libc.src.time.clock_gettime
+    libc.src.time.clock
     libc.src.time.
diff time
     libc.src.time.gmtime
     libc.src.time.gmtime_r
     libc.src.time.mktime
     libc.src.time.nanosleep
-    libc.src.time.clock_gettime
+    libc.src.time.time
 
     # unistd.h entrypoints
     libc.src.unistd.environ


        


More information about the libc-commits mailing list