Conversation
|
@github-actions crossbow submit -g cpp |
This comment was marked as outdated.
This comment was marked as outdated.
|
@github-actions crossbow submit -g cpp |
This comment was marked as outdated.
This comment was marked as outdated.
|
@github-actions crossbow submit wheelcp313* |
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
|
@github-actions crossbow submit -g python |
|
@github-actions crossbow submit -g r |
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
1c42352 to
e654d71
Compare
|
@github-actions crossbow submit -g c-glib -g ruby -g r |
4c8506b to
42fbedc
Compare
|
I think all review comments have been addressed, have I overlooked something @kou @WillAyd @zanmato1984 ? |
42fbedc to
6f165ed
Compare
|
@github-actions crossbow submit -g r -g cpp -g python |
|
Revision: 6f165ed Submitted crossbow builds: ursacomputing/crossbow @ actions-370fa26cd6 |
6f165ed to
6fa77b0
Compare
|
I'm not sure what it's for, but I've re-enabled the |
|
@github-actions crossbow submit test-debian-experimental-cpp-gcc-15 |
|
Revision: 6fa77b0 Submitted crossbow builds: ursacomputing/crossbow @ actions-93c23edec8
|
|
@github-actions crossbow submit -g cpp -g python |
|
Revision: 6fa77b0 Submitted crossbow builds: ursacomputing/crossbow @ actions-e5d2f93e4c |
|
Well, let's merge this now. |
| @@ -1181,7 +1181,7 @@ endif() | |||
| foreach(LIB_TARGET ${ARROW_LIBRARIES}) | |||
| target_compile_definitions(${LIB_TARGET} PRIVATE ARROW_EXPORTING) | |||
| # C++17 is required to compile against Arrow C++ headers and libraries | |||
There was a problem hiding this comment.
Oops, sorry, it's intriguing that I overlooked these two occurrences.
| @@ -131,7 +131,7 @@ libmexclass_client_add_proxy_library( | |||
| LINK_LIBRARIES arrow_shared | |||
| ) | |||
| # Use C++17 | |||
It's for the latest GCC. We should bump this GCC version when new GCC is released. Debian experimental will provide it. For example, GCC 16 isn't released yet but it's already provided: https://packages.debian.org/search?keywords=gcc-16 |
### Rationale for this change As a followup to #48414, fix the comments that I had forgotten to update. ### Are these changes tested? No testing required. ### Are there any user-facing changes? No. Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Nic Crane <[email protected]>
### Rationale for this change As a followup to apache#48414, fix the comments that I had forgotten to update. ### Are these changes tested? No testing required. ### Are there any user-facing changes? No. Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Nic Crane <[email protected]>
|
After merging your PR, Conbench analyzed the 3 benchmarking runs that have been run so far on merge-commit 30809c6. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 474 possible false positives for unstable benchmarks that are known to sometimes produce them. |
…tup-rhel-rebuilds.sh` for wheel verification (#48748) ### Rationale for this change GH-48414 removed AlmaLinux 8 support from `dev/release/setup-rhel-rebuilds.sh`. But we need to restore it for wheel verification. ### What changes are included in this PR? * Enable `powertools` repository for some development packages * Use Python 3.12 explicitly ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * GitHub Issue: #48736 Lead-authored-by: Sutou Kouhei <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Raúl Cumplido <[email protected]>
Rationale for this change
We decided to migrate Arrow C++ to C++20 in this discussion: https://lists.apache.org/thread/48zlj0dn2y0f53y2k37qsr90y781wfnj
What changes are included in this PR?
Build configuration updates (CMake files etc.) to build with C++20 instead of C++17
C++-level fixes to ensure compilation succeeds:
std::shared_ptr<T>(the replacementstd::atomic<std::shared_ptr<T>>is unfortunately not supported in all standard library implementations)arrow/util/string.hto call a C++20 API (to validate that C++20 is actually enabled)CI configuration updates to get enough C++20 support on the various platforms:
Are these changes tested?
Yes.
Are there any user-facing changes?
Yes, Arrow C++ will now require a C++20-compliant compiler.