-
Notifications
You must be signed in to change notification settings - Fork 3.9k
GH-47921: [C++] Implement substrait option in Meson #48016
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
|
|
802686a to
fcd620d
Compare
|
Looks like this will need #48017 first |
fcd620d to
35b71b3
Compare
|
@kou if you get a chance to look at this one let me know - no rush! |
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.
+1
cpp/src/arrow/engine/meson.build
Outdated
| ) | ||
| meson.override_dependency('arrow-substrait', arrow_substrait_dep) | ||
|
|
||
| pkg_config_cflags = get_option('default_library') == 'static' ? '-DARROW_ENGINE_STATIC' : '' |
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.
How about avoid using empty string?
| pkg_config_cflags = get_option('default_library') == 'static' ? '-DARROW_ENGINE_STATIC' : '' | |
| pkg_config_cflags = [] | |
| if get_option('default_library') == 'static' | |
| pkg_config_cflags += ['-DARROW_ENGINE_STATIC'] | |
| endif |
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.
Done!
35b71b3 to
2845099
Compare
|
After merging your PR, Conbench analyzed the 0 benchmarking runs that have been run so far on merge-commit 7185902. None of the specified runs were found on the Conbench server. The full Conbench report has more details. |
Rationale for this change
This implements the substrait option in Meson
What changes are included in this PR?
Meson configuration changes to allow substrait
Are these changes tested?
Yes
Are there any user-facing changes?
No