esp-hal/esp32c3-hal/.cargo/config.toml
2022-12-13 05:15:10 -08:00

19 lines
402 B
TOML

[target.riscv32imc-unknown-none-elf]
runner = "espflash flash --monitor"
rustflags = [
"-C", "link-arg=-Tlinkall.x"
]
# for testing: you can specify this target to see atomic emulation in action
[target.riscv32imac-unknown-none-elf]
runner = "espflash flash --monitor"
rustflags = [
"-C", "link-arg=-Tlinkall.x"
]
[build]
target = "riscv32imc-unknown-none-elf"
[unstable]
build-std = [ "core" ]