Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 40794200C22 for ; Tue, 21 Feb 2017 15:32:18 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 3EF4C160B68; Tue, 21 Feb 2017 14:32:18 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 870FD160B3E for ; Tue, 21 Feb 2017 15:32:17 +0100 (CET) Received: (qmail 40520 invoked by uid 500); 21 Feb 2017 14:32:16 -0000 Mailing-List: contact commits-help@parquet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@parquet.apache.org Delivered-To: mailing list commits@parquet.apache.org Received: (qmail 40511 invoked by uid 99); 21 Feb 2017 14:32:16 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Feb 2017 14:32:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A511FDFC1C; Tue, 21 Feb 2017 14:32:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@parquet.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: parquet-cpp git commit: PARQUET-886: Update README to include system configuration requirements Date: Tue, 21 Feb 2017 14:32:16 +0000 (UTC) archived-at: Tue, 21 Feb 2017 14:32:18 -0000 Repository: parquet-cpp Updated Branches: refs/heads/master 3527224ba -> 5d408fe45 PARQUET-886: Update README to include system configuration requirements This presumes that we will make Thrift compile in external project form (needs to be tested in Travis CI) Author: Wes McKinney Closes #253 from wesm/PARQUET-886 and squashes the following commits: 10647e0 [Wes McKinney] Add libboost-regex-dev 8cdbb88 [Wes McKinney] Update README to include system configuration requirements Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/5d408fe4 Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/5d408fe4 Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/5d408fe4 Branch: refs/heads/master Commit: 5d408fe4556c4fffe82c03c0aedfb124042cc9f9 Parents: 3527224 Author: Wes McKinney Authored: Tue Feb 21 09:32:10 2017 -0500 Committer: Wes McKinney Committed: Tue Feb 21 09:32:10 2017 -0500 ---------------------------------------------------------------------- README.md | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/5d408fe4/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 6970d95..5b956b3 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,31 @@ +## System Dependencies + +### Linux + +parquet-cpp requires gcc 4.8 or higher on Linux. + +To build parquet-cpp out of the box, you must install some build prerequisites +for the thirdparty dependencies. On Debian/Ubuntu, these can be installed with: + +``` +sudo apt-get install libboost-dev libboost-filesystem-dev \ + libboost-program-options-dev libboost-regex-dev \ + libboost-system-dev libboost-test-dev \ + libssl-dev libtool bison flex pkg-config +``` + +### OS X + +You must use XCode 6 or higher. We recommend using Homebrew to install Boost, +which is required for Thrift: + +``` +brew install boost +``` + ## Third Party Dependencies - Apache Arrow (memory management, built-in IO, optional Array adapters) @@ -43,13 +68,6 @@ You can either install these dependencies separately, otherwise they will be built automatically as part of the build. -Note that thrift will not be build inside the project on macOS. Instead you -should install it via homebrew: - -``` -brew install thrift -``` - ## Build - `cmake .`