rustzx
rustzx copied to clipboard
Static binaries
Produce static binaries for:
- [ ] Windows (Link with static runtime libraries)
- Implementation tip: set
target-feature=+crt-static
rustc flag during compilation
- Implementation tip: set
- [ ] Linux
- Implementation tips:
- Use
x86_64-unknown-linux-musl
target - Check that binary is statically linked via
ldd
- Use
- Implementation tips: