Skip to content

Commit 85f6f48

Browse files
committed
Auto merge of rust-lang#131816 - Zalathar:profiler-feature, r=Kobzol
Make `profiler_builtins` an optional dependency of sysroot, not std This avoids unnecessary rebuilds of std (and the compiler) when `build.profiler` is toggled off or on. Fixes rust-lang#131812. --- Background: The `profiler_builtins` crate has been an optional dependency of std (behind a cargo feature) ever since it was added back in rust-lang#42433. But as far as I can tell that has only ever been a convenient way to force the crate to be built, not a genuine dependency. The side-effect of this false dependency is that toggling `build.profiler` causes a rebuild of std and the compiler, which shouldn't be necessary. This PR therefore makes `profiler_builtins` an optional dependency of the dummy sysroot crate (rust-lang#108865), rather than a dependency of std. What makes this change so small is that all of the necessary infrastructure already exists. Previously, bootstrap would enable the `profiler` feature on the sysroot crate, which would forward that feature to std. Now, enabling that feature directly enables sysroot's `profiler_builtins` dependency instead. --- I believe this is more of a bootstrap change than a libs change, so tentatively: r? bootstrap
2 parents 63a4a9b + aa027e9 commit 85f6f48

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

std/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ panic_unwind = { path = "../panic_unwind", optional = true }
1818
panic_abort = { path = "../panic_abort" }
1919
core = { path = "../core", public = true }
2020
compiler_builtins = { version = "0.1.133" }
21-
profiler_builtins = { path = "../profiler_builtins", optional = true }
2221
unwind = { path = "../unwind" }
2322
hashbrown = { version = "0.15", default-features = false, features = [
2423
'rustc-dep-of-std',
@@ -98,7 +97,6 @@ backtrace = [
9897
]
9998

10099
panic-unwind = ["panic_unwind"]
101-
profiler = ["profiler_builtins"]
102100
compiler-builtins-c = ["alloc/compiler-builtins-c"]
103101
compiler-builtins-mem = ["alloc/compiler-builtins-mem"]
104102
compiler-builtins-no-asm = ["alloc/compiler-builtins-no-asm"]

sysroot/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2021"
66
# this is a dummy crate to ensure that all required crates appear in the sysroot
77
[dependencies]
88
proc_macro = { path = "../proc_macro" }
9+
profiler_builtins = { path = "../profiler_builtins", optional = true }
910
std = { path = "../std" }
1011
test = { path = "../test" }
1112

@@ -23,7 +24,7 @@ system-llvm-libunwind = ["std/system-llvm-libunwind"]
2324
panic-unwind = ["std/panic_unwind"]
2425
panic_immediate_abort = ["std/panic_immediate_abort"]
2526
optimize_for_size = ["std/optimize_for_size"]
26-
profiler = ["std/profiler"]
27+
profiler = ["dep:profiler_builtins"]
2728
std_detect_file_io = ["std/std_detect_file_io"]
2829
std_detect_dlsym_getauxval = ["std/std_detect_dlsym_getauxval"]
2930
std_detect_env_override = ["std/std_detect_env_override"]

0 commit comments

Comments
 (0)