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 3ddd3b6 ARROW-14013: [C++][Docs] Add instructions for Fedora
3ddd3b6 is described below
commit 3ddd3b60345b72bbae64f4689f51e6eeffe55312
Author: Benson Muite <[email protected]>
AuthorDate: Tue Sep 21 10:09:46 2021 +0900
ARROW-14013: [C++][Docs] Add instructions for Fedora
Dependencies for building on Fedora Linux
Closes #11154 from bkmgit/bkmgit-fedora
Authored-by: Benson Muite <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
docs/source/developers/cpp/building.rst | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/docs/source/developers/cpp/building.rst
b/docs/source/developers/cpp/building.rst
index 085a5cd..12e4cf2 100644
--- a/docs/source/developers/cpp/building.rst
+++ b/docs/source/developers/cpp/building.rst
@@ -60,6 +60,16 @@ On Alpine Linux:
g++ \
gcc \
make
+
+On Fedora Linux:
+
+.. code-block:: shell
+
+ sudo dnf install \
+ cmake \
+ gcc \
+ gcc-c++ \
+ make
On macOS, you can use `Homebrew <https://brew.sh/>`_:
@@ -130,7 +140,10 @@ Minimal debug build with unit tests:
.. code-block:: shell
git clone https://github.com/apache/arrow.git
- cd arrow/cpp
+ cd arrow
+ git submodule update --init --recursive
+ export ARROW_TEST_DATA=$PWD/testing/data
+ cd cpp
mkdir debug
cd debug
cmake -DCMAKE_BUILD_TYPE=Debug -DARROW_BUILD_TESTS=ON ..