Try using a newer gcc on travis

This commit is contained in:
Alex Crichton 2015-09-10 11:15:33 -07:00
parent f0129905d4
commit f8b1b3d37b
1 changed files with 9 additions and 4 deletions

View File

@ -20,14 +20,19 @@ script:
notifications:
email:
on_success: never
# Need gcc 4.7 for alignof/stdalign.h and we use multilib as we test both 32/64
addons:
sources:
- ubuntu-toolchain-r-test
apt:
packages:
- gcc-multilib
- gcc-4.7-multilib
env:
matrix:
- ARCH=x86_64
- ARCH=i686
- ARCH=x86_64 CC=gcc-4.7
- ARCH=x86_64 CC=clang
- ARCH=i686 CC=gcc-4.7
- ARCH=i686 CC=clang
os:
- linux