[libc-commits] [libc] [libc][NFC] Turn off faccessat on aarch64 (PR #161740)
via libc-commits
libc-commits at lists.llvm.org
Thu Oct 2 14:45:15 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Michael Jones (michaelrj-google)
<details>
<summary>Changes</summary>
The SYS_faccessat2 syscall isn't available on the aarch64 buildbot, so
disable this entrypoint for now.
---
Full diff: https://github.com/llvm/llvm-project/pull/161740.diff
1 Files Affected:
- (modified) libc/config/linux/aarch64/entrypoints.txt (+2-1)
``````````diff
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
``````````
</details>
https://github.com/llvm/llvm-project/pull/161740
More information about the libc-commits
mailing list