From 3455e66cfc979554da386de3d0883a615aee5d23 Mon Sep 17 00:00:00 2001 From: Florian Walch Date: Sun, 17 Jul 2016 16:29:59 +0200 Subject: Travis: Build 3rd-party dependencies with system's default compiler. Using GCC 4.9 for building the dependencies caused some linker error on OS X. --- .ci/common/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/common/build.sh b/.ci/common/build.sh index f31fb01360..c89d4c559b 100644 --- a/.ci/common/build.sh +++ b/.ci/common/build.sh @@ -31,7 +31,7 @@ build_deps() { # update CMake configuration and update to newer deps versions. cd "${DEPS_BUILD_DIR}" echo "Configuring with '${DEPS_CMAKE_FLAGS}'." - cmake ${DEPS_CMAKE_FLAGS} "${TRAVIS_BUILD_DIR}/third-party/" + CC= cmake ${DEPS_CMAKE_FLAGS} "${TRAVIS_BUILD_DIR}/third-party/" if ! ${MAKE_CMD}; then exit 1 -- cgit