summaryrefslogtreecommitdiff
path: root/tools/ci/jobs/mxe_gcc6.sh
blob: 7aa6d1e83ab9816677c1348de9dddb8c4b791345 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

export LOGFILE=mxe_gcc6.log

source ./tools/ci/scripts/winvars.sh || exit 1
source ./tools/ci/flags/mingw6.sh || exit 1

$CC --version
$CXX --version

echo env
env

autoreconf -i || exit 1

./configure \
--host=${CROSS} \
--enable-werror || (cp config.log logs || exit 1)

make -j2 V=0