c86ce093ce
* Added script/boostrap.sh to download the Arduino IDE and MPIDE (for chipKIT). Tested in Linux, should work in Cygwin and OS X too. * Added script/runtests.sh to run "make" in each example project and collect the results. The script returns -1 if any fails. * Moved currently testable examples to a "tests" directory, separate from examples that require alternative cores.
61 lines
1.7 KiB
Bash
61 lines
1.7 KiB
Bash
set -e
|
|
BOOTSTRAP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source $BOOTSTRAP_DIR/common.sh
|
|
|
|
echo "Installing dependencies for building for the chipKIT"
|
|
|
|
|
|
if [ -z "$MPIDE_DIR" ] || ! test -e $MPIDE_DIR || [ $OS == "cygwin" ]; then
|
|
|
|
echo "Installing MPIDE..."
|
|
|
|
if [ $OS == "cygwin" ]; then
|
|
MPIDE_BASENAME="mpide-0023-windows-20130715"
|
|
MPIDE_FILE="$MPIDE_BASENAME".zip
|
|
EXTRACT_COMMAND="unzip -q"
|
|
if ! command -v unzip >/dev/null 2>&1; then
|
|
_cygwin_error "unzip"
|
|
fi
|
|
elif [ $OS == "mac" ]; then
|
|
MPIDE_BASENAME=mpide-0023-macosx-20130715
|
|
MPIDE_FILE="$MPIDE_BASENAME".dmg
|
|
else
|
|
MPIDE_BASENAME=mpide-0023-linux64-20130817-test
|
|
MPIDE_FILE="$MPIDE_BASENAME".tgz
|
|
EXTRACT_COMMAND="tar -xzf"
|
|
fi
|
|
|
|
MPIDE_URL=http://chipkit.s3.amazonaws.com/builds/$MPIDE_FILE
|
|
|
|
_pushd $DEPENDENCIES_FOLDER
|
|
if ! test -e $MPIDE_FILE
|
|
then
|
|
echo "Downloading MPIDE..."
|
|
download $MPIDE_URL $MPIDE_FILE
|
|
fi
|
|
|
|
if ! test -d $MPIDE_BASENAME
|
|
then
|
|
echo "Installing MPIDE to local folder..."
|
|
if [ $OS == "mac" ]; then
|
|
hdiutil attach $MPIDE_FILE
|
|
cp -R /Volumes/Mpide/Mpide.app/Contents/Resources/Java $MPIDE_BASENAME
|
|
hdiutil detach /Volumes/Mpide
|
|
else
|
|
$EXTRACT_COMMAND $MPIDE_FILE
|
|
fi
|
|
echo "MPIDE installed"
|
|
fi
|
|
|
|
if [ $OS == "cygwin" ]; then
|
|
chmod a+x mpide/hardware/pic32/compiler/pic32-tools/bin/*
|
|
chmod a+x -R mpide/hardware/pic32/compiler/pic32-tools/pic32mx/
|
|
chmod a+x mpide/*.dll
|
|
chmod a+x mpide/hardware/tools/avr/bin/*
|
|
fi
|
|
_popd
|
|
|
|
fi
|
|
|
|
echo
|
|
echo "${bldgreen}chipKIT dependencies installed.$txtrst"
|