[libc-commits] [libc] 9345b59 - [libc][NFC] Turn off faccessat on aarch64 (#161740)
via libc-commits
libc-commits at lists.llvm.org
Thu Oct 2 15:22:18 PDT 2025
Author: Michael Jones
Date: 2025-10-02T15:22:15-07:00
New Revision: 9345b597e90ad99dbe2749cbb20692c0c881fd71
URL: https://github.com/llvm/llvm-project/commit/9345b597e90ad99dbe2749cbb20692c0c881fd71
DIFF: https://github.com/llvm/llvm-project/commit/9345b597e90ad99dbe2749cbb20692c0c881fd71.diff
LOG: [libc][NFC] Turn off faccessat on aarch64 (#161740)
The SYS_faccessat2 syscall isn't available on the aarch64 buildbot, so
disable this entrypoint for now.
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 cfb77911f3c2d..4824684103983 100644
--- a/libc/config/linux/aarch64/entrypoints.txt
+++ b/libc/config/linux/aarch64/entrypoints.txt
@@ -325,7 +325,8 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.unistd.dup2
libc.src.unistd.dup3
libc.src.unistd.execve
- libc.src.unistd.faccessat
+ # Disabled while SYS_faccessat2 is unavailable on the buildbot.
+ # libc.src.unistd.faccessat
libc.src.unistd.fchdir
libc.src.unistd.fpathconf
libc.src.unistd.fsync
More information about the libc-commits
mailing list