chore: upgrade rust-toolchain to nightly-2025-11-20#1214
Merged
kunxian-xia merged 7 commits intomasterfrom Jan 19, 2026
Merged
Conversation
kunxian-xia
commented
Jan 19, 2026
| "target-c-int-width": 32, | ||
| "target-endian": "little", | ||
| "target-pointer-width": "32" | ||
| "target-pointer-width": 32 |
Collaborator
Author
There was a problem hiding this comment.
It's an integer rather than a string like target-c-int-width.
kunxian-xia
commented
Jan 19, 2026
| ] | ||
| build-std-features = [ | ||
| "compiler-builtins-mem", | ||
| "panic_immediate_abort", |
Collaborator
Author
There was a problem hiding this comment.
panic_immediate_abort is default in nightly-2025-11-20.
| "build-std=alloc,core,compiler_builtins,std,panic_abort,proc_macro", | ||
| "-Z", | ||
| "build-std-features=compiler-builtins-mem,panic_immediate_abort,default", | ||
| "build-std-features=compiler-builtins-mem,default", |
Collaborator
Author
There was a problem hiding this comment.
panic_immediate_abort is default in nightly-2025-11-20.
Closed
nightly-2025-11-20nightly-2025-11-20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
We want to upgrade the current toolchain to a new one (e.g.
nightly-2025-11-20).However, the recent nightly toolchains already include this PR to introduce a breaking change s.t. the
target-pointer-widthinceno_rt/riscv32im-ceno-zkvm-elf.jsonis integer rather than string.Additional changes
With
nightly-2025-11-20, the featurepanic_immediate_abortis now a real panic strategy. Therefore we have to make changes in the script for cross buildingrv32imELF.