Windows compile opts (#72)

* added config toml file for compilation

* added comment
This commit is contained in:
Wyatt Verchere 2023-04-06 18:08:54 -07:00 committed by GitHub
parent 34f4b762f9
commit 4b41ffbd8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
.cargo/config.toml Normal file
View File

@ -0,0 +1,3 @@
# Windows has stack overflows when calling from Tauri, so we increase compiler size
[target.'cfg(windows)']
rustflags = ["-C", "link-args=/STACK:4194304"]