mirror of
https://github.com/kittywitch/esp32-c3-meepy.git
synced 2026-02-09 07:59:18 -08:00
18 lines
406 B
TOML
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"]
|