language: cpp cache: directories: - clang matrix: include: - os: osx osx_image: xcode7.2 compiler: clang - os: osx osx_image: xcode7.2 compiler: gcc env: VERSION=-5 - compiler: gcc addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.9 - libmpfr-dev - libgmp-dev - libmpc-dev - binutils-dev env: VERSION=-4.9 - compiler: gcc addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-5 - libmpfr-dev - libgmp-dev - libmpc-dev - binutils-dev env: VERSION=-5 - compiler: clang addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - libmpfr-dev - libgmp-dev - libmpc-dev - binutils-dev env: CLANG_LINK=http://llvm.org/releases/3.8.0/clang+llvm-3.8.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz - compiler: clang addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - libmpfr-dev - libgmp-dev - libmpc-dev - binutils-dev env: CLANG_LINK=http://llvm.org/releases/3.7.0/clang+llvm-3.7.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz before_install: - export GRIDDIR=`pwd` - if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CC" == "clang" ]] && [ ! -e clang/bin ]; then wget $CLANG_LINK; tar -xf `basename $CLANG_LINK`; mkdir clang; mv clang+*/* clang/; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CC" == "clang" ]]; then export PATH="${GRIDDIR}/clang/bin:${PATH}"; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CC" == "clang" ]]; then export LD_LIBRARY_PATH="${GRIDDIR}/clang/lib:${LD_LIBRARY_PATH}"; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install libmpc; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$CC" == "gcc" ]]; then brew install gcc5; fi install: - export CC=$CC$VERSION - export CXX=$CXX$VERSION - echo $PATH - which $CC - $CC --version - which $CXX - $CXX --version - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export LDFLAGS='-L/usr/local/lib'; fi env: matrix: - PRECISION=single - PRECISION=double script: - ./scripts/reconfigure_script - mkdir build - cd build - ../configure CXXFLAGS="-msse4.2 -O3 -std=c++11" LIBS="-lmpfr -lgmp" --enable-precision=$PRECISION --enable-simd=SSE4 --enable-comms=none - make -j4 - ./benchmarks/Benchmark_dwf --threads 1