add "optimized-compiler-builtins" option coverage for ci-rustc
Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
parent
20630c54aa
commit
99e726b194
1 changed files with 11 additions and 6 deletions
|
@ -3125,11 +3125,15 @@ fn check_incompatible_options_for_ci_rustc(
|
|||
};
|
||||
}
|
||||
|
||||
err!(
|
||||
current_config_toml.build.as_ref().and_then(|b| b.profiler),
|
||||
ci_config_toml.build.as_ref().and_then(|b| b.profiler),
|
||||
"build"
|
||||
);
|
||||
let current_profiler = current_config_toml.build.as_ref().and_then(|b| b.profiler);
|
||||
let profiler = ci_config_toml.build.as_ref().and_then(|b| b.profiler);
|
||||
err!(current_profiler, profiler, "build");
|
||||
|
||||
let current_optimized_compiler_builtins =
|
||||
current_config_toml.build.as_ref().and_then(|b| b.optimized_compiler_builtins);
|
||||
let optimized_compiler_builtins =
|
||||
ci_config_toml.build.as_ref().and_then(|b| b.optimized_compiler_builtins);
|
||||
err!(current_optimized_compiler_builtins, optimized_compiler_builtins, "build");
|
||||
|
||||
// We always build the in-tree compiler on cross targets, so we only care
|
||||
// about the host target here.
|
||||
|
@ -3141,7 +3145,8 @@ fn check_incompatible_options_for_ci_rustc(
|
|||
"Target specific config for '{host_str}' is not present for CI-rustc"
|
||||
))?;
|
||||
|
||||
err!(current_cfg.profiler, ci_cfg.profiler, "build");
|
||||
let profiler = &ci_cfg.profiler;
|
||||
err!(current_cfg.profiler, profiler, "build");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue