mirror of
https://github.com/InioX/matugen.git
synced 2025-05-12 21:10:36 +01:00
feat: increase windows stack size to 8mb (fixes #87)
This commit is contained in:
parent
7ea9a7506d
commit
250809841e
1 changed files with 11 additions and 0 deletions
11
.cargo/config.toml
Normal file
11
.cargo/config.toml
Normal file
|
@ -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"
|
||||
]
|
Loading…
Reference in a new issue