You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately the ESP32 toolchain doesn't seem to support it yet, which means we need to change our rust-toolchain.toml from:
[toolchain]
channel = "esp"
to:
[toolchain]
channel = "1.85"
Completely breaking the build:
...
'esp32-s3' is not a recognized processor for this target (ignoring processor)
'esp32-s3' is not a recognized processor for this target (ignoring processor)
'esp32-s3' is not a recognized processor for this target (ignoring processor)
'esp32-s3' is not a recognized processor for this target (ignoring processor)
error[E0463]: can't find crate for `core`
|
= note: the `xtensa-esp32s3-espidf` target may not be installed
= help: consider downloading the target with `rustup target add xtensa-esp32s3-espidf`
For more information about this error, try `rustc --explain E0463`.
error: could not compile `bitflags` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
$ rustup target add xtensa-esp32s3-espidf
error: toolchain '1.85-aarch64-apple-darwin' does not support target 'xtensa-esp32s3-espidf'
note: you can see a list of supported targets with `rustc --print=target-list`
note: if you are adding support for a new target to rustc itself, see https://rustc-dev-guide.rust-lang.org/building/new-target.html
What's the guidance in this situation?
The text was updated successfully, but these errors were encountered:
Looks like TrouBLE has moved to the 2024 edition.
Unfortunately the ESP32 toolchain doesn't seem to support it yet, which means we need to change our
rust-toolchain.toml
from:to:
Completely breaking the build:
What's the guidance in this situation?
The text was updated successfully, but these errors were encountered: