Skip to content

Commit

Permalink
Upgrade to gcc8 as it is default in Debian Buster
Browse files Browse the repository at this point in the history
  • Loading branch information
tsiren committed Aug 12, 2019
1 parent b7963b1 commit 06b87a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions travis-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ set -o verbose

sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get -qq update
sudo apt-get -y install gcc-7 g++-7 gcc-7-multilib g++-7-multilib
sudo apt-get -y install gcc-8 g++-8 gcc-8-multilib g++-8-multilib
sudo apt-get install mesa-common-dev:i386 libxxf86dga-dev:i386 libasound2-dev:i386 libxrandr-dev:i386 libxxf86vm-dev:i386 libbsd-dev:i386
sudo apt-get install p7zip-full

# Build ETe

#export BUILD_CONFIGURATION="Debug"
export BUILD_CONFIGURATION="Release"
export CC="gcc-7 -m32"
export CXX="g++-7 -m32"
export CC="gcc-8 -m32"
export CXX="g++-8 -m32"

cd src
if [[ "$BUILD_CONFIGURATION" == "Release" ]] ; then
Expand Down

0 comments on commit 06b87a1

Please sign in to comment.