[libc-commits] [libc] 7e54df6 - [libc] Enable string functions for aarch64.

Siva Chandra via libc-commits libc-commits at lists.llvm.org
Mon Jun 15 09:37:17 PDT 2020


Author: Siva Chandra
Date: 2020-06-15T09:36:40-07:00
New Revision: 7e54df682959abe2fa9497234505cb612b6cb114

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

LOG: [libc] Enable string functions for 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 044b0b5ae0ec..7a615809ed55 100644
--- a/libc/config/linux/aarch64/entrypoints.txt
+++ b/libc/config/linux/aarch64/entrypoints.txt
@@ -3,6 +3,11 @@ set(TARGET_LIBC_ENTRYPOINTS
     libc.src.errno.__errno_location
 
     # string.h entrypoints
+    libc.src.string.bzero
+    libc.src.string.memcpy
+    libc.src.string.memset
+    libc.src.string.strcpy
+    libc.src.string.strcat
     libc.src.string.strlen
 )
 


        


More information about the libc-commits mailing list