Packages

Elixir compilers and scripts for building Nerves Toolchains. For useable toolchain configurations see nerves_toolchain_*

Current section

Files

Jump to
nerves_toolchain src build_release.sh
Raw

src/build_release.sh

#!/bin/sh
# Give me a chance to hit CTRL-C in case I'm building a -dirty by accident
echo "Going to build version '$(git describe --dirty)'. Hit CTRL-C to stop..."
sleep 2
CONFIGS="glibc-eabihf \
glibc-eabihf-armv6 \
glibc-i586 \
glibc-eabi"
# Comment out musl support since it doesn't build on OSX
# musl-eabihf-armv6"
for CONFIG in $CONFIGS; do
echo "Starting build for $CONFIG..."
./build.sh $CONFIG
done
echo "All done!!!!!!"