Disable cranelift.

It is causing the rust compiler to error out far too often.
This commit is contained in:
Tom Alexander 2025-06-03 19:48:41 -04:00
parent 99f1b1a51b
commit 2282fc8358
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -1,12 +1,12 @@
[target.x86_64-unknown-linux-gnu] [target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "target-cpu=native", "-Zthreads=0"] rustflags = ["-C", "target-cpu=native", "-Zthreads=0"]
[unstable] # [unstable]
codegen-backend = true # codegen-backend = true
[profile.dev] # [profile.dev]
codegen-backend = "cranelift" # codegen-backend = "cranelift"
[profile.dev.package."*"] [profile.dev.package."*"]
codegen-backend = "llvm" # codegen-backend = "llvm"
opt-level = 3 opt-level = 3