Commit c09e1dcc authored by Stefan Behnel's avatar Stefan Behnel

Let's see if we can't get gcc-8 installed on travis with Ubuntu 16.

parent 2a24a8ad
...@@ -10,8 +10,8 @@ addons: ...@@ -10,8 +10,8 @@ addons:
- gdb - gdb
- python-dbg - python-dbg
- python3-dbg - python3-dbg
- gcc-8 #- gcc-8
- g++-8 #- g++-8
cache: cache:
pip: true pip: true
...@@ -110,11 +110,18 @@ branches: ...@@ -110,11 +110,18 @@ branches:
before_install: before_install:
- | - |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
mkdir "$HOME/gcc-symlinks" sudo apt-get update
ln -s /usr/bin/gcc-8 $HOME/gcc-symlinks/gcc if [ "$BACKEND" = c ]; then
ln -s /usr/bin/g++-8 $HOME/gcc-symlinks/g++ sudo apt-get install gcc-8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60
export CC=gcc-8
else
sudo apt-get install g++-8
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 60
export CXX=g++-8
fi
if [ -n "$CC" ]; then "$CC" --version; else gcc --version; fi if [ -n "$CC" ]; then "$CC" --version; else gcc --version; fi
if [ -n "$CXX" ]; then "$CC" --version; else g++ --version; fi
fi 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