-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[WIP] Use C++17 with GCC15 for now #45150
Changes from all commits
31f3cce
7e63bd1
b9cd037
2f9b2d2
891b839
59a5dc0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,7 @@ RUN if [ -n "${gcc}" ]; then \ | |
libutf8proc-dev \ | ||
libxml2-dev \ | ||
libxsimd-dev \ | ||
libxxhash-dev \ | ||
libzstd-dev \ | ||
make \ | ||
ninja-build \ | ||
|
@@ -111,7 +112,7 @@ RUN /arrow/ci/scripts/install_sccache.sh unknown-linux-musl /usr/local/bin | |
# Prioritize system packages and local installation. | ||
ENV ARROW_ACERO=ON \ | ||
ARROW_AZURE=ON \ | ||
ARROW_BUILD_TESTS=ON \ | ||
ARROW_BUILD_TESTS=OFF \ | ||
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. I'll revert this, but since we don't build tests on CRAN I'm checking to see if this being off gets us to a successful build. 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. Could you try |
||
ARROW_DATASET=ON \ | ||
ARROW_DEPENDENCY_SOURCE=SYSTEM \ | ||
ARROW_DATASET=ON \ | ||
|
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.
Without this I had linker errors with
xxhash
. Though I'm surprised this isn't needed for debian 12?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.
Ah, sid/experimental's
liblz4.so
useslibxxhash.so
.