Skip to content

Commit 9640f78

Browse files
authored
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]>
1 parent 5f616db commit 9640f78

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

ci/scripts/cpp_test.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,11 @@ fi
105105
if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then
106106
ARROW_BUILD_EXAMPLES=OFF # TODO: Remove this
107107
meson test \
108+
--max-lines=0 \
108109
--no-rebuild \
109110
--print-errorlogs \
110111
--suite arrow \
112+
--timeout-multiplier=10 \
111113
"$@"
112114
else
113115
ctest \

cpp/src/arrow/meson.build

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,8 @@ arrow_util_srcs = [
175175
'util/bitmap_builders.cc',
176176
'util/bitmap_ops.cc',
177177
'util/bpacking.cc',
178+
'util/bpacking_scalar.cc',
179+
'util/bpacking_simd_default.cc',
178180
'util/byte_size.cc',
179181
'util/byte_stream_split_internal.cc',
180182
'util/cancel.cc',

0 commit comments

Comments
 (0)