diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-06-17 20:20:13 +0900 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-06-18 06:32:23 +0900 |
commit | fca06fd865688012403dc2013689bdd9c784d342 (patch) | |
tree | 849685587f7b9c4b9dfd1d9ba44f4393b9d9646e /scripts/linux2 | |
parent | ca84d96a50a4751432a6f6413547408346d95867 (diff) | |
download | subsurface-fca06fd865688012403dc2013689bdd9c784d342.tar.gz |
Travis: build mobile on Linux with newer gcc
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/linux2')
-rw-r--r-- | scripts/linux2/before_install.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/linux2/before_install.sh b/scripts/linux2/before_install.sh index 3b0ddceb4..2e82e1156 100644 --- a/scripts/linux2/before_install.sh +++ b/scripts/linux2/before_install.sh @@ -8,6 +8,10 @@ set -x +# make sure we use a new enough compiler +export CC=gcc-5 +export CXX=g++-5 + # Travis only pulls shallow repos. But that messes with git describe. # Sorry Travis, fetching the whole thing and the tags as well... git fetch --unshallow |