Skip to content

Commit b09f316

Browse files
authored
Rollup merge of #129781 - Veykril:lw-x-py-compiler-features, r=albertlarsan68
Make `./x.py <cmd> compiler/<crate>` aware of the crate's features Does not fix #129727 on its own as the way the parallel-compiler cfg and feature flags are setup being generally incompatible with `resolver = 2` but it progresses on the issue. But this should in theory allow compiler crates to work that do not depend on the parallel compiler stuff (so some leaf crates).
2 parents e903b29 + 39e3add commit b09f316

File tree

7 files changed

+30
-12
lines changed

7 files changed

+30
-12
lines changed

src/bootstrap/src/core/build_steps/check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ impl Step for Rustc {
228228
self.override_build_kind.unwrap_or(builder.kind),
229229
);
230230

231-
rustc_cargo(builder, &mut cargo, target, &compiler);
231+
rustc_cargo(builder, &mut cargo, target, &compiler, &self.crates);
232232

233233
// For ./x.py clippy, don't run with --all-targets because
234234
// linting tests and benchmarks can produce very noisy results

src/bootstrap/src/core/build_steps/clippy.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ impl Step for Rustc {
197197
Kind::Clippy,
198198
);
199199

200-
rustc_cargo(builder, &mut cargo, target, &compiler);
200+
rustc_cargo(builder, &mut cargo, target, &compiler, &self.crates);
201201

202202
// Explicitly pass -p for all compiler crates -- this will force cargo
203203
// to also lint the tests/benches/examples for these crates, rather

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ impl Step for Rustc {
988988
Kind::Build,
989989
);
990990

991-
rustc_cargo(builder, &mut cargo, target, &compiler);
991+
rustc_cargo(builder, &mut cargo, target, &compiler, &self.crates);
992992

993993
// NB: all RUSTFLAGS should be added to `rustc_cargo()` so they will be
994994
// consistently applied by check/doc/test modes too.
@@ -1047,10 +1047,11 @@ pub fn rustc_cargo(
10471047
cargo: &mut Cargo,
10481048
target: TargetSelection,
10491049
compiler: &Compiler,
1050+
crates: &[String],
10501051
) {
10511052
cargo
10521053
.arg("--features")
1053-
.arg(builder.rustc_features(builder.kind, target))
1054+
.arg(builder.rustc_features(builder.kind, target, crates))
10541055
.arg("--manifest-path")
10551056
.arg(builder.src.join("compiler/rustc/Cargo.toml"));
10561057

src/bootstrap/src/core/build_steps/doc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ impl Step for Rustc {
826826
// see https://github.com/rust-lang/rust/pull/122066#issuecomment-1983049222
827827
// cargo.rustdocflag("--generate-link-to-definition");
828828

829-
compile::rustc_cargo(builder, &mut cargo, target, &compiler);
829+
compile::rustc_cargo(builder, &mut cargo, target, &compiler, &self.crates);
830830
cargo.arg("-Zskip-rustdoc-fingerprint");
831831

832832
// Only include compiler crates, no dependencies of those, such as `libc`.

src/bootstrap/src/core/build_steps/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2690,7 +2690,7 @@ impl Step for Crate {
26902690
}
26912691
}
26922692
Mode::Rustc => {
2693-
compile::rustc_cargo(builder, &mut cargo, target, &compiler);
2693+
compile::rustc_cargo(builder, &mut cargo, target, &compiler, &self.crates);
26942694
}
26952695
_ => panic!("can only test libraries"),
26962696
};

src/bootstrap/src/core/metadata.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use std::collections::BTreeMap;
12
use std::path::PathBuf;
23

34
use serde_derive::Deserialize;
@@ -21,6 +22,7 @@ struct Package {
2122
manifest_path: String,
2223
dependencies: Vec<Dependency>,
2324
targets: Vec<Target>,
25+
features: BTreeMap<String, Vec<String>>,
2426
}
2527

2628
/// For more information, see the output of
@@ -51,7 +53,13 @@ pub fn build(build: &mut Build) {
5153
.map(|dep| dep.name)
5254
.collect();
5355
let has_lib = package.targets.iter().any(|t| t.kind.iter().any(|k| k == "lib"));
54-
let krate = Crate { name: name.clone(), deps, path, has_lib };
56+
let krate = Crate {
57+
name: name.clone(),
58+
deps,
59+
path,
60+
has_lib,
61+
features: package.features.keys().cloned().collect(),
62+
};
5563
let relative_path = krate.local_path(build);
5664
build.crates.insert(name.clone(), krate);
5765
let existing_path = build.crate_paths.insert(relative_path, name);

src/bootstrap/src/lib.rs

+14-5
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ struct Crate {
183183
deps: HashSet<String>,
184184
path: PathBuf,
185185
has_lib: bool,
186+
features: Vec<String>,
186187
}
187188

188189
impl Crate {
@@ -672,16 +673,24 @@ impl Build {
672673
}
673674

674675
/// Gets the space-separated set of activated features for the compiler.
675-
fn rustc_features(&self, kind: Kind, target: TargetSelection) -> String {
676+
fn rustc_features(&self, kind: Kind, target: TargetSelection, crates: &[String]) -> String {
677+
let possible_features_by_crates: HashSet<_> = crates
678+
.iter()
679+
.flat_map(|krate| &self.crates[krate].features)
680+
.map(std::ops::Deref::deref)
681+
.collect();
682+
let check = |feature: &str| -> bool {
683+
crates.is_empty() || possible_features_by_crates.contains(feature)
684+
};
676685
let mut features = vec![];
677-
if self.config.jemalloc {
686+
if self.config.jemalloc && check("jemalloc") {
678687
features.push("jemalloc");
679688
}
680-
if self.config.llvm_enabled(target) || kind == Kind::Check {
689+
if (self.config.llvm_enabled(target) || kind == Kind::Check) && check("llvm") {
681690
features.push("llvm");
682691
}
683692
// keep in sync with `bootstrap/compile.rs:rustc_cargo_env`
684-
if self.config.rustc_parallel {
693+
if self.config.rustc_parallel && check("rustc_use_parallel_compiler") {
685694
features.push("rustc_use_parallel_compiler");
686695
}
687696
if self.config.rust_randomize_layout {
@@ -693,7 +702,7 @@ impl Build {
693702
// which is everything (including debug/trace/etc.)
694703
// if its unset, if debug_assertions is on, then debug_logging will also be on
695704
// as well as tracing *ignoring* this feature when debug_assertions is on
696-
if !self.config.rust_debug_logging {
705+
if !self.config.rust_debug_logging && check("max_level_info") {
697706
features.push("max_level_info");
698707
}
699708

0 commit comments

Comments
 (0)