diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2023-11-20 06:32:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 06:32:29 +0000 |
commit | 2166d923f40b218bc565e0e3ddee887a008a7f53 (patch) | |
tree | a58c40077fed14fd9670b0d89a571b62ff79a0c2 /.cargo | |
parent | Better help for -u (diff) | |
parent | Add i686-pc-windows-msvc target (diff) | |
download | miniserve-2166d923f40b218bc565e0e3ddee887a008a7f53.tar.gz miniserve-2166d923f40b218bc565e0e3ddee887a008a7f53.zip |
Merge pull request #1273 from svenstaro/32bit-windows
Add i686-pc-windows-msvc target
Diffstat (limited to '')
-rw-r--r-- | .cargo/config.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index ac2b23f..7e766c3 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,5 @@ [target.x86_64-pc-windows-msvc] rustflags = ["-C", "target-feature=+crt-static"] + +[target.i686-pc-windows-msvc] +rustflags = ["-C", "target-feature=+crt-static"] |