blob: 353ed22a8dd0775c5398f407c6fe2e718fe4d4aa (
plain) (
tree)
|
|
#!/bin/bash
source ./winvars.sh
source ./mingw5flags.sh
mkdir tmp
cd ..
dir=`pwd`
autoreconf -i
cd build/tmp
../../configure \
--host=${CROSS} \
--enable-werror
make -j9 2>../make2.log
|