[libc-commits] [libc] 3f52871 - [libc] Add stdio entrypoints to aarch64 fullbuild.

Siva Chandra via libc-commits libc-commits at lists.llvm.org
Tue Apr 26 00:27:10 PDT 2022


Author: Siva Chandra
Date: 2022-04-26T00:25:12-07:00
New Revision: 3f5287125a6f6d3c2c52bb78aaaa3b95f7dee587

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

LOG: [libc] Add stdio entrypoints to aarch64 fullbuild.

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 eaedb4237ed15..1b17b76c979dc 100644
--- a/libc/config/linux/aarch64/entrypoints.txt
+++ b/libc/config/linux/aarch64/entrypoints.txt
@@ -215,6 +215,19 @@ set(TARGET_LIBM_ENTRYPOINTS
 
 if(LLVM_LIBC_FULL_BUILD)
   list(APPEND TARGET_LIBC_ENTRYPOINTS
+    # stdio.h entrypoints
+    libc.src.stdio.fclose
+    libc.src.stdio.flockfile
+    libc.src.stdio.fflush
+    libc.src.stdio.fopen
+    libc.src.stdio.fopencookie
+    libc.src.stdio.fread
+    libc.src.stdio.fread_unlocked
+    libc.src.stdio.fseek
+    libc.src.stdio.funlockfile
+    libc.src.stdio.fwrite
+    libc.src.stdio.fwrite_unlocked
+
     # threads.h entrypoints
     libc.src.threads.call_once
     libc.src.threads.cnd_broadcast


        


More information about the libc-commits mailing list