[libc-commits] [libc] 75a6289 - [libc] Enable few stdio functions on aarch64.

Siva Chandra via libc-commits libc-commits at lists.llvm.org
Thu Jul 14 13:41:19 PDT 2022


Author: Siva Chandra
Date: 2022-07-14T13:40:48-07:00
New Revision: 75a628925e88c62aa192a0c8ab165b840fc334a6

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

LOG: [libc] Enable few stdio functions 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 134b3c2f5aaf..3913602d6608 100644
--- a/libc/config/linux/aarch64/entrypoints.txt
+++ b/libc/config/linux/aarch64/entrypoints.txt
@@ -221,8 +221,14 @@ set(TARGET_LIBM_ENTRYPOINTS
 if(LLVM_LIBC_FULL_BUILD)
   list(APPEND TARGET_LIBC_ENTRYPOINTS
     # stdio.h entrypoints
+    libc.src.stdio.clearerr
+    libc.src.stdio.clearerr_unlocked
     libc.src.stdio.fclose
     libc.src.stdio.flockfile
+    libc.src.stdio.feof
+    libc.src.stdio.feof_unlocked
+    libc.src.stdio.ferror
+    libc.src.stdio.ferror_unlocked
     libc.src.stdio.fflush
     libc.src.stdio.fopen
     libc.src.stdio.fopencookie
@@ -232,6 +238,12 @@ if(LLVM_LIBC_FULL_BUILD)
     libc.src.stdio.funlockfile
     libc.src.stdio.fwrite
     libc.src.stdio.fwrite_unlocked
+    libc.src.stdio.sprintf
+    libc.src.stdio.snprintf
+    libc.src.stdio.fprintf
+    libc.src.stdio.printf
+    libc.src.stdio.stderr
+    libc.src.stdio.stdout
 
     # threads.h entrypoints
     libc.src.threads.call_once


        


More information about the libc-commits mailing list