Skip to content

Commit

Permalink
run cargo in quiet mode for less noisy test output
Browse files Browse the repository at this point in the history
  • Loading branch information
Anatol Ulrich committed Feb 11, 2021
1 parent 2595cab commit efc75b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions firmware/qemu/.cargo/config
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[alias]
rb = "run --target thumbv7m-none-eabi --bin"
rrb = "run --target thumbv7m-none-eabi --release --bin"
rb = "-q run --target thumbv7m-none-eabi --bin"
rrb = "-q run --target thumbv7m-none-eabi --release --bin"

[target.'cfg(all(target_arch = "arm", target_os = "none"))']
# runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable=on,target=native -kernel"
runner = "cargo run --manifest-path ../../qemu-run/Cargo.toml"
runner = "cargo -q run --manifest-path ../../qemu-run/Cargo.toml"

rustflags = [
# LLD (shipped with the Rust toolchain) is used as the default linker
Expand Down

0 comments on commit efc75b1

Please sign in to comment.