crystal-builder/setup/step5.sh

15 lines
255 B
Bash
Raw Permalink Normal View History

2023-10-27 09:01:37 +02:00
#!/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"