Skip to content

Commit 1e2f986

Browse files
committed
Additional updates to Rust 1.60.0
1 parent ce6e680 commit 1e2f986

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/riscv-rt.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
# All generated code should be running on stable now, MRSV is 1.59.0
14-
toolchain: [ stable, nightly, 1.59.0 ]
13+
# All generated code should be running on stable now, MRSV is 1.60.0
14+
toolchain: [ stable, nightly, 1.60.0 ]
1515
target:
1616
- riscv32i-unknown-none-elf
1717
- riscv32imc-unknown-none-elf
@@ -41,7 +41,7 @@ jobs:
4141
run: RUSTFLAGS="-C link-arg=-Triscv-rt/examples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }} --features=single-hart
4242
- name: Build example (all features)
4343
run: RUSTFLAGS="-C link-arg=-Triscv-rt/examples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }} --all-features
44-
44+
4545
# Job to check that all the builds succeeded
4646
build-check:
4747
needs:

.github/workflows/riscv.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build-riscv:
1212
strategy:
1313
matrix:
14-
# All generated code should be running on stable now, MRSV is 1.59.0
14+
# All generated code should be running on stable now, MRSV is 1.60.0
1515
toolchain: [ stable, nightly, 1.60.0 ]
1616
target:
1717
- riscv32i-unknown-none-elf
@@ -35,7 +35,7 @@ jobs:
3535
run: cargo build --package riscv --target ${{ matrix.target }}
3636
- name: Build (all features)
3737
run: cargo build --package riscv --target ${{ matrix.target }} --all-features
38-
38+
3939
# On MacOS, Ubuntu, and Windows, we at least make sure that the crate builds and links.
4040
build-others:
4141
strategy:
@@ -49,7 +49,7 @@ jobs:
4949
run: cargo build --package riscv
5050
- name: Build (all features)
5151
run: cargo build --package riscv --all-features
52-
52+
5353
# Job to check that all the builds succeeded
5454
build-check:
5555
needs:

riscv-rt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This project is developed and maintained by the [RISC-V team][team].
1111

1212
## Minimum Supported Rust Version (MSRV)
1313

14-
This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
14+
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
1515
compile with older versions but that may change in any new patch release.
1616

1717
## License

riscv-rt/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! # Minimum Supported Rust Version (MSRV)
44
//!
5-
//! This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
5+
//! This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
66
//! compile with older versions but that may change in any new patch release.
77
//!
88
//! # Features
@@ -483,14 +483,14 @@ pub unsafe extern "C" fn start_rust(a0: usize, a1: usize, a2: usize) -> ! {
483483
sd {a},0({start})
484484
addi {start},{start},8
485485
bltu {start},{end},1b
486-
486+
487487
2: // .data zero registers
488488
li {a},0
489489
li {input},0
490490
491491
la {start},_sbss
492492
la {end},_ebss
493-
493+
494494
bgeu {start},{end},4f
495495
496496
3: // .bss main loop

riscv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "riscv"
33
version = "0.10.1"
44
edition = "2021"
5-
rust-version = "1.59"
5+
rust-version = "1.60"
66
repository = "https://github.com/rust-embedded/riscv"
77
authors = ["The RISC-V Team <[email protected]>"]
88
categories = ["embedded", "hardware-support", "no-std"]

riscv/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! # Minimum Supported Rust Version (MSRV)
44
//!
5-
//! This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
5+
//! This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
66
//! compile with older versions but that may change in any new patch release.
77
//!
88
//! # Features

0 commit comments

Comments
 (0)