Add arm-none-eabi-* for 32-bit models

[ci skip]
pull/25/head
probonopd 2 years ago committed by GitHub
parent 9bb6b2b590
commit 2922c73b62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      build.sh

@ -8,6 +8,12 @@ if [ -z "${RPI}" ] ; then
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

Loading…
Cancel
Save