forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-17394: [C++][Parquet] Fix parquet_static dependencies
parquet_static needs Thrift because cpp/src/parquet/thrift_internal.h uses Thrift. See also: microsoft/vcpkg#22552 (comment) We can test this by the following command lines: $ cd cpp/examples/parquet/parquet_arrow $ export Arrow_DIR=${ARROW_INSTALL_PREFIX}/lib/cmake/arrow $ export Parquet_DIR=${ARROW_INSTALL_PREFIX}/lib/cmake/arrow $ cmake -S . -B build -DPARQUET_LINK_SHARED=OFF $ cmake --build build --verbose I also noticed that OpenTelemetry related dependencies are also missed because I usually use -DARROW_WITH_OPENTELEMETRY=ON option for Apache Arrow development. The problem is also fixed in this.
- Loading branch information
Showing
4 changed files
with
29 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters