16 lines
434 B
TOML
16 lines
434 B
TOML
[target.riscv32imac-unknown-none-elf]
|
|
runner = "probe-rs run --chip=esp32c6 --preverify --always-print-stacktrace --no-location --catch-hardfault"
|
|
|
|
[env]
|
|
|
|
[build]
|
|
rustflags = [
|
|
# 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 = "riscv32imac-unknown-none-elf"
|
|
|
|
[unstable]
|
|
build-std = ["alloc", "core"]
|