Skip to content

Commit 4a3863e

Browse files
authored
Rollup merge of #126616 - onur-ozkan:less-warnings, r=Mark-Simulacrum
less bootstrap warnings This is how the build logs looks like currently: ```sh $ x build Building bootstrap Compiling bootstrap v0.0.0 (/home/nimda/devspace/onur-ozkan/rust/src/bootstrap) Finished `dev` profile [unoptimized] target(s) in 3.43s WARNING: no codegen-backends config matched the requested path to build a codegen backend. HELP: add backend to codegen-backends in config.toml. WARNING: creating symbolic link `/home/nimda/devspace/.other/rustc-builds/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/rustc-src/rust` to `/home/nimda/devspace/onur-ozkan/rust` failed with File exists (os error 17) Creating a sysroot for stage2 compiler (use `rustup toolchain link 'name' build/host/stage2`) WARNING: creating symbolic link `/home/nimda/devspace/.other/rustc-builds/build/x86_64-unknown-linux-gnu/ci-rustc-sysroot/lib/rustlib/rustc-src/rust` to `/home/nimda/devspace/onur-ozkan/rust` failed with File e xists (os error 17) Building tool rustdoc (stage1 -> stage2, x86_64-unknown-linux-gnu) Compiling rustdoc v0.0.0 (/home/nimda/devspace/onur-ozkan/rust/src/librustdoc) Compiling rustdoc-tool v0.0.0 (/home/nimda/devspace/onur-ozkan/rust/src/tools/rustdoc) Finished `release` profile [optimized + debuginfo] target(s) in 13.57s Build completed successfully in 0:00:17 ``` This PR removes artifact linking warnings and only shows the codegen-backend warning if explicitly called or during Dist or Install steps.
2 parents 0eff9fb + 521e707 commit 4a3863e

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

src/bootstrap/src/core/build_steps/compile.rs

+10-4
Original file line numberDiff line numberDiff line change
@@ -1290,15 +1290,21 @@ fn needs_codegen_config(run: &RunConfig<'_>) -> bool {
12901290
pub(crate) const CODEGEN_BACKEND_PREFIX: &str = "rustc_codegen_";
12911291

12921292
fn is_codegen_cfg_needed(path: &TaskPath, run: &RunConfig<'_>) -> bool {
1293-
if path.path.to_str().unwrap().contains(CODEGEN_BACKEND_PREFIX) {
1293+
let path = path.path.to_str().unwrap();
1294+
1295+
let is_explicitly_called = |p| -> bool { run.builder.paths.contains(p) };
1296+
let should_enforce = run.builder.kind == Kind::Dist || run.builder.kind == Kind::Install;
1297+
1298+
if path.contains(CODEGEN_BACKEND_PREFIX) {
12941299
let mut needs_codegen_backend_config = true;
12951300
for backend in run.builder.config.codegen_backends(run.target) {
1296-
if path.path.to_str().unwrap().ends_with(&(CODEGEN_BACKEND_PREFIX.to_owned() + backend))
1297-
{
1301+
if path.ends_with(&(CODEGEN_BACKEND_PREFIX.to_owned() + backend)) {
12981302
needs_codegen_backend_config = false;
12991303
}
13001304
}
1301-
if needs_codegen_backend_config {
1305+
if (is_explicitly_called(&PathBuf::from(path)) || should_enforce)
1306+
&& needs_codegen_backend_config
1307+
{
13021308
run.builder.info(
13031309
"WARNING: no codegen-backends config matched the requested path to build a codegen backend. \
13041310
HELP: add backend to codegen-backends in config.toml.",

src/bootstrap/src/utils/helpers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ pub fn symlink_dir(config: &Config, original: &Path, link: &Path) -> io::Result<
135135
if config.dry_run() {
136136
return Ok(());
137137
}
138-
let _ = fs::remove_dir(link);
138+
let _ = fs::remove_dir_all(link);
139139
return symlink_dir_inner(original, link);
140140

141141
#[cfg(not(windows))]

0 commit comments

Comments
 (0)