blob: 353ed22a8dd0775c5398f407c6fe2e718fe4d4aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/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
|