Statically link MSVC runtime, removing the need to install the redistributable.

This commit is contained in:
Kevin Nakamura 2025-07-05 07:13:16 +09:00
parent a83a6b5928
commit 84d59ff9a6
No known key found for this signature in database
GPG key ID: 8CBF0A1C58E5523E

View file

@ -10,3 +10,6 @@ PYTHONDONTWRITEBYTECODE = "1" # prevent junk files on Windows
[term] [term]
color = "always" color = "always"
[target.'cfg(all(target_env = "msvc", target_os = "windows"))']
rustflags = ["-C", "target-feature=+crt-static"]