-
Notifications
You must be signed in to change notification settings - Fork 915
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
Rename ARROW_STATIC_LIB because it conflicts with one in FindArrow.cmake #7518
Rename ARROW_STATIC_LIB because it conflicts with one in FindArrow.cmake #7518
Conversation
…rrow's FindArrow.cmake
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.
LGTM, thanks @trxcllnt
The test failures seem unrelated to this change. |
rerun tests |
@gpucibot merge |
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7518 +/- ##
===============================================
+ Coverage 81.86% 82.27% +0.41%
===============================================
Files 101 101
Lines 16884 17261 +377
===============================================
+ Hits 13822 14202 +380
+ Misses 3062 3059 -3
Continue to review full report at Codecov.
|
…ake (rapidsai#7518) Rename `ARROW_STATIC_LIB` because it conflicts with CMake variable in Arrow's `FindArrow.cmake`. Here's the new way to statically link Arrow with libcudf: ``` cmake -D CUDF_USE_ARROW_STATIC=ON .. ``` Authors: - Paul Taylor (@trxcllnt) Approvers: - Keith Kraus (@kkraus14) URL: rapidsai#7518
This updates the Java build scripts and documentation to use the new CUDF_USE_ARROW_STATIC flag after the rename from ARROW_STATIC_LIB in rapidsai#7518. Authors: - Jason Lowe (@jlowe) Approvers: - Alessandro Bellina (@abellina) - Keith Kraus (@kkraus14) URL: rapidsai#7526
Rename
ARROW_STATIC_LIB
because it conflicts with CMake variable in Arrow'sFindArrow.cmake
.Here's the new way to statically link Arrow with libcudf: