Commit 49ba632a authored by Stefan Behnel's avatar Stefan Behnel

Explicitly set gcc version in travis script.

parent c09e1dcc
...@@ -34,7 +34,7 @@ env: ...@@ -34,7 +34,7 @@ env:
- CCACHE_SLOPPINESS=pch_defines,time_macros - CCACHE_SLOPPINESS=pch_defines,time_macros
- CCACHE_COMPRESS=1 - CCACHE_COMPRESS=1
- CCACHE_MAXSIZE=150M - CCACHE_MAXSIZE=150M
- PATH="/usr/lib/ccache:$HOME/gcc-symlinks:$PATH" - PATH="/usr/lib/ccache:$PATH"
matrix: matrix:
- BACKEND=c - BACKEND=c
- BACKEND=cpp - BACKEND=cpp
...@@ -114,10 +114,12 @@ before_install: ...@@ -114,10 +114,12 @@ before_install:
if [ "$BACKEND" = c ]; then if [ "$BACKEND" = c ]; then
sudo apt-get install gcc-8 sudo apt-get install gcc-8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60
sudo update-alternatives --set gcc /usr/bin/gcc-8
export CC=gcc-8 export CC=gcc-8
else else
sudo apt-get install g++-8 sudo apt-get install g++-8
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 60 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 60
sudo update-alternatives --set g++ /usr/bin/g++-8
export CXX=g++-8 export CXX=g++-8
fi fi
if [ -n "$CC" ]; then "$CC" --version; else gcc --version; fi if [ -n "$CC" ]; then "$CC" --version; else gcc --version; fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment