diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-01 03:24:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-01 03:52:06 +0300 |
commit | 547fb04145d2ab1e5c68a47b1e673aa352d41da6 (patch) | |
tree | 6a9273615b7cf96da6fa3e59337585fd79e7d0cf /tools/ci/jobs/mxe_gcc6_tests.sh | |
parent | 3641f656462c27eb34f9aba94bf943c083e054ee (diff) | |
download | plus-547fb04145d2ab1e5c68a47b1e673aa352d41da6.tar.gz plus-547fb04145d2ab1e5c68a47b1e673aa352d41da6.tar.bz2 plus-547fb04145d2ab1e5c68a47b1e673aa352d41da6.tar.xz plus-547fb04145d2ab1e5c68a47b1e673aa352d41da6.zip |
Use mxe with gcc-6 for mxe builds.
Diffstat (limited to 'tools/ci/jobs/mxe_gcc6_tests.sh')
-rwxr-xr-x | tools/ci/jobs/mxe_gcc6_tests.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/ci/jobs/mxe_gcc6_tests.sh b/tools/ci/jobs/mxe_gcc6_tests.sh new file mode 100755 index 000000000..81548bad2 --- /dev/null +++ b/tools/ci/jobs/mxe_gcc6_tests.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +export LOGFILE=mxe_gcc6.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 |