Anyone else developing on Linux ARM64? With latest...
# development
e
Anyone else developing on Linux ARM64? With latest main I am hitting Rust issues that appear to be architecture-related. I am running in the VS Code dev container, and a rebuild did not make a difference:
error: some components are unavailable for download for channel '1.86.0': 'miri' for target 'aarch64-unknown-linux-gnu', 'rustc-codegen-cranelift' for target 'aarch64-unknown-linux-gnu'
a
I am hitting the same issue
You need to run
rustup set profile default
For some reason the profile in the dev container is set to complete
e
OK, I will adjust the dev container. Thanks! I have reported here as well for rustup: https://github.com/rust-lang/rustup/issues/4332