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 f65ee2c28c GH-48395: [C++][Dev] Update fuzzing CMake preset (#48396)
f65ee2c28c is described below
commit f65ee2c28c14f281b6d7419dc0bc97ff03cdac4c
Author: Antoine Pitrou <[email protected]>
AuthorDate: Tue Dec 9 21:55:11 2025 +0100
GH-48395: [C++][Dev] Update fuzzing CMake preset (#48396)
### Rationale for this change
We have more features enabled on our fuzzing setup but we haven't updated
the corresponding CMake preset.
### Are these changes tested?
Manually.
### Are there any user-facing changes?
No.
* GitHub Issue: #48395
Authored-by: Antoine Pitrou <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
cpp/CMakePresets.json | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/cpp/CMakePresets.json b/cpp/CMakePresets.json
index 8c29c9a267..e6c2e7e43a 100644
--- a/cpp/CMakePresets.json
+++ b/cpp/CMakePresets.json
@@ -440,13 +440,20 @@
],
"displayName": "Debug build with IPC and Parquet fuzzing targets",
"cacheVariables": {
+ "ARROW_CSV": "ON",
+ "ARROW_DEPENDENCY_SOURCE": "BUNDLED",
+ "ARROW_FUZZING": "ON",
+ "ARROW_IPC": "ON",
+ "ARROW_PARQUET": "ON",
+ "ARROW_WITH_BROTLI": "ON",
+ "ARROW_WITH_LZ4": "ON",
+ "ARROW_WITH_SNAPPY": "ON",
+ "ARROW_WITH_ZLIB": "ON",
+ "ARROW_WITH_ZSTD": "ON",
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++",
- "ARROW_IPC": "ON",
- "ARROW_PARQUET": "ON",
- "ARROW_FUZZING": "ON",
- "ARROW_WITH_SNAPPY": "ON"
+ "PARQUET_REQUIRE_ENCRYPTION": "ON"
}
},
{