diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-11 05:41:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-11 05:41:51 +0300 |
commit | 81b97b30afa0c72e5ff17162c7d1fa88dd6187fb (patch) | |
tree | eaab72100ad146b6cc8d883172517835d73e7e26 /tools/ci/jobs/mxe_gcc5.sh | |
parent | b4b38bb98d95458442c745f30c0d697e2164fcd9 (diff) | |
download | plus-81b97b30afa0c72e5ff17162c7d1fa88dd6187fb.tar.gz plus-81b97b30afa0c72e5ff17162c7d1fa88dd6187fb.tar.bz2 plus-81b97b30afa0c72e5ff17162c7d1fa88dd6187fb.tar.xz plus-81b97b30afa0c72e5ff17162c7d1fa88dd6187fb.zip |
Add ci build with mingw-gcc5-shared-32 and SDL 1 libs.
Diffstat (limited to 'tools/ci/jobs/mxe_gcc5.sh')
-rwxr-xr-x | tools/ci/jobs/mxe_gcc5.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/ci/jobs/mxe_gcc5.sh b/tools/ci/jobs/mxe_gcc5.sh new file mode 100755 index 000000000..e9ae0d97b --- /dev/null +++ b/tools/ci/jobs/mxe_gcc5.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +export LOGFILE=mxe_gcc5.log + +source ./tools/ci/scripts/winvars.sh || exit 1 +source ./build/mingw5flags.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 |