10 lines
252 B
Bash
Executable file
10 lines
252 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
bash ./scripts/copy_to_svn.sh
|
|
TARGET="thumbv6m-none-eabi"
|
|
|
|
powershell.exe -Command "
|
|
cd C:\SVN\nt\BA\trunk\Studium\Christoph_Scherr\system\Implementation\crcbench;
|
|
cargo build -r --target $TARGET;
|
|
cargo run -r --target $TARGET $@
|
|
"
|