This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 9640f7882f GH-47836: [C++] Fix Meson configuration after bpacking
changes (#47837)
9640f7882f is described below
commit 9640f7882f1b2dd89114257962a57e875663fbd6
Author: William Ayd <[email protected]>
AuthorDate: Mon Oct 20 21:00:25 2025 -0400
GH-47836: [C++] Fix Meson configuration after bpacking changes (#47837)
### Rationale for this change
This fixes the Meson configuration
### What changes are included in this PR?
Added new bpacking modules to the Meson configuration
### Are these changes tested?
Yes
### Are there any user-facing changes?
No
* GitHub Issue: #47836
Authored-by: Will Ayd <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
ci/scripts/cpp_test.sh | 2 ++
cpp/src/arrow/meson.build | 2 ++
2 files changed, 4 insertions(+)
diff --git a/ci/scripts/cpp_test.sh b/ci/scripts/cpp_test.sh
index cac80d98ff..6256431183 100755
--- a/ci/scripts/cpp_test.sh
+++ b/ci/scripts/cpp_test.sh
@@ -105,9 +105,11 @@ fi
if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then
ARROW_BUILD_EXAMPLES=OFF # TODO: Remove this
meson test \
+ --max-lines=0 \
--no-rebuild \
--print-errorlogs \
--suite arrow \
+ --timeout-multiplier=10 \
"$@"
else
ctest \
diff --git a/cpp/src/arrow/meson.build b/cpp/src/arrow/meson.build
index 5590ba41c9..5a4553cfaf 100644
--- a/cpp/src/arrow/meson.build
+++ b/cpp/src/arrow/meson.build
@@ -175,6 +175,8 @@ arrow_util_srcs = [
'util/bitmap_builders.cc',
'util/bitmap_ops.cc',
'util/bpacking.cc',
+ 'util/bpacking_scalar.cc',
+ 'util/bpacking_simd_default.cc',
'util/byte_size.cc',
'util/byte_stream_split_internal.cc',
'util/cancel.cc',