mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-04 17:49:06 +00:00
fix clang++ build by upgrading to 3.5
This commit is contained in:
parent
8c82ee4c5f
commit
c4a13fc6e0
16
.travis.yml
16
.travis.yml
@ -1,4 +1,4 @@
|
||||
language: c
|
||||
language: generic
|
||||
|
||||
sudo: false
|
||||
|
||||
@ -6,31 +6,27 @@ matrix:
|
||||
include:
|
||||
- os: linux
|
||||
compiler: gcc
|
||||
env: COVERAGE=gcov-4.9
|
||||
env: COVERAGE=gcov-4.9 CC="gcc-4.9" CXX="g++-4.9"
|
||||
addons:
|
||||
apt:
|
||||
sources: ['ubuntu-toolchain-r-test']
|
||||
packages: [ 'g++-4.9', 'protobuf-compiler', 'libprotobuf-dev' ]
|
||||
packages: [ 'g++-4.9' ]
|
||||
- os: linux
|
||||
compiler: clang
|
||||
env: CC="clang-3.5" CXX="clang++-3.5"
|
||||
addons:
|
||||
apt:
|
||||
packages: [ 'protobuf-compiler', 'libprotobuf-dev', 'libc++-dev' ]
|
||||
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.5' ]
|
||||
packages: [ 'clang-3.5' ]
|
||||
- os: osx
|
||||
compiler: clang
|
||||
|
||||
|
||||
install:
|
||||
- if [[ $(uname -s) == 'Darwin' ]]; then brew install protobuf; fi;
|
||||
- if [ -n "${COVERAGE}" ]; then
|
||||
export CXX=g++-4.9;
|
||||
export CC=gcc-4.9;
|
||||
export CXXFLAGS="--coverage -g";
|
||||
export CFLAGS="--coverage -g";
|
||||
export LDFLAGS="--coverage";
|
||||
elif [[ $(uname -s) == 'Linux' ]]; then
|
||||
export CXX=clang++;
|
||||
export CXXFLAGS="-stdlib=libc++";
|
||||
fi;
|
||||
- make
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user