-
Notifications
You must be signed in to change notification settings - Fork 917
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
Fix cmake error after upgrading to Arrow 9 #11513
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-22.10 #11513 +/- ##
===============================================
Coverage ? 86.48%
===============================================
Files ? 145
Lines ? 22844
Branches ? 0
===============================================
Hits ? 19756
Misses ? 3088
Partials ? 0 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
cpp/cmake/thirdparty/get_arrow.cmake
Outdated
@@ -121,6 +121,7 @@ function(find_and_configure_arrow VERSION BUILD_STATIC ENABLE_S3 ENABLE_ORC ENAB | |||
"ARROW_GRPC_USE_SHARED ${ARROW_BUILD_SHARED}" | |||
"ARROW_PROTOBUF_USE_SHARED ${ARROW_BUILD_SHARED}" | |||
"ARROW_ZSTD_USE_SHARED ${ARROW_BUILD_SHARED}" | |||
"xsimd_SOURCE BUNDLED" |
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.
What is the default value here?
It looks like when the dependency source is resolved, it may have an AUTO option that attempts to find the package and falls back to the bundled copy.
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.
AUTO
also works on my local machine. I'm going to change this to AUTO
.
@gpucibot merge |
After upgrading to Arrow 9 (#11507), some systems experience a cmake issue:
This may be due to the configurations for Arrow is looking for a local installation of
xsimd
, which does not exist or the installation path is not provided.This PRs adds an option to cudf cmake, specifying that Arrow should handle
xsimd
by itself.