zero-to-production/.cargo/config.toml

14 lines
433 B
TOML
Raw Permalink Normal View History

2022-03-11 22:43:32 +00:00
[target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "linker=clang", "-C", "link-arg=-fuse-ld=lld"]
[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.x86_64-apple-darwin]
2023-09-13 07:53:16 +00:00
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
2022-03-11 22:43:32 +00:00
[target.aarch64-apple-darwin]
2023-09-13 07:53:16 +00:00
rustflags = ["-C", "link-arg=-fuse-ld=/opt/homebrew/opt/llvm/bin/ld64.lld"]