mgd2-tram-championships/.cargo/config.toml

23 lines
412 B
TOML
Raw Normal View History

2025-05-14 13:28:18 +02:00
# for Linux
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = [
"-C", "link-arg=-fuse-ld=lld",
# (Nightly) Make the current crate share its generic instantiations
"-Zshare-generics=y",
]
# for Windows
[target.x86_64-pc-windows-msvc]
linker = "rust-lld.exe"
[unstable]
codegen-backend = true
[profile.dev]
codegen-backend = "cranelift"
[profile.dev.package."*"]
codegen-backend = "llvm"