Skip to content

Commit

Permalink
GH-38847: [Documentation][C++] Explicitly note that compute is option…
Browse files Browse the repository at this point in the history
…al (#43629)

### Rationale for this change

A user didn't know from reading just the compute documentation that compute is an optional feature. We can make that explicit

### What changes are included in this PR?

Added a cross-reference to the optional features section

### Are these changes tested?

No

### Are there any user-facing changes?

No

* GitHub Issue: #38847

Authored-by: Benjamin Kietzman <[email protected]>
Signed-off-by: Benjamin Kietzman <[email protected]>
  • Loading branch information
bkietz authored Aug 19, 2024
1 parent a380d69 commit 9d4dcc9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/source/cpp/tutorials/compute_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ Pre-requisites

Before continuing, make sure you have:

1. An Arrow installation, which you can set up here: :doc:`/cpp/build_system`
1. An Arrow installation, which you can set up here: :doc:`/cpp/build_system`.
If you're compiling Arrow yourself, be sure you compile with the compute module
enabled (i.e., ``-DARROW_COMPUTE=ON``), see :ref:`cpp_build_optional_components`.

2. An understanding of basic Arrow data structures from :doc:`/cpp/tutorials/basic_arrow`

Expand All @@ -50,7 +52,7 @@ Before running some computations, we need to fill in a couple gaps:

1. We need to include necessary headers.

2. ``A main()`` is needed to glue things together.
2. A ``main()`` is needed to glue things together.

3. We need data to play with.

Expand Down

0 comments on commit 9d4dcc9

Please sign in to comment.