mirror of https://github.com/probonopd/MiniDexed
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.
22 lines
275 B
22 lines
275 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
[ -z "${RPI}" ] ; then
|
||
|
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 ..
|