-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-46231: [C++][CMake] Fix arrow_bundled_dependencies to be externally accessible by FetchContent
#46232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
|
|
@github-actions crossbow submit -g cpp -g r |
kou
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
Revision: 7d50c4a Submitted crossbow builds: ursacomputing/crossbow @ actions-7cc39ab5b3 |
It seems that I managed to use |
|
Should we merge this? @kou |
We may need more changes for full Lines 20 to 99 in 8e61cdd
|
|
Yes, I only used limited features from Arrow and Parquet. If I need to use provided libraries like zstd and zlib, I may hit new issues. |
|
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit 8e61cdd. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 1 possible false positive for unstable benchmarks that are known to sometimes produce them. |
Rationale for this change
arrow_bundled_dependenciesis an IMPORTED library which links toarrow_bundled_dependencies_merge. When arrow-cpp is used externally as a third-party dependency via CMakeFetchContent, targetarrow_bundled_dependenciesis not accessible by the parent project (butarrow_bundled_dependencies_mergeis). It is difficult for the parent project to locate the built product ofarrow_bundled_dependencies_mergeand install it.What changes are included in this PR?
Change
IMPORTEDlibraryarrow_bundled_dependenciesto beGLOBAL.Are these changes tested?
Are there any user-facing changes?
I don't think so.