-
Notifications
You must be signed in to change notification settings - Fork 240
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
add rust-toolchain.toml
for the host program
#262
Comments
rust-toolchain.toml
rust-toolchain.toml
for the host program
Thanks @onur-ozkan, @slumber can you take a look? |
Moving guest |
Eventually we want to unfreeze the toolchain, it's probably possible already, I need to check |
FWIW you can remove the |
Guest programs required specific version, otherwise the VM used to panic with Jolt. This needs to be double checked. Freezing the toolchain for host isn't proper solution, UPD: jolt still requires frozen toolchain |
Interesting. I don't know much about the build internals of this project, but it seems that the The toolchain configuration for the guest side looks like this: [toolchain]
channel = "1.77.0"
targets = ["riscv32i-unknown-none-elf"] However, I don't have |
You can try
with toolchain file present and removed. |
I see, so it's used for certain builds. I still think (as a user) it would be nice to have a |
What is the problem?
When creating projects with
cargo nexus host $project
, nexus generatesrust-toolchain.toml
file for the guest program but not for the host program.This leads to two issues:
What do you want to happen?
Include the same
rust-toolchain.toml
file in the host program.Existing alternatives
N/A
Additional notes
N/A
The text was updated successfully, but these errors were encountered: