This commit is contained in:
Matthieu Jolimaitre 2025-07-30 21:54:57 +02:00
commit 5aa6d2be89
14 changed files with 5093 additions and 0 deletions

16
.cargo/config.toml Normal file
View file

@ -0,0 +1,16 @@
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = [ # alignment
"-C",
"link-arg=-fuse-ld=lld",
"-Zshare-generics=y",
]
[unstable]
codegen-backend = true
[profile.dev]
codegen-backend = "cranelift"
[profile.dev.package."*"]
codegen-backend = "llvm"