blob: d1a12b2b2f6f851ec972bb66835eecdb2cf0056a (
plain) (
tree)
|
|
#!/bin/bash
source ./winvars.sh || exit 1
mkdir tmp
cd ..
dir=`pwd`
autoreconf -i || exit 1
cd build/tmp
../../configure \
--host=${CROSS} \
--enable-unittests || exit 1
make check -j8 2>../make2.log || exit 1
|