blob: 43581a5f3b52f1c1c1ba21c1dfad48dfd730b3f0 [file] [log] [blame]
#!/bin/sh
set -ev
./bootstrap.sh
./configure --enable-tutorial=no
make -j3 precross
set +e
make cross$1
RET=$?
if [ $RET -ne 0 ]; then
cat test/log/unexpected_failures.log
fi
exit $RET