Skip to content

Commit 14fc9f1

Browse files
committed
Merge pull request open-source-parsers#312 from cdunn2001/master
gcc-4.9, clang (3.0)
2 parents 056e5f9 + 658fa37 commit 14fc9f1

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.travis.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,24 @@
77
# to allow C++11, though we are not yet building with -std=c++11
88

99
install:
10-
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
10+
# /usr/bin/gcc is 4.6 always, but gcc-X.Y is available.
11+
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
12+
# /usr/bin/clang is our version already, and clang-X.Y does not exist.
13+
#- if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.7" CC="clang-3.7"; fi
14+
- echo ${PATH}
15+
- ls /usr/local
16+
- ls /usr/local/bin
17+
- export PATH=/usr/local/bin:/usr/bin:${PATH}
18+
- echo ${CXX}
19+
- ${CXX} --version
20+
- which valgrind
1121
addons:
1222
apt:
1323
sources:
1424
- ubuntu-toolchain-r-test
1525
packages:
16-
- gcc-4.8
17-
- g++-4.8
26+
- gcc-4.9
27+
- g++-4.9
1828
- clang
1929
- valgrind
2030
os:
@@ -29,6 +39,5 @@ env:
2939
- SHARED_LIB=ON STATIC_LIB=ON CMAKE_PKG=ON BUILD_TYPE=release VERBOSE_MAKE=false
3040
- SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug VERBOSE_MAKE=true VERBOSE
3141
notifications:
32-
email:
33-
42+
email: false
3443
sudo: false

0 commit comments

Comments
 (0)