Skip to content

Commit

Permalink
feat: increase windows stack size to 8mb (fixes #87)
Browse files Browse the repository at this point in the history
  • Loading branch information
InioX committed Jul 1, 2024
1 parent 7ea9a75 commit 2508098
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 64 bit MSVC
[target.x86_64-pc-windows-msvc]
rustflags = [
"-C", "link-arg=/STACK:8000000"
]

# 64 bit Mingw
[target.x86_64-pc-windows-gnu]
rustflags = [
"-C", "link-arg=-Wl,--stack,8000000"
]

0 comments on commit 2508098

Please sign in to comment.