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

export LOGFILE=mxe_gcc5.log

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

$CC --version
$CXX --version

autoreconf -i || exit 1

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

make -j2 V=0