#5981 seems to be fixing what's actually a call stack overflow, maybe this will fix it without disabling a feature?
6 lines
197 B
TOML
6 lines
197 B
TOML
[target.'cfg(all(windows, target_env = "msvc"))']
|
|
rustflags = ["-C", "link-arg=/STACK:8388608"]
|
|
|
|
[target.'cfg(all(windows, target_env = "gnu"))']
|
|
rustflags = ["-C", "link-arg=-Wl,--stack,8388608"]
|