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 1fac1317dc GH-48570: [C++] Add Missing Fuzz Sources to Meson
configuration (#48571)
1fac1317dc is described below
commit 1fac1317dc6aaeaf09e35d2363160d0b7a80442b
Author: William Ayd <[email protected]>
AuthorDate: Fri Dec 19 17:28:25 2025 -0500
GH-48570: [C++] Add Missing Fuzz Sources to Meson configuration (#48571)
### Rationale for this change
The meson configuration on main is broken - this fixes it
### What changes are included in this PR?
Missing fuzzing targets are added to the configuration
### Are these changes tested?
Yes
### Are there any user-facing changes?
No
* GitHub Issue: #48570
Authored-by: Will Ayd <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
cpp/src/arrow/meson.build | 1 +
cpp/src/parquet/meson.build | 1 +
2 files changed, 2 insertions(+)
diff --git a/cpp/src/arrow/meson.build b/cpp/src/arrow/meson.build
index 43050aa159..48d01db729 100644
--- a/cpp/src/arrow/meson.build
+++ b/cpp/src/arrow/meson.build
@@ -192,6 +192,7 @@ arrow_util_srcs = [
'util/float16.cc',
'util/formatting.cc',
'util/future.cc',
+ 'util/fuzz_internal.cc',
'util/hashing.cc',
'util/int_util.cc',
'util/io_util.cc',
diff --git a/cpp/src/parquet/meson.build b/cpp/src/parquet/meson.build
index e6ff43a0ba..a75a1b94d0 100644
--- a/cpp/src/parquet/meson.build
+++ b/cpp/src/parquet/meson.build
@@ -17,6 +17,7 @@
parquet_srcs = files(
'../generated/parquet_types.cpp',
+ 'arrow/fuzz_internal.cc',
'arrow/path_internal.cc',
'arrow/reader.cc',
'arrow/reader_internal.cc',