mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 12:50:53 +00:00

* Add esp-storage to esp-hal repo * Include needed feature to lint esp-storage * Don't lint esp-wifi for now * Remove redundant copies of license texts * Try `git-fetch-with-cli` * Fix esp-pacs URL * git-fetch-with-cli, again * desperately trying
27 lines
543 B
TOML
27 lines
543 B
TOML
[target.'cfg(target_arch = "riscv32")']
|
|
runner = "probe-rs run"
|
|
rustflags = [
|
|
"-C", "link-arg=-Tlinkall.x",
|
|
"-C", "link-arg=-Tembedded-test.x",
|
|
"-C", "link-arg=-Tdefmt.x",
|
|
"-C", "force-frame-pointers"
|
|
]
|
|
|
|
[target.'cfg(target_arch = "xtensa")']
|
|
runner = "probe-rs run"
|
|
rustflags = [
|
|
"-C", "link-arg=-nostartfiles",
|
|
"-C", "link-arg=-Wl,-Tlinkall.x",
|
|
"-C", "link-arg=-Tdefmt.x",
|
|
"-C", "link-arg=-Tembedded-test.x",
|
|
]
|
|
|
|
[env]
|
|
DEFMT_LOG = "info"
|
|
|
|
[unstable]
|
|
build-std = ["core"]
|
|
|
|
[net]
|
|
git-fetch-with-cli = true
|