rschmitt / heatseeker

A high-performance Selecta clone, written in Rust.
MIT License
214 stars 10 forks source link

Statically link to the CRT of MSVC #45

Open mardukbp opened 3 years ago

mardukbp commented 3 years ago

Currently heatseeker.exe is dynamically linked with vcruntime140.dll, which is not bundled with Windows. This can be avoided compiling with

set RUSTFLAGS=-C target-feature=+crt-static
cargo build --release