Futex is not available with musl libc.
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
What does the Linux syscall have to do with MUSL?
Is the C library calling dibs on the entire platform?
Comment Actions
The build actually fails because of "#include <linux/futex.h>". Musl does not have this header file and the build fails with a missing header file error.
Comment Actions
You are right! This is actually from the linux kernel and not from glibc or musl. Thanks for pointing this out.