aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/bootloader/nrf/.cargo/config.toml
blob: 58acd1a49dbbbcfbfdc27df9695ce6a705ee38b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[unstable]
#build-std = ["core"]
#build-std-features = ["panic_immediate_abort"]

[target.'cfg(all(target_arch = "arm", target_os = "none"))']
#runner = "./fruitrunner"
runner = "probe-rs run --chip nrf52840_xxAA"

rustflags = [
  # Code-size optimizations.
  #"-Z", "trap-unreachable=no",
  #"-C", "no-vectorize-loops",
  "-C", "force-frame-pointers=yes",
]

[build]
target = "thumbv7em-none-eabi"

[env]
DEFMT_LOG = "trace"