File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -98,5 +98,6 @@ debug = 0
9898bootstrap.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
102103cc = { git = " https://github.com/rust-lang/cc-rs" , rev = " 6fe995c675dc1178f570752fa8f6de82913a91dc" }
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments