blob: 6e7adb83c165a45295f74471b4cad1f3bd1359cd (
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-werror || exit 1
make -j16 2>../make2.log || exit 1
|