mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
0ee64ad847
Closes #17172 Closes #15669 Closes #8529
26 lines
570 B
TOML
26 lines
570 B
TOML
[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:3145728",
|
|
]
|
|
|
|
[target.aarch64-apple-darwin]
|
|
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
|
|
|
|
[target.'cfg(all())']
|
|
rustflags = [
|
|
"-D",
|
|
"clippy::all",
|
|
"-D",
|
|
"clippy::await_holding_refcell_ref",
|
|
"-D",
|
|
"clippy::missing_safety_doc",
|
|
"-D",
|
|
"clippy::undocumented_unsafe_blocks",
|
|
]
|