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-dev I need this custom profile because cargo-llvm-cov doesn't work with Cranelift (it requires LLVM for coverage instrumentation). However: Question: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Thanks for the question. Would |
Beta Was this translation helpful? Give feedback.
Thanks for the question. Would
--cargo-profile
work for you?