You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2018/12/12 06:29:14 UTC

[arrow] branch master updated: ARROW-3996: [C++] Add missing packages on Linux

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 28d16c0  ARROW-3996: [C++] Add missing packages on Linux
28d16c0 is described below

commit 28d16c0e5682edeeebb37d3724f17b82c10aa4cf
Author: kabukawa <ka...@gmail.com>
AuthorDate: Wed Dec 12 15:28:54 2018 +0900

    ARROW-3996: [C++] Add missing packages on Linux
    
    [C++] Build requirement libraries add to README.md.
    
    * autoconf
    * Jemalloc
    * boost-regex
    
    Author: kabukawa <ka...@gmail.com>
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #3157 from kabukawa/apache-arrow-develop and squashes the following commits:
    
    a9f465a3 <Kouhei Sutou> Add autoconf
    45568fd1 <kabukawa>  Instration requirement add.(modified)
    dcee4855 <kabukawa>  Instration requirement add.
---
 cpp/README.md | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/cpp/README.md b/cpp/README.md
index 7d08517..1278ca0 100644
--- a/cpp/README.md
+++ b/cpp/README.md
@@ -36,9 +36,13 @@ Building Arrow requires:
 On Ubuntu/Debian you can install the requirements with:
 
 ```shell
-sudo apt-get install cmake \
+sudo apt-get install \
+     autoconf \
+     build-essential \
+     cmake \
      libboost-dev \
      libboost-filesystem-dev \
+     libboost-regex-dev \
      libboost-system-dev
 ```