Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions python/doc/source/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,22 @@ To build a self-contained wheel (include Arrow C++ and Parquet C++), one can set
Again, if you did not build parquet-cpp, you should omit ``--with-parquet`` and
if you did not build with plasma, you should omit ``--with-plasma``.

Known issues
------------

If using packages provided by conda-forge (see "Using Conda" above)
together with a reasonably recent compiler, you may get "undefined symbol"
errors when importing pyarrow. In that case you'll need to force the C++
ABI version to the older version used by conda-forge binaries:

.. code-block:: shell

export CXXFLAGS="-D_GLIBCXX_USE_CXX11_ABI=0"
export PYARROW_CXXFLAGS=$CXXFLAGS

Be sure to add ``-DCMAKE_CXX_FLAGS=$CXXFLAGS`` to the cmake invocations
when rebuilding.

Developing on Windows
=====================

Expand Down