From 15a850a24f77cf1e67cdbb1de7b7ffbed8805982 Mon Sep 17 00:00:00 2001 From: James Chen Date: Mon, 24 Nov 2014 15:01:14 +0800 Subject: [PATCH] Disable clang build on linux temporarily since we're using "-stdlib=libc++ " which wasn't installed on travis machine. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cdee895bb8dc..3776efb70310 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,8 @@ env: - GEN_COCOS_FILES=YES - PLATFORM=mac-ios PUSH_TO_MAC=YES - PLATFORM=linux DEBUG=1 CC_COMPILER=gcc CXX_COMPILER=g++ - - PLATFORM=linux DEBUG=1 CC_COMPILER=clang CXX_COMPILER=clang++ + # Disable clang build on linux temporarily since we're using "-stdlib=libc++ " which wasn't installed on travis machine. + # - PLATFORM=linux DEBUG=1 CC_COMPILER=clang CXX_COMPILER=clang++ # Since switching to C++11 only the ARM version of the nactive client # port currently builds. TODO(sbc): Re-enable all architectures. # Disabled travis-ci build for native client port since it doesn't support std::thread, std::mutex.