Skip to content

Commit 9c8401b

Browse files
committed
build interpreter (mac version)
1 parent 82a6f95 commit 9c8401b

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

build-samd51-interpreter-mac

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
if echo $PATH | grep "gcc-arm-none-eabi" >/dev/null; then
2+
true
3+
else
4+
export PATH=/Volumes/Circuit_Python_Case_Sensitive_Disk/bruinspace-circuitpython/gcc-arm-none-eabi-10-2020-q4-major/bin:$PATH
5+
fi
6+
7+
cd ports/atmel-samd
8+
make --debug -j8 BOARD=metro_m4_express
9+
cd ../..
10+
11+
echo "Compilation complete! Press ^C to confirm and exit."
12+
13+
while true; do
14+
afplay /System/Library/Sounds/Ping.aiff
15+
sleep 5s
16+
done

0 commit comments

Comments
 (0)