fix: stack overflow on windows

This commit is contained in:
Einliterflasche 2024-08-15 15:00:55 +02:00
parent e56b7dbccf
commit dd93a79d87

View File

@ -1,2 +1,6 @@
[target.armv7-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-gcc"
# windows defaults to smaller stack sizes which isn't enough
[target.'cfg(windows)']
rustflags = ["-C", "link-args=/STACK:8388608"]