toolchain: Bump Rust to 1.80.0-nightly

This commit is contained in:
Yifan Wu 2024-05-02 11:04:17 +08:00
parent 644f5bc365
commit 0073c24693
4 changed files with 3 additions and 2 deletions

View File

@ -21,6 +21,7 @@ pub struct TaskControlBlock {
pub struct TaskControlBlockInner { pub struct TaskControlBlockInner {
pub trap_cx_ppn: PhysPageNum, pub trap_cx_ppn: PhysPageNum,
#[allow(unused)]
pub base_size: usize, pub base_size: usize,
pub task_cx: TaskContext, pub task_cx: TaskContext,
pub task_status: TaskStatus, pub task_status: TaskStatus,

View File

@ -1,6 +1,6 @@
[toolchain] [toolchain]
profile = "minimal" profile = "minimal"
# use the nightly version of the last stable toolchain, see <https://forge.rust-lang.org/> # use the nightly version of the last stable toolchain, see <https://forge.rust-lang.org/>
channel = "nightly-2024-01-18" channel = "nightly-2024-05-01"
components = ["rust-src", "llvm-tools", "rustfmt", "clippy"] components = ["rust-src", "llvm-tools", "rustfmt", "clippy"]
targets = ["riscv64gc-unknown-none-elf"] targets = ["riscv64gc-unknown-none-elf"]