You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many versions of enterprise Linux lack an up-to-date glibc version, which results in the following (this is a CentOS 7.x machine):
% ./csvlens
./csvlens: /lib64/libm.so.6: version `GLIBC_2.29' not found (required by ./csvlens)
./csvlens: /lib64/libc.so.6: version `GLIBC_2.28' not found (required by ./csvlens)
./csvlens: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by ./csvlens)
./csvlens: /lib64/libc.so.6: version `GLIBC_2.25' not found (required by ./csvlens)
./csvlens: /lib64/libc.so.6: version `GLIBC_2.29' not found (required by ./csvlens)
Many of the rust-based command line staples like bat or eza make a musl targeted build available in releases, which does not depend on glibc, and thus is compatible with RHEL7-like machines.
Having such a release would be lovely.
I tried building v0.9.1 on my machine and it was literally just adding the x86_64-unknown-linux-musl as a target. None of the dependencies seem to have caused any issues.
Greetings,
Many versions of enterprise Linux lack an up-to-date glibc version, which results in the following (this is a CentOS 7.x machine):
Many of the rust-based command line staples like
bat
oreza
make amusl
targeted build available in releases, which does not depend on glibc, and thus is compatible with RHEL7-like machines.Having such a release would be lovely.
I tried building v0.9.1 on my machine and it was literally just adding the
x86_64-unknown-linux-musl
as a target. None of the dependencies seem to have caused any issues.In that same CentOS 7.x host, this build of csvlens works.
The text was updated successfully, but these errors were encountered: