From 791a139a511f7d6452dd48f19e77a94203aa5baa Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Mon, 29 Oct 2018 12:13:42 +0300 Subject: [PATCH] Disable testing C++14 and 17 on clang 3.8 and 3.9. The compiler uses libstdc++ from gcc 4.8, which does not support C++14. In particular, it is trying to import the missing ::gets function. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 899c1ab..9dc7f6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -136,7 +136,7 @@ matrix: - llvm-toolchain-precise-3.7 - os: linux - env: TOOLSET=clang COMPILER=clang++-3.8 CXXSTD=03,11,14,1z + env: TOOLSET=clang COMPILER=clang++-3.8 CXXSTD=03,11 addons: apt: packages: @@ -146,7 +146,7 @@ matrix: - llvm-toolchain-precise-3.8 - os: linux - env: TOOLSET=clang COMPILER=clang++-3.9 CXXSTD=03,11,14,1z + env: TOOLSET=clang COMPILER=clang++-3.9 CXXSTD=03,11 addons: apt: packages: