Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 4.3k
GH-34843: [R] Fix R build failed caused by Acero refactor#34844
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
36d22ce00ac7c3129f2d9c5da9458f5606571e858426c73f2946c7018bfa93e0f8daeafdbc370File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -53,6 +53,7 @@ def install | ||
| args = %W[ | ||
| -DARROW_BUILD_SHARED=OFF | ||
| -DARROW_BUILD_UTILITIES=ON | ||
| -DARROW_ACERO=ON | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto. | ||
| -DARROW_COMPUTE=ON | ||
| -DARROW_CSV=ON | ||
| -DARROW_DATASET=ON | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -44,6 +44,7 @@ def install | ||
| args = %W[ | ||
| -DARROW_BUILD_SHARED=OFF | ||
| -DARROW_BUILD_UTILITIES=ON | ||
| -DARROW_ACERO=ON | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto. | ||
| -DARROW_COMPUTE=ON | ||
| -DARROW_CSV=ON | ||
| -DARROW_CXXFLAGS="-D_LIBCPP_DISABLE_AVAILABILITY" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -55,6 +55,7 @@ ${CMAKE} -DARROW_BOOST_USE_SHARED=OFF \ | ||
| -DARROW_BUILD_TESTS=OFF \ | ||
| -DARROW_BUILD_SHARED=OFF \ | ||
| -DARROW_BUILD_STATIC=ON \ | ||
| -DARROW_ACERO=${ARROW_ACERO:-$ARROW_DEFAULT_PARAM} \ | ||
westonpace marked this conversation as resolved.
Outdated
Uh oh!There was an error while loading. Please reload this page. | ||
| -DARROW_COMPUTE=ON \ | ||
| -DARROW_CSV=ON \ | ||
| -DARROW_DATASET=${ARROW_DATASET:-ON} \ | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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.
Do we need this?
ARROW_DATASET=ONmust enableARROW_ACEROautomatically:arrow/cpp/cmake_modules/DefineOptions.cmake
Lines 308 to 313 in ee42b90
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.
I'm not sure what the guidelines are. R uses Acero directly, in addition to transitively through datasets. So if R decided to stop using datasets then it would still need the acero dependency. However, if we want to leave it out so things are concise then it should work. I am fine either way.
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.
I see. Thanks.
For
dev/tasks/homebrew-formulae/apache-arrow.rb, this is a file for Homebrew's CI. (We should sync with https://github.com/Homebrew/homebrew-core/blob/master/Formula/apache-arrow.rb .) This is not only for R. In general, Homebrew enables all features as much as possible. So I think that we don't need to assume that we may disable onlyARROW_DATASETin this file. (We should omit redundant-DARROW_ACERO=ON.)For
dev/tasks/homebrew-formulae/autobrew/, they are only for R. So I think that your point is valid.