Skip to content

Commit

Permalink
gcc-4.8 is now preinstalled on Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ivazquez committed Apr 21, 2016
1 parent b90f880 commit 044da5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ os:
- linux
- osx

# Install gcc on osx (default is a front-end for LLVM) and gsl on osx and linux
# Replace gcc on osx (default is a front-end for LLVM) and gsl on osx and linux
before_install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
sudo apt-get install gsl-bin libgsl0-dev;
fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
export CC=gcc-4.8; export CXX=g++-4.8;
brew update;
brew install gcc; export CC=gcc-5; export CXX=g++-5;
brew install gsl;
fi

Expand Down

0 comments on commit 044da5f

Please sign in to comment.