* Merge? * Fix V8 breaking change * WIP * WIP * Cleanup * Move to git reference * Fix Merge conflict * update --------- Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
21 lines
386 B
TOML
21 lines
386 B
TOML
[build]
|
|
rustflags = [
|
|
"--cfg",
|
|
"tokio_unstable",
|
|
"-C",
|
|
"link-arg=-fuse-ld=lld",
|
|
"-Clink-arg=-Wl,--no-rosegment",
|
|
]
|
|
incremental = true
|
|
|
|
[target.x86_64-apple-darwin]
|
|
rustflags = [
|
|
"-C", "link-arg=-undefined",
|
|
"-C", "link-arg=dynamic_lookup",
|
|
]
|
|
|
|
[target.aarch64-apple-darwin]
|
|
rustflags = [
|
|
"-C", "link-arg=-undefined",
|
|
"-C", "link-arg=dynamic_lookup",
|
|
] |