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 6001D200498 for ; Tue, 29 Aug 2017 20:36:13 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 5CD23167572; Tue, 29 Aug 2017 18:36:13 +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 CA04E16756F for ; Tue, 29 Aug 2017 20:36:12 +0200 (CEST) Received: (qmail 31555 invoked by uid 500); 29 Aug 2017 18:36:11 -0000 Mailing-List: contact commits-help@arrow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@arrow.apache.org Delivered-To: mailing list commits@arrow.apache.org Received: (qmail 31546 invoked by uid 99); 29 Aug 2017 18:36:11 -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, 29 Aug 2017 18:36:11 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id ACC37F3298; Tue, 29 Aug 2017 18:36:11 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@arrow.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: arrow git commit: ARROW-1428: [C++] Append steps to clone source code to README.mb Date: Tue, 29 Aug 2017 18:36:11 +0000 (UTC) archived-at: Tue, 29 Aug 2017 18:36:13 -0000 Repository: arrow Updated Branches: refs/heads/master 59fb8d0d2 -> 19bbf12a2 ARROW-1428: [C++] Append steps to clone source code to README.mb Author: mnc Closes #1007 from mnc/append_how_to_build_cpp and squashes the following commits: 0ee8f6ce [mnc] append steps to clone source code to README.mb Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/19bbf12a Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/19bbf12a Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/19bbf12a Branch: refs/heads/master Commit: 19bbf12a21a3b5370496c43eecb2e9972a6f2b80 Parents: 59fb8d0 Author: mnc Authored: Tue Aug 29 14:36:06 2017 -0400 Committer: Wes McKinney Committed: Tue Aug 29 14:36:06 2017 -0400 ---------------------------------------------------------------------- cpp/README.md | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/19bbf12a/cpp/README.md ---------------------------------------------------------------------- diff --git a/cpp/README.md b/cpp/README.md index c05e03f..a50d0d8 100644 --- a/cpp/README.md +++ b/cpp/README.md @@ -51,6 +51,8 @@ If you are developing on Windows, see the [Windows developer guide][2]. Simple debug build: + git clone https://github.com/apache/arrow.git + cd arrow/cpp mkdir debug cd debug cmake .. @@ -58,6 +60,8 @@ Simple debug build: Simple release build: + git clone https://github.com/apache/arrow.git + cd arrow/cpp mkdir release cd release cmake .. -DCMAKE_BUILD_TYPE=Release