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:44:12 UTC

[1/2] incubator-quickstep git commit: Reduced the vectorilazation level to save the build time. [Forced Update!]

Repository: incubator-quickstep
Updated Branches:
  refs/heads/travis-grpc 2ed400087 -> 14ad61c0f (forced update)


Reduced the vectorilazation level to save the build time.


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

Branch: refs/heads/travis-grpc
Commit: 89972a1d9a87bf4410f54f8c65dc6b2a23fe4710
Parents: b145429
Author: Zuyu Zhang <zu...@apache.org>
Authored: Thu Jun 9 15:01:53 2016 -0700
Committer: Zuyu Zhang <zu...@apache.org>
Committed: Thu Jun 9 15:44:27 2016 -0700

----------------------------------------------------------------------
 .travis.yml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/89972a1d/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 12d560c..61f2c7e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,9 +15,8 @@ compiler:
   - clang
 
 env:
-  # Killed due to more than 50 mins to finish.
-  # BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
-  - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
+  - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=selection
+  - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=selection
   - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=none
   - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=none
 
@@ -35,7 +34,7 @@ before_install:
     fi
 
 install:
-  - if [ "$VECTOR_COPY_ELISION_LEVEL" = "joinwithbinaryexpressions" ] && [ "$CC" = "gcc" ]; then
+  - if [ "$VECTOR_COPY_ELISION_LEVEL" = "selection" ] && [ "$CC" = "gcc" ]; then
       export MAKE_JOBS=1;
     else
       export MAKE_JOBS=2;


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

Posted by zu...@apache.org.
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/14ad61c0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/14ad61c0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/14ad61c0

Branch: refs/heads/travis-grpc
Commit: 14ad61c0fcb7ec9e845b06f220d95b36d71d0bff
Parents: 89972a1
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:45:14 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/14ad61c0/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 61f2c7e..7e2a6ad 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,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 -stdlib=libc++";
       echo "Using clang at " `which $CC-3.7` " and $CXX at " `which $CXX-3.7`;
     fi