mirror of
https://codeberg.org/schrottkatze/mgd2-tram-championships.git
synced 2025-05-20 09:38:00 +00:00
22 lines
412 B
TOML
22 lines
412 B
TOML
# 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"
|
|
|