Currently, the pre-built Rust/musl toolchain links against libgcc_s and libstdc++ dynamically, with an assumption that these libraries would be present in any Linux distro. This assumtion is wrong, and causes all sorts of pain for users who don't have those, for example on distro's that use toolchains other than GCC (LLVM, Zig etc.).
Request: provide pre-built Rust/musl toolchains with libgcc_s and libstdc++ compiled in statically. Or better yet, compile those toolchains against static compiler_rt and libc++.
Currently, the pre-built Rust/musl toolchain links against
libgcc_sandlibstdc++dynamically, with an assumption that these libraries would be present in any Linux distro. This assumtion is wrong, and causes all sorts of pain for users who don't have those, for example on distro's that use toolchains other than GCC (LLVM, Zig etc.).Request: provide pre-built Rust/musl toolchains with
libgcc_sandlibstdc++compiled in statically. Or better yet, compile those toolchains against staticcompiler_rtandlibc++.