How to configure nextest to use a custom cargo profile with Cranelift backend? #2338
|
Hello! I'm using Cranelift as my codegen backend during development. I've set up a custom profile in [unstable]
codegen-backend = true
[target.x86_64-unknown-linux-gnu]
rustflags = ['--cfg=curve25519_dalek_backend="serial"']
[profile.custody-dev]
inherits = "dev"
codegen-backend = "cranelift"I run my binaries with: cargo run --profile custody-devI need this custom profile because cargo-llvm-cov doesn't work with Cranelift (it requires LLVM for coverage instrumentation). However: Question: |
Answered by
sunshowers
May 5, 2025
Replies: 1 comment 1 reply
|
Thanks for the question. Would |
1 reply
Answer selected by
39george
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the question. Would
--cargo-profilework for you?