queeridor/.cargo/config.toml

9 lines
197 B
TOML
Raw Normal View History

2024-07-30 05:04:53 +00:00
[target.x86_64-unknown-linux-gnu]
rustflags = [
# (Nightly) Make the current crate share its generic instantiations
"-Zshare-generics=y",
2024-08-20 16:49:13 +00:00
"-C",
"link-arg=-fuse-ld=mold",
2024-07-30 05:04:53 +00:00
]
2024-08-20 16:49:13 +00:00
linker = "clang"