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.
30 lines
565 B
30 lines
565 B
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
if [ -z "${RPI}" ] ; then
|
|
echo "${RPI} missing, exting"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "${RPI}" -gt "2" ]; then
|
|
export TOOLCHAIN_PREFIX="aarch64-none-elf-"
|
|
else
|
|
export TOOLCHAIN_PREFIX="arm-none-eabi-"
|
|
fi
|
|
|
|
# Build circle-stdlib library
|
|
cd circle-stdlib/
|
|
make clean || true
|
|
( cd build/circle-newlib/ ; make mrproper ) || true
|
|
( cd build/circle-newlib/aarch64-none-circle/newlib ; rm ./config.cache ) || true
|
|
./configure -r ${RPI} --prefix "${TOOLCHAIN_PREFIX}"
|
|
make -j$(nproc)
|
|
cd ..
|
|
|
|
# Build MiniDexed
|
|
cd src
|
|
make -j$(nproc)
|
|
ls *.img
|
|
cd ..
|
|
|