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 2017/04/11 14:22:17 UTC

arrow git commit: ARROW-804: [GLib] Update build document

Repository: arrow
Updated Branches:
  refs/heads/master b7423a63c -> b3cec804b


ARROW-804: [GLib] Update build document

Author: Kouhei Sutou <ko...@clear-code.com>

Closes #524 from kou/glib-update-build-document and squashes the following commits:

07085e6 [Kouhei Sutou] [GLib] Update build document


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/b3cec804
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/b3cec804
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/b3cec804

Branch: refs/heads/master
Commit: b3cec804bbd1b2626ff55e1a733deca9b7ba032b
Parents: b7423a6
Author: Kouhei Sutou <ko...@clear-code.com>
Authored: Tue Apr 11 10:22:11 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Tue Apr 11 10:22:11 2017 -0400

----------------------------------------------------------------------
 c_glib/README.md | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/b3cec804/c_glib/README.md
----------------------------------------------------------------------
diff --git a/c_glib/README.md b/c_glib/README.md
index 0137d90..b253d32 100644
--- a/c_glib/README.md
+++ b/c_glib/README.md
@@ -114,7 +114,30 @@ Now you can install Arrow GLib packages:
 % sudo yum install -y --enablerepo=epel arrow-glib-devel
 ```
 
-### Build
+### How to build by users
+
+Arrow GLib users should use released source archive to build Arrow
+GLib:
+
+```text
+% wget https://dist.apache.org/repos/dist/release/arrow/arrow-0.3.0/apache-arrow-0.3.0.tar.gz
+% tar xf apache-arrow-0.3.0.tar.gz
+% cd apache-arrow-0.3.0
+```
+
+You need to build and install Arrow C++ before you build and install
+Arrow GLib. See Arrow C++ document about how to install Arrow C++.
+
+You can build and install Arrow GLib after you install Arrow C++:
+
+```text
+% cd c_glib
+% ./configure
+% make
+% sudo make install
+```
+
+### How to build by developers
 
 You need to install Arrow C++ before you install Arrow GLib. See Arrow
 C++ document about how to install Arrow C++.