mirror of
https://codeberg.org/schrottkatze/mgd2-tram-championships.git
synced 2025-05-20 17:38:01 +00:00
setup (draw a circle /m)
This commit is contained in:
commit
08069c9224
9 changed files with 5452 additions and 0 deletions
22
.cargo/config.toml
Normal file
22
.cargo/config.toml
Normal file
|
@ -0,0 +1,22 @@
|
|||
# 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"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue