From c80440af861f2cb354d6037a1c8a5bc7151d8826 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 7 Jan 2017 20:05:00 +0100 Subject: [PATCH] Dont 'include -stdlib=libc++ in CXXFLAGS in Travis build script There is no need to specify it explicitly any more and it seems to confuse make because of an apparent problem with (insufficient?) quoting in Mac builds. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b0d8645e08..9525b6eab3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ matrix: - os: osx osx_image: xcode6.4 compiler: clang - env: wxCONFIGURE_FLAGS="--enable-cxx11" wxMAKEFILE_FLAGS="CXXFLAGS='-std=c++11 -stdlib=libc++'" wxSKIP_SAMPLES=1 + env: wxCONFIGURE_FLAGS="--enable-cxx11" wxMAKEFILE_FLAGS="CXXFLAGS=-std=c++11" wxSKIP_SAMPLES=1 branches: only: