2024-11-22 21:25:34 +01:00
|
|
|
[target.x86_64-unknown-linux-gnu]
|
2025-04-04 03:29:35 +02:00
|
|
|
linker = "clang"
|
|
|
|
rustflags = [
|
|
|
|
"-C", "link-arg=-fuse-ld=mold",
|
|
|
|
# (Nightly) Make the current crate share its generic instantiations
|
|
|
|
"-Zshare-generics=y",
|
|
|
|
]
|
|
|
|
|
|
|
|
[unstable]
|
|
|
|
codegen-backend = true
|
|
|
|
|
|
|
|
[profile."*"]
|
|
|
|
codegen-backend = "llvm"
|
2024-11-22 21:25:34 +01:00
|
|
|
|