From d254309fdb14703d47ea3984e0476b6b0b17afc3 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 25 May 2026 17:41:48 -0600 Subject: [PATCH] Support nightly 2026-05-24 --- Makefile | 2 ++ rust-toolchain.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 68a8c50ae5..a089f8c350 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,7 @@ $(BUILD)/kernel.all: $(LD_SCRIPT) $(LOCKFILE) $(MANIFEST) $(TARGET_SPEC) $(shell --target "$(TARGET_SPEC)" \ --release \ -Z build-std=core,alloc -Zbuild-std-features=compiler-builtins-mem \ + -Z json-target-spec \ --features=$(KERNEL_CARGO_FEATURES) \ -- \ -C link-arg=-T -Clink-arg="$(LD_SCRIPT)" \ @@ -63,4 +64,5 @@ check: --manifest-path "$(MANIFEST)" \ --target "$(TARGET_SPEC)" \ -Z build-std=core,alloc -Zbuild-std-features=compiler-builtins-mem \ + -Z json-target-spec \ --features=$(KERNEL_CHECK_FEATURES) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 42f22f6190..d8c73f3941 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2025-10-03" +channel = "nightly-2026-05-24" components = ["rust-src"]