1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-03 09:09:47 +02:00

Try upping compiler version (the easy way).

This commit is contained in:
James Crook 2016-08-27 20:24:42 +01:00
parent 80f61589a2
commit d2768c6ab9

View File

@ -3,15 +3,15 @@ addons:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- gcc-4.8
- g++-4.9
- gcc-4.9
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libwxgtk3.0-dev libgtk2.0-dev
- git show -s --format="wxT(\"<a href=\\\"http://github.com/audacity/audacity/commit/%H\\\">%h</a> of %cd\")"
- git show -s --format="wxT(\"<a href=\\\"http://github.com/audacity/audacity/commit/%H\\\">%h</a> of %cd\")" > ./src/RevisionIdent.h
- export CXX="g++-4.8" CC="gcc-4.8"
- FLAGS="-Wall -Wextra"
- export CXX="g++-4.9" CC="gcc-4.9"
- FLAGS="-Wall -Wextra -std=gnu++11"
- export CFLAGS="$CFLAGS $FLAGS"
- export CXXFLAGS="$CXXFLAGS $FLAGS"
language: