You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2018/12/17 16:55:27 UTC

[arrow] branch master updated: ARROW-2637: [C++/Python] Build support and instructions for development on Alpine Linux

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

wesm 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 5c48bdb  ARROW-2637: [C++/Python] Build support and instructions for development on Alpine Linux
5c48bdb is described below

commit 5c48bdb5de7d46b0cf3a479f393224688474b940
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Mon Dec 17 10:55:20 2018 -0600

    ARROW-2637: [C++/Python] Build support and instructions for development on Alpine Linux
    
    Build support is tested by `docker-compose run cpp-alpine`
    
    Author: Krisztián Szűcs <sz...@gmail.com>
    
    Closes #3191 from kszucs/ARROW-2637 and squashes the following commits:
    
    ea43e08ee <Krisztián Szűcs>  add bash to run the tests
    348e982a0 <Krisztián Szűcs>  add README instructions to build arrow on alpine linux
---
 cpp/README.md | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/cpp/README.md b/cpp/README.md
index 010387d..a94c4be 100644
--- a/cpp/README.md
+++ b/cpp/README.md
@@ -46,6 +46,18 @@ sudo apt-get install \
      libboost-system-dev
 ```
 
+On Alpine Linux:
+
+```shell
+apk add autoconf \
+        bash \
+        boost-dev \
+        cmake \
+        g++ \
+        gcc \
+        make
+```
+
 On macOS, you can use [Homebrew][1]:
 
 ```shell