esp-hal/esp32s2-hal/.cargo/config.toml
Scott Mabin 05f9d2109a
Completely remove atomic emulation (#985)
* Completely remove atomic emulation

* changelog
2023-12-04 14:22:15 +00:00

18 lines
324 B
TOML

[target.xtensa-esp32s2-none-elf]
runner = "espflash flash --monitor"
[build]
rustflags = [
# GNU LD
"-C", "link-arg=-nostartfiles",
"-C", "link-arg=-Wl,-Tlinkall.x",
# LLD
# "-C", "linker=rust-lld",
# "-C", "link-arg=-Tlinkall.x",
]
target = "xtensa-esp32s2-none-elf"
[unstable]
build-std = ["core", "alloc"]