Skip to content

Commit 4f20ee5

Browse files
authored
Rollup merge of #127866 - alexcrichton:disable-wasm-component-ld-by-default, r=onur-ozkan
Conditionally build `wasm-component-ld` This commit updates the support for the `wasm-component-ld` tool from #126967 to conditionally build rather than unconditionally building it when LLD is enabled. This support is disabled by default and can be enabled by one of two means: * the `extended` field in `config.toml` which dist builders use to build a complete set of tools for each host platform. * a `"wasm-component-ld"` entry in the `tools` section of `config.toml`. Neither of these are enabled by default meaning that most local builds will likely not have this new tool built. Dist builders should still, however, build the tool.
2 parents aa6ae4b + f0a2b5b commit 4f20ee5

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

config.example.toml

+1
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@
333333
# "rust-analyzer-proc-macro-srv",
334334
# "analysis",
335335
# "src",
336+
# "wasm-component-ld",
336337
#]
337338

338339
# Verbosity level: 0 == not verbose, 1 == verbose, 2 == very verbose, 3 == print environment variables on each rustc invocation

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

+7-5
Original file line numberDiff line numberDiff line change
@@ -1820,12 +1820,14 @@ impl Step for Assemble {
18201820
&self_contained_lld_dir.join(exe(name, target_compiler.host)),
18211821
);
18221822
}
1823+
}
18231824

1824-
// In addition to `rust-lld` also install `wasm-component-ld` when
1825-
// LLD is enabled. This is a relatively small binary that primarily
1826-
// delegates to the `rust-lld` binary for linking and then runs
1827-
// logic to create the final binary. This is used by the
1828-
// `wasm32-wasip2` target of Rust.
1825+
// In addition to `rust-lld` also install `wasm-component-ld` when
1826+
// LLD is enabled. This is a relatively small binary that primarily
1827+
// delegates to the `rust-lld` binary for linking and then runs
1828+
// logic to create the final binary. This is used by the
1829+
// `wasm32-wasip2` target of Rust.
1830+
if builder.build_wasm_component_ld() {
18291831
let wasm_component_ld_exe =
18301832
builder.ensure(crate::core::build_steps::tool::WasmComponentLd {
18311833
compiler: build_compiler,

src/bootstrap/src/lib.rs

+13
Original file line numberDiff line numberDiff line change
@@ -1414,6 +1414,19 @@ Executed at: {executed_at}"#,
14141414
None
14151415
}
14161416

1417+
/// Returns whether it's requested that `wasm-component-ld` is built as part
1418+
/// of the sysroot. This is done either with the `extended` key in
1419+
/// `config.toml` or with the `tools` set.
1420+
fn build_wasm_component_ld(&self) -> bool {
1421+
if self.config.extended {
1422+
return true;
1423+
}
1424+
match &self.config.tools {
1425+
Some(set) => set.contains("wasm-component-ld"),
1426+
None => false,
1427+
}
1428+
}
1429+
14171430
/// Returns the root of the "rootfs" image that this target will be using,
14181431
/// if one was configured.
14191432
///

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -205,4 +205,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
205205
severity: ChangeSeverity::Warning,
206206
summary: "`debug-logging` option has been removed from the default `tools` profile.",
207207
},
208+
ChangeInfo {
209+
change_id: 127866,
210+
severity: ChangeSeverity::Info,
211+
summary: "the `wasm-component-ld` tool is now built as part of `build.extended` and can be a member of `build.tools`",
212+
},
208213
];

0 commit comments

Comments
 (0)