Describe the bug, including details regarding any error messages, version, and platform.
When compiling the latest version (16.1.0) of arrow C++ with the PARQUET support on macos (M2), I am getting:
'boost/numeric/conversion/cast.hpp': No such file or directory
The compilation error disappears when inside the file arrow/cpp/src/parquet/CMakeLists.txt, Boost::headers is added as a depencency e.g. as:
list(APPEND PARQUET_SHARED_PRIVATE_LINK_LIBS thrift::thrift Boost::headers)
list(APPEND PARQUET_STATIC_LINK_LIBS thrift::thrift Boost::headers)
This only occurs with the latest (16.1.0) version.
Component(s)
C++