15 lines
255 B
Bash
15 lines
255 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
echo "==== STEP 5 : Build your own version"
|
||
|
echo "---- Installing prerequisites"
|
||
|
apt-get install -y \
|
||
|
make
|
||
|
|
||
|
echo "---- Running make"
|
||
|
cd /crystal/src
|
||
|
make progress=1 target=aarch64-unknown-linux-gnu | tee make.log
|
||
|
|
||
|
echo "---- SUCCESS"
|