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

[6/7] incubator-quickstep git commit: Fix the protobuf 3.0 beta link issue using Clang.

Fix the protobuf 3.0 beta link issue using 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/75a31745
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/75a31745
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/75a31745

Branch: refs/heads/travis-grpc
Commit: 75a317455a94ef9f72258a7f94e20819755c4f82
Parents: b145429
Author: Zuyu Zhang <zu...@apache.org>
Authored: Wed Jun 8 23:21:34 2016 -0700
Committer: Zuyu Zhang <zu...@apache.org>
Committed: Thu Jun 9 15:02:12 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/75a31745/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 12d560c..819646e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,8 +15,7 @@ compiler:
   - clang
 
 env:
-  # Killed due to more than 50 mins to finish.
-  # BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
+  - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
   - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
   - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=none
   - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=none
@@ -30,7 +29,7 @@ before_install:
       tar xf $LLVM_ARCHIVE_PATH -C $HOME/clang-$LLVM_VERSION --strip-components 1;
       ln -sf $HOME/clang-$LLVM_VERSION/bin/clang++ $HOME/clang-$LLVM_VERSION/bin/clang++-3.7;
       export PATH=$HOME/clang-$LLVM_VERSION/bin:$PATH;
-      export CPPFLAGS="-I $HOME/clang-$LLVM_VERSION/include/c++/v1";
+      export CPPFLAGS="-I $HOME/clang-$LLVM_VERSION/include/c++/v1 -L$HOME/clang-$LLVM_VERSION/lib";
       echo "Using clang at " `which $CC-3.7` " and $CXX at " `which $CXX-3.7`;
     fi