mirror of
https://github.com/openai/codex.git
synced 2026-03-05 21:45:28 +03:00
12 lines
255 B
TOML
12 lines
255 B
TOML
[target.'cfg(all(windows, target_env = "msvc"))']
|
|
rustflags = [
|
|
"-C",
|
|
"link-arg=/STACK:8388608",
|
|
"-C",
|
|
"llvm-args=-function-sections",
|
|
]
|
|
|
|
|
|
[target.'cfg(all(windows, target_env = "gnu"))']
|
|
rustflags = ["-C", "link-arg=-Wl,--stack,8388608"]
|