diff options
| author | Rémy Rakic <remy.rakic+github@gmail.com> | 2024-04-15 20:48:13 +0000 |
|---|---|---|
| committer | Rémy Rakic <remy.rakic+github@gmail.com> | 2024-05-16 16:09:17 +0000 |
| commit | 3a90967425fc0e1630ade80f278f7f132245e2c8 (patch) | |
| tree | 0219c2914d7cf8b78b0535fbee2ee33e786c22a1 | |
| parent | 4d280de47c4c0021f55bb1a9c7d6e5293a4670ab (diff) | |
| download | rust-3a90967425fc0e1630ade80f278f7f132245e2c8.tar.gz rust-3a90967425fc0e1630ade80f278f7f132245e2c8.zip | |
add bootstrap config change info about `rust.lld`
the default value changes on `x86_64-unknown-linux-gnu`, and semantics kinda as it will impact the target's default linker
| -rw-r--r-- | src/bootstrap/src/utils/change_tracker.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bootstrap/src/utils/change_tracker.rs b/src/bootstrap/src/utils/change_tracker.rs index a1c9ddebb5d..2f9eaf51c34 100644 --- a/src/bootstrap/src/utils/change_tracker.rs +++ b/src/bootstrap/src/utils/change_tracker.rs @@ -185,4 +185,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[ severity: ChangeSeverity::Info, summary: r#"The compiler profile now defaults to rust.debuginfo-level = "line-tables-only""#, }, + ChangeInfo { + change_id: 124129, + severity: ChangeSeverity::Warning, + summary: "`rust.lld` has a new default value of `true` on `x86_64-unknown-linux-gnu`. Starting at stage1, `rust-lld` will thus be this target's default linker. No config changes should be necessary.", + }, ]; |
