You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by we...@apache.org on 2016/08/03 23:45:35 UTC

parquet-cpp git commit: PARQUET-672: Build dev binary artifacts in debug mode

Repository: parquet-cpp
Updated Branches:
  refs/heads/master 38f0ffd5a -> c2e5f08cb


PARQUET-672: Build dev binary artifacts in debug mode

I will move these builds to conda-forge as soon as possible so we aren't overly reliant on the Travis master builds for development of Apache Arrow

Author: Wes McKinney <we...@apache.org>

Closes #141 from wesm/PARQUET-672 and squashes the following commits:

09287bf [Wes McKinney] Set conda dev artifact build to debug type


Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo
Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/c2e5f08c
Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/c2e5f08c
Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/c2e5f08c

Branch: refs/heads/master
Commit: c2e5f08cbefc3326535ef0ee99812b5123754d37
Parents: 38f0ffd
Author: Wes McKinney <we...@apache.org>
Authored: Wed Aug 3 16:43:39 2016 -0700
Committer: Wes McKinney <we...@apache.org>
Committed: Wed Aug 3 16:43:39 2016 -0700

----------------------------------------------------------------------
 conda.recipe/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/c2e5f08c/conda.recipe/build.sh
----------------------------------------------------------------------
diff --git a/conda.recipe/build.sh b/conda.recipe/build.sh
index 2e7b1c6..7fe8f91 100644
--- a/conda.recipe/build.sh
+++ b/conda.recipe/build.sh
@@ -50,7 +50,7 @@ source thirdparty/versions.sh
 export GTEST_HOME=`pwd`/thirdparty/$GTEST_BASEDIR
 
 cmake \
-    -DCMAKE_BUILD_TYPE=release \
+    -DCMAKE_BUILD_TYPE=debug \
     -DCMAKE_INSTALL_PREFIX=$PREFIX \
     -DPARQUET_BUILD_BENCHMARKS=off \
     ..