[libc-commits] [libc] 3f74032 - [libc] remove getauxval from arm32 entrypoint list (#79093)

via libc-commits libc-commits at lists.llvm.org
Mon Jan 22 21:56:44 PST 2024


Author: Schrodinger ZHU Yifan
Date: 2024-01-23T00:56:40-05:00
New Revision: 3f740322c5b9b7d6f45a73d2fac948df3c74a3a7

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

LOG: [libc] remove getauxval from arm32 entrypoint list (#79093)

`getauxval` depends on `open/read/close` which are not built on arm32.
Remove `getauxval` for now.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/libc/config/linux/arm/entrypoints.txt b/libc/config/linux/arm/entrypoints.txt
index 301870d337ca007..c75ac2302d4ac45 100644
--- a/libc/config/linux/arm/entrypoints.txt
+++ b/libc/config/linux/arm/entrypoints.txt
@@ -95,9 +95,6 @@ set(TARGET_LIBC_ENTRYPOINTS
 
     # sys/prctl.h entrypoints
     libc.src.sys.prctl.prctl
-
-    # sys/auxv.h entrypoints
-    libc.src.sys.auxv.getauxval
 )
 
 set(TARGET_LIBM_ENTRYPOINTS


        


More information about the libc-commits mailing list