From 399d59d5e7a01d6d6bd5f8321450f666dc841bef Mon Sep 17 00:00:00 2001 From: andromeda Date: Sun, 5 Apr 2026 21:11:02 +0200 Subject: init --- .cargo/config.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .cargo/config.toml (limited to '.cargo') 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"] -- cgit v1.3.1