mirror of
https://github.com/kittywitch/esp32-c3-meepy.git
synced 2026-02-08 23:49:18 -08:00
15 lines
375 B
TOML
15 lines
375 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"
|
|
|
|
[unstable]
|
|
build-std = ["core"]
|