mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
15 lines
371 B
Plaintext
15 lines
371 B
Plaintext
[target.x86_64-pc-windows-msvc]
|
|
rustflags = ["-C", "target-feature=+crt-static"]
|
|
|
|
[target.'cfg(all(windows, debug_assertions))']
|
|
rustflags = [
|
|
"-C",
|
|
"target-feature=+crt-static",
|
|
"-C",
|
|
# increase the stack size to prevent swc overflowing the stack in debug
|
|
"link-arg=/STACK:1572864",
|
|
]
|
|
|
|
[target.aarch64-apple-darwin]
|
|
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
|