From 64963bd9fb05698fa359e3639e565b5c9979ba90 Mon Sep 17 00:00:00 2001 From: Soonho Kong Date: Thu, 12 Dec 2013 16:27:58 -0500 Subject: [PATCH] chore(travis): use gcc-4.8.3 (20131205) version for windows build --- .travis.windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.windows.yml b/.travis.windows.yml index 539f91278..af6db5997 100644 --- a/.travis.windows.yml +++ b/.travis.windows.yml @@ -16,8 +16,8 @@ install: fi - mkdir -p /tmp/mxe - cd /tmp/mxe - - wget http://dl.dropboxusercontent.com/u/203889738/gcc/mxe-gcc-4.8.2.tar.bz2 - - tar xfj mxe-gcc-4.8.2.tar.bz2 + - wget http://dl.dropboxusercontent.com/u/203889738/gcc/mxe-gcc-4.8-20131205.tar.bz2 + - tar xfj mxe-gcc-4.8-20131205.tar.bz2 - cd - script: @@ -31,7 +31,7 @@ script: else BUILD_TYPE=Debug; fi - - BUILD_NAME=${TRAVIS_BRANCH}_w64-mingw32-g++-4.8.2_${BUILD_TYPE} + - BUILD_NAME=${TRAVIS_BRANCH}_w64-mingw32-g++-4.8.3_${BUILD_TYPE} - if [[ $TCMALLOC == ON ]]; then BUILD_NAME=${BUILD_NAME}_TC; fi;