We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 581da42 commit 3afb5d7Copy full SHA for 3afb5d7
src/cargo/ops/cargo_compile.rs
@@ -309,6 +309,11 @@ pub fn compile_ws<'a>(
309
let (mut packages, resolve_with_overrides) = resolve;
310
311
let std_resolve = if let Some(crates) = &config.cli_unstable().build_std {
312
+ if build_config.build_plan {
313
+ config
314
+ .shell()
315
+ .warn("-Zbuild-std does not currently fully support --build-plan")?;
316
+ }
317
if build_config.requested_target.is_none() {
318
// TODO: This should eventually be fixed. Unfortunately it is not
319
// easy to get the host triple in BuildConfig. Consider changing
0 commit comments