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