You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MiniDexed/build.sh

22 lines
276 B

#!/bin/bash
set -e
set -x
2 years ago
if [ -z "${RPI}" ] ; do
echo "${RPI} missing, exting"
exit 1
fi
# Build circle-stdlib library
cd circle-stdlib/
./configure -r ${RPI} --prefix "aarch64-none-elf-"
make -j$(nproc)
cd ..
# Build MiniDexed
cd src
make -j$(nproc)
ls *.img
cd ..