Skip to content

Commit

Permalink
mps: add build_aarch64.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
spernsteiner committed Jun 7, 2024
1 parent a2f7dac commit f9fc26c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions components/mission_protection_system/build_aarch64.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
set -euo pipefail

cd "$(dirname "$0")/src"
make clean
make CC=aarch64-linux-gnu-g++ CXX=aarch64-linux-gnu-g++ SENSORS=NotSimulated SELF_TEST=Disabled
cp -v rts rts.no_self_test.aarch64
make clean
make CC=aarch64-linux-gnu-g++ CXX=aarch64-linux-gnu-g++ SENSORS=NotSimulated SELF_TEST=Enabled
cp -v rts rts.self_test.aarch64

0 comments on commit f9fc26c

Please sign in to comment.