Skip to content

Commit

Permalink
fix: correct target names in config.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dhrdlicka authored Nov 29, 2024
1 parent a40a2d2 commit d199a1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[target.i686-pc-windows-msvc]
rustflags="-C target-feature=+crt-static"

[target.x86-64-pc-windows-msvc]
[target.x86_64-pc-windows-msvc]
rustflags="-C target-feature=+crt-static"

[target.i686-pc-windows-gnu]
rustflags="-C target-feature=+crt-static"

[target.x86-64-pc-windows-gnu]
rustflags="-C target-feature=+crt-static"
[target.x86_64-pc-windows-gnu]
rustflags="-C target-feature=+crt-static"

0 comments on commit d199a1b

Please sign in to comment.