-
Notifications
You must be signed in to change notification settings - Fork 8
Description
atch does not work on RHEL 9.7
Environment: RHEL 9.7, x86_64
Steps to reproduce:
git clone https://github.com/mobydeck/atch
cd atch
dnf install glibc-static # required to build
make
./atch --helpExpected behavior: Help text is displayed.
Actual behavior: The process is immediately killed:
[1] Killed ./atch --helpRunning under strace shows:
execve("./atch", ["./atch", "--help"], ...) = -1 EACCES (Permission denied)SELinux is disabled on this system, so that is not the cause. No stale atch processes were running. The binary appears to compile successfully (with the expected getpwuid static linking warning), but cannot be executed.
Note: building also requires glibc-static, which is not mentioned in the README and needs the CodeReady Linux Builder repo enabled on RHEL 9.
Additional notes: The README mentions Alpine-based Docker builds — it may be that static builds against glibc are not well supported on RHEL/rpm-based distros. A note in the README about supported build platforms might be helpful.
Thank you.