esp32-c3-ntfy-client-attempt/.cargo/config.toml
2025-10-18 02:15:49 -07:00

18 lines
406 B
TOML

[target.riscv32imc-unknown-none-elf]
runner = "espflash flash --monitor"
[build]
rustflags = [
"-C", "link-arg=-Tlinkall.x",
# Required to obtain backtraces (e.g. when using the "esp-backtrace" crate.)
# NOTE: May negatively impact performance of produced code
"-C", "force-frame-pointers",
]
target = "riscv32imc-unknown-none-elf"
[env]
ESP_LOG="INFO"
[unstable]
build-std = ["alloc", "core"]