You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by na...@apache.org on 2016/06/09 00:34:59 UTC

incubator-quickstep git commit: Link clang++-3.7 to clang++

Repository: incubator-quickstep
Updated Branches:
  refs/heads/travis_llvm_fix b82730f54 -> 559e8806a


Link clang++-3.7 to clang++


Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/559e8806
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/559e8806
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/559e8806

Branch: refs/heads/travis_llvm_fix
Commit: 559e8806a1a05de8afa3b67265befa32464b3e6a
Parents: b82730f
Author: Navneet Potti <na...@gmail.com>
Authored: Wed Jun 8 19:34:47 2016 -0500
Committer: Navneet Potti <na...@gmail.com>
Committed: Wed Jun 8 19:34:47 2016 -0500

----------------------------------------------------------------------
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/559e8806/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 53c0f3d..b60519f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,9 +27,10 @@ before_install:
       wget http://llvm.org/releases/$LLVM_VERSION/clang+llvm-$LLVM_VERSION-x86_64-linux-gnu-ubuntu-14.04.tar.xz -O $LLVM_ARCHIVE_PATH;
       mkdir -p $HOME/clang-$LLVM_VERSION;
       tar xf $LLVM_ARCHIVE_PATH -C $HOME/clang-$LLVM_VERSION --strip-components 1;
+      ln -sf $HOME/clang-$LLVM_VERSION/clang++ $HOME/clang-$LLVM_VERSION/clang++-3.7;
       export PATH=$HOME/clang-$LLVM_VERSION/bin:$PATH;
       export CPPFLAGS="-I $HOME/clang-$LLVM_VERSION/include/c++/v1";
-      which $CC;
+      echo "Using $CC at " `which $CC` " and $CXX at " `which $CXX`;
     fi
 
 install: