mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
#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"]
|