From d2e906e63bbff51084c7f85dd3128e2eaaeef2b5 Mon Sep 17 00:00:00 2001 From: Tristan Penman Date: Tue, 2 Feb 2016 08:26:18 -0800 Subject: [PATCH] Add some debug output to Travis CI build script --- travis.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/travis.sh b/travis.sh index fba6ab2..3472c2e 100755 --- a/travis.sh +++ b/travis.sh @@ -23,6 +23,7 @@ pushd build > /dev/null CMAKE_FLAGS= if [[ $CXX == 'clang++' ]]; then CMAKE_FLAGS=-DCMAKE_CXX_FLAGS=-DBOOST_NO_CXX11_ALLOCATOR + echo "Additional flags to pass to cmake: $CMAKE_FLAGS" fi echo "Attempting to build and run test suite with C++11 support disabled..."