You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by uw...@apache.org on 2019/01/18 09:20:42 UTC

[arrow] branch master updated: ARROW-4280: Update README.md to reflect parquet deps

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

uwe 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 23853a0  ARROW-4280: Update README.md to reflect parquet deps
23853a0 is described below

commit 23853a0f008c5e96a2f534376770c81e51b899a8
Author: emkornfield <em...@gmail.com>
AuthorDate: Fri Jan 18 10:20:31 2019 +0100

    ARROW-4280: Update README.md to reflect parquet deps
    
    It looks like bison/flex also need to be installed on a clean ubuntu installation.
    
    Author: emkornfield <em...@gmail.com>
    
    Closes #3417 from emkornfield/update_build_instructions and squashes the following commits:
    
    6af2f341 <emkornfield> reference thrift.
    41db4213 <emkornfield> Update README.md to reflect parquet deps
---
 cpp/README.md | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/cpp/README.md b/cpp/README.md
index 2724ff4..5700096 100644
--- a/cpp/README.md
+++ b/cpp/README.md
@@ -32,6 +32,8 @@ Building Arrow requires:
 * A C++11-enabled compiler. On Linux, gcc 4.8 and higher should be sufficient.
 * CMake 3.2 or higher
 * Boost
+* Bison/flex (for building Apache Thrift from source only, 
+a parquet dependency.)
 
 Testing arrow with ctest requires:
 
@@ -48,7 +50,9 @@ sudo apt-get install \
      libboost-filesystem-dev \
      libboost-regex-dev \
      libboost-system-dev \
-     python
+     python \
+     bison \
+     flex
 ```
 
 On Alpine Linux: