diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2023-11-20 04:43:36 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2023-11-20 06:00:55 +0000 |
commit | 1dcdd0efb1a44c9879a023aa27a8f2c26c2953aa (patch) | |
tree | a58c40077fed14fd9670b0d89a571b62ff79a0c2 | |
parent | Better help for -u (diff) | |
download | miniserve-1dcdd0efb1a44c9879a023aa27a8f2c26c2953aa.tar.gz miniserve-1dcdd0efb1a44c9879a023aa27a8f2c26c2953aa.zip |
Add i686-pc-windows-msvc target
Fixes #1272.
-rw-r--r-- | .cargo/config.toml | 3 | ||||
-rw-r--r-- | .github/workflows/build-release.yml | 4 |
2 files changed, 7 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"] diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 9fde896..c8c461f 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -55,6 +55,10 @@ jobs: target: x86_64-pc-windows-msvc compress: true cargo_flags: "" + - os: windows-latest + target: i686-pc-windows-msvc + compress: true + cargo_flags: "" - os: macos-latest target: x86_64-apple-darwin compress: true |