Skip to content

Commit d9a1349

Browse files
committed
backlink to relevant cleanup issues in FIXMEs
1 parent ee12faa commit d9a1349

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/bootstrap/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,6 @@ debug = 0
9898
bootstrap.debug = 1
9999

100100
[patch.crates-io]
101-
# FIXME: remove this once the `armv7a-vex-v5` target is available on nightly and cc-rs is updated with it
101+
# FIXME: Remove this once a nightly is published with `armv7a-vex-v5` support,
102+
# see https://github.com/rust-lang/rust/issues/136075
102103
cc = { git = "https://github.com/rust-lang/cc-rs", rev = "6fe995c675dc1178f570752fa8f6de82913a91dc" }

src/bootstrap/src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,8 +617,9 @@ impl Build {
617617
if self.config.profiler_enabled(target) {
618618
features.insert("profiler");
619619
}
620-
// Generate memcpy, etc. FIXME: Remove this once compiler-builtins
621-
// automatically detects this target.
620+
// Generate memcpy, etc.
621+
// FIXME: Remove this once compiler-builtins automatically detects this target,
622+
// see <https://github.com/rust-lang/rust/issues/136076>
622623
if target.contains("zkvm") || target.contains("vex") {
623624
features.insert("compiler-builtins-mem");
624625
}

src/tools/tidy/src/extdeps.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ const ALLOWED_SOURCES: &[&str] = &[
99
// This is `rust_team_data` used by `site` in src/tools/rustc-perf,
1010
r#""git+https://github.com/rust-lang/team#a5260e76d3aa894c64c56e6ddc8545b9a98043ec""#,
1111
// This is temporarily used to bootstrap the `armv7a_vex_v5` target until cc-rs has it in its generated target list.
12+
// FIXME: Remove this once a nightly is published with `armv7a-vex-v5` support,
13+
// see <https://github.com/rust-lang/rust/issues/136075>
1214
r#""git+https://github.com/rust-lang/cc-rs?rev=6fe995c675dc1178f570752fa8f6de82913a91dc#6fe995c675dc1178f570752fa8f6de82913a91dc""#,
1315
];
1416

0 commit comments

Comments
 (0)