Při kompilaci Rust projektu pro ESP32-S3 se může objevit následující chyba:
cargo build --release Compiling xtensa-lx-rt v0.16.0 Compiling esp-hal-common v0.14.1 LLVM ERROR: Global variable 'save_context' has an invalid section specifier '.rwtext': mach-o section specifier requires a segment and section separated by a comma. error: could not compile xtensa-lx-rt (lib) warning: build failed, waiting for other jobs to finish... error: invalid instruction mnemonic 'rsr.ccount' --> /Users/georgik/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xtensa-lx-0.8.0/src/timer.rs:81:20 | 81 | unsafe { asm!("rsr.ccount {0}", out(reg) x, options(nostack)) };
I když je Rust velmi užitečný s chybovými zprávami, je docela těžké určit, co je špatně.
Tento problém v podstatě nastane, když kompilujete projekt pro ESP32-S3, který používá Xtensa cíl, a projektu chybí následující soubor: .cargo/config.toml
[target.'cfg(target_arch = "xtensa")'] runner = "espflash flash --monitor" rustflags = [ "-C", "link-arg=-Tlinkall.x", "-C", "link-arg=-nostartfiles", ] [build] target = "xtensa-esp32s3-none-elf" [unstable] build-std = [ "core", "alloc" ]