diff options
| author | andromeda <andromeda@lenovo> | 2026-04-05 21:11:02 +0200 |
|---|---|---|
| committer | andromeda <andromeda@lenovo> | 2026-04-05 21:11:02 +0200 |
| commit | 399d59d5e7a01d6d6bd5f8321450f666dc841bef (patch) | |
| tree | 21f88472b2faa55d127d2fbd4faeb1b4f449de42 /.cargo | |
init
Diffstat (limited to '.cargo')
| -rw-r--r-- | .cargo/config.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..e5798f8 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,17 @@ +[target.riscv32imac-unknown-none-elf] +runner = "sudo espflash flash --monitor --chip esp32c6" + +[env] +ESP_LOG="info" + +[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 = ["core"] |
