blob: 5312ade5718b97ed67086a94d08977e9d256a7aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
source ./winvars.sh
mkdir tmp
cd ..
dir=`pwd`
autoreconf -i
cd build/tmp
../../configure \
--host=${CROSS} \
--enable-unittests
make check -j8 2>../make2.log
|