Hello!
I'm trying to run Rust programs of any size (shell, editor, or small CLI tool) on Buildroot. Currently, I'm encountering an issue where the required version of libc.so.6
is not available. Here's the error I'm seeing:
#> nu
/> echo "This is nushell, so Rust stuff works, but why not regular Linux binaries from a Rust program?"
/> brush
brush: /lib64/libc.so.6: version `GLIBC_2.39' not found (required by brush)
/> ox
ox: /lib64/libc.so.6: version `GLIBC_2.39' not found (required by ox)
/> livedisplay
livedisplay: /lib64/libc.so.6: version `GLIBC_2.39' not found (required by livedisplay)
/>
How can I resolve this issue?
Thank you!