From 19c4a3b6267c2670bb2c7d2e051caa3031351411 Mon Sep 17 00:00:00 2001 From: Soonho Kong Date: Tue, 5 Nov 2013 02:55:16 -0500 Subject: [PATCH] chore(travis): update to use mxe-gcc-4.8.2.tar.bz2 - fix compatibility problem with cmake-2.8.12 - update g++ version from 4.8.1 to 4.8.2 - include lua --- .travis.windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.windows.yml b/.travis.windows.yml index 5fc4456ce..667d4fe7d 100644 --- a/.travis.windows.yml +++ b/.travis.windows.yml @@ -18,8 +18,8 @@ install: fi - mkdir -p /tmp/mxe - cd /tmp/mxe - - wget http://dl.dropboxusercontent.com/u/203889738/gcc/mxe-gcc-4.8.1.tar.bz2 - - tar xfj mxe-gcc-4.8.1.tar.bz2 + - wget http://dl.dropboxusercontent.com/u/203889738/gcc/mxe-gcc-4.8.2.tar.bz2 + - tar xfj mxe-gcc-4.8.2.tar.bz2 - cd - script: @@ -33,7 +33,7 @@ script: else BUILD_TYPE=Debug; fi - - BUILD_NAME=${TRAVIS_BRANCH}_w64-mingw32-g++-4.8.1_${BUILD_TYPE} + - BUILD_NAME=${TRAVIS_BRANCH}_w64-mingw32-g++-4.8.2_${BUILD_TYPE} - if [[ $TCMALLOC == ON ]]; then BUILD_NAME=${BUILD_NAME}_TC; fi;