mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-23 14:08:43 +00:00

* Speedup compilation on windows Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Speedup CI on macOS Use lld Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> --------- Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
16 lines
527 B
TOML
16 lines
527 B
TOML
[target.x86_64-pc-windows-msvc]
|
|
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
|
|
[target.x86_64-pc-windows-gnu]
|
|
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
|
|
|
|
[target.aarch64-pc-windows-msvc]
|
|
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
|
|
[target.aarch64-pc-windows-gnu]
|
|
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
|
|
|
|
[target.x86_64-apple-darwin]
|
|
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
|
|
[target.x86_64h-apple-darwin]
|
|
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
|
|
[target.aarch64-apple-darwin]
|
|
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
|