Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Rust to version 1.77 #557

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "0.1.0"
[workspace.package]
# This must be kept in sync with rust-toolchain.toml; please see that file for
# more information.
rust-version = "1.75"
rust-version = "1.77"

[features]
rust_embedded = [
Expand Down
2 changes: 1 addition & 1 deletion doc/PlatformDesignStory.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ macro_rules! test_component {
[$link:ident, $name:ident: $comp:ty = $init:expr] => {
let $name = std::boxed::Box::leak(std::boxed::Box::new($init)) as &$comp;
std::thread_local!(static GLOBAL: std::cell::Cell<Option<&'static $comp>>
= std::cell::Cell::new(None));
= const {std::cell::Cell::new(None)})
GLOBAL.with(|g| g.set(Some($name)));
struct $link;
impl<T> libtock_platform::FreeCallback<T> for $link
Expand Down
2 changes: 1 addition & 1 deletion platform/src/share/tests.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::share::{scope, Handle, List};

std::thread_local! {static INSTANCE_COUNT: core::cell::Cell<u64> = core::cell::Cell::new(0)}
std::thread_local! {static INSTANCE_COUNT: core::cell::Cell<u64> = const {core::cell::Cell::new(0)}}

// InstanceCounter increments INSTANCE_COUNT when it is constructed and
// decrements INSTANCE_COUNT when it is dropped.
Expand Down
12 changes: 7 additions & 5 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
# you'd like to use. When you do so, update this to the first Rust version that
# includes that feature. Whenever this value is updated, the rust-version field
# in Cargo.toml must be updated as well.
channel = "1.75"
channel = "1.77"
components = ["clippy", "rustfmt"]
targets = ["thumbv6m-none-eabi",
"thumbv7em-none-eabi",
"riscv32imac-unknown-none-elf",
"riscv32imc-unknown-none-elf"]
targets = [
"thumbv6m-none-eabi",
"thumbv7em-none-eabi",
"riscv32imac-unknown-none-elf",
"riscv32imc-unknown-none-elf",
]
2 changes: 1 addition & 1 deletion syscalls_tests/src/allow_ro.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl fake::SyscallDriver for TestDriver {
struct TestConfig;

// CALLED is set to true when returned_nonzero_buffer is called.
thread_local! {static CALLED: Cell<bool> = Cell::new(false); }
thread_local! {static CALLED: Cell<bool> = const {Cell::new(false)} }

impl allow_ro::Config for TestConfig {
fn returned_nonzero_buffer(driver_num: u32, buffer_num: u32) {
Expand Down
2 changes: 1 addition & 1 deletion syscalls_tests/src/allow_rw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl fake::SyscallDriver for TestDriver {
struct TestConfig;

// CALLED is set to true when returned_nonzero_buffer is called.
thread_local! {static CALLED: Cell<bool> = Cell::new(false); }
thread_local! {static CALLED: Cell<bool> = const {Cell::new(false)} }

impl allow_rw::Config for TestConfig {
fn returned_nonzero_buffer(driver_num: u32, buffer_num: u32) {
Expand Down
4 changes: 2 additions & 2 deletions syscalls_tests/src/subscribe_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use libtock_platform::{
share, subscribe, CommandReturn, DefaultConfig, ErrorCode, Syscalls, YieldNoWaitReturn,
};
use libtock_unittest::{command_return, fake, DriverInfo, DriverShareRef, SyscallLogEntry};
use std::rc::Rc;
use std::{cell::Cell, rc::Rc};

// Fake driver that accepts an upcall.
#[derive(Default)]
Expand All @@ -28,7 +28,7 @@ impl fake::SyscallDriver for MockDriver {
fn config() {
// Thread local used by TestConfig to indicate that returned_nonnull_upcall
// has been called.
std::thread_local! {static CALLED: core::cell::Cell<Option<(u32, u32)>> = Default::default(); }
std::thread_local! {static CALLED: core::cell::Cell<Option<(u32, u32)>> = const {Cell::new(None)} }
struct TestConfig;
impl subscribe::Config for TestConfig {
fn returned_nonnull_upcall(driver_num: u32, subscribe_num: u32) {
Expand Down
2 changes: 1 addition & 1 deletion tock
Submodule tock updated 654 files
2 changes: 1 addition & 1 deletion unittest/src/kernel_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub(crate) struct KernelData {

// KERNEL_DATA is set to Some in `fake::Kernel::new` and set to None when the
// `fake::Kernel` is dropped.
thread_local!(pub(crate) static KERNEL_DATA: RefCell<Option<KernelData>> = RefCell::new(None));
thread_local!(pub(crate) static KERNEL_DATA: RefCell<Option<KernelData>> = const { RefCell::new(None) });

// Convenience function to get mutable access to KERNEL_DATA.
pub(crate) fn with_kernel_data<F: FnOnce(Option<&mut KernelData>) -> R, R>(f: F) -> R {
Expand Down
Loading