2025-02-18 21:04:00 -05:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
|
# distributed with this work for additional information
|
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
|
# under the License.
|
|
|
|
|
|
2025-09-08 09:35:16 -04:00
|
|
|
option(
|
|
|
|
|
'acero',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Arrow Acero Engine Module',
|
|
|
|
|
)
|
2025-04-14 17:45:24 -04:00
|
|
|
option(
|
|
|
|
|
'azure',
|
2025-04-23 03:19:43 -04:00
|
|
|
type: 'feature',
|
2025-04-14 17:45:24 -04:00
|
|
|
description: 'Build Arrow with Azure support (requires the Azure SDK for C++)',
|
|
|
|
|
)
|
|
|
|
|
|
2025-09-08 09:35:16 -04:00
|
|
|
option(
|
|
|
|
|
'benchmarks',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Arrow micro benchmarks',
|
|
|
|
|
)
|
2025-05-07 02:21:49 -04:00
|
|
|
option('brotli', type: 'feature', description: 'Build with Brotli compression')
|
2025-05-08 17:49:14 -04:00
|
|
|
option('bz2', type: 'feature', description: 'Build with BZ2 compression')
|
2025-09-08 09:35:16 -04:00
|
|
|
option(
|
|
|
|
|
'compute',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build all Arrow Compute kernels',
|
|
|
|
|
)
|
2025-04-23 03:19:43 -04:00
|
|
|
option('csv', type: 'feature', description: 'Build the Arrow CSV Parser Module')
|
2025-10-11 10:07:59 -04:00
|
|
|
option(
|
|
|
|
|
'dataset',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Arrow Dataset Modules',
|
|
|
|
|
)
|
2025-09-08 09:35:16 -04:00
|
|
|
option(
|
|
|
|
|
'filesystem',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Arrow Filesystem Layer',
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'fuzzing',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build Arrow Fuzzing executables',
|
|
|
|
|
)
|
2025-04-14 17:45:24 -04:00
|
|
|
|
|
|
|
|
option(
|
|
|
|
|
'gcs',
|
2025-04-23 03:19:43 -04:00
|
|
|
type: 'feature',
|
2025-04-14 17:45:24 -04:00
|
|
|
description: 'Build Arrow with GCS support (requires the Google Cloud Platform C++ Client Libraries)',
|
|
|
|
|
)
|
|
|
|
|
|
2025-04-23 03:19:43 -04:00
|
|
|
option('hdfs', type: 'feature', description: 'Build the Arrow HDFS bridge')
|
2025-05-07 02:21:49 -04:00
|
|
|
|
|
|
|
|
option(
|
|
|
|
|
'integration',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Arrow integration test executables',
|
|
|
|
|
)
|
2025-04-10 09:14:52 -04:00
|
|
|
|
2025-03-12 10:46:03 -04:00
|
|
|
option(
|
|
|
|
|
'ipc',
|
2025-04-23 03:19:43 -04:00
|
|
|
type: 'feature',
|
2025-03-12 10:46:03 -04:00
|
|
|
description: 'Build the Arrow IPC extensions',
|
2025-04-23 03:19:43 -04:00
|
|
|
value: 'enabled',
|
2025-03-12 10:46:03 -04:00
|
|
|
)
|
|
|
|
|
|
2025-04-23 03:19:43 -04:00
|
|
|
option('json', type: 'feature', description: 'Build Arrow with JSON support')
|
2025-06-06 19:43:37 -04:00
|
|
|
|
|
|
|
|
option(
|
|
|
|
|
'flight',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Arrow Flight RPC System (requires GRPC, Protocol Buffers)',
|
|
|
|
|
)
|
|
|
|
|
|
2025-04-23 03:19:43 -04:00
|
|
|
option('git_id', type: 'string')
|
|
|
|
|
option('git_description', type: 'string')
|
2025-02-18 21:04:00 -05:00
|
|
|
|
2025-09-08 09:35:16 -04:00
|
|
|
option('lz4', type: 'feature', description: 'Build with lz4 compression')
|
2025-05-07 02:21:49 -04:00
|
|
|
|
2025-02-18 21:04:00 -05:00
|
|
|
option(
|
|
|
|
|
'package_kind',
|
|
|
|
|
type: 'string',
|
|
|
|
|
description: 'Arbitrary string that identifies the kind of package (for informational purposes)',
|
|
|
|
|
)
|
2025-09-11 20:40:42 -04:00
|
|
|
option('parquet', type: 'feature', description: 'Build the Parquet libraries')
|
|
|
|
|
option(
|
|
|
|
|
'parquet_build_executables',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Parquet executable CLI tools.',
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'parquet_build_examples',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Parquet examples.',
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'parquet_require_encryption',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build support for encryption. Fail if OpenSSL is not found',
|
|
|
|
|
)
|
2025-03-12 10:46:03 -04:00
|
|
|
|
2025-05-08 17:49:14 -04:00
|
|
|
option('snappy', type: 'feature', description: 'Build with snappy compression')
|
2025-11-06 10:15:07 -05:00
|
|
|
option(
|
|
|
|
|
'substrait',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Arrow Substrait Consumer Module',
|
|
|
|
|
)
|
2025-04-14 17:45:24 -04:00
|
|
|
option(
|
|
|
|
|
's3',
|
2025-04-23 03:19:43 -04:00
|
|
|
type: 'feature',
|
2025-04-14 17:45:24 -04:00
|
|
|
description: 'Build Arrow with S3 support (requires the AWS SDK for C++)',
|
2025-03-12 10:46:03 -04:00
|
|
|
)
|
2025-05-31 17:31:09 -04:00
|
|
|
|
|
|
|
|
option(
|
|
|
|
|
'tensorflow',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build Arrow with TensorFlow support enabled',
|
|
|
|
|
)
|
|
|
|
|
|
2025-09-08 09:35:16 -04:00
|
|
|
option(
|
|
|
|
|
'testing',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Arrow testing libraries',
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'tests',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build the Arrow googletest unit tests',
|
|
|
|
|
)
|
2025-10-22 01:01:54 -04:00
|
|
|
option(
|
|
|
|
|
'utf8proc',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: '''
|
|
|
|
|
Build with support for Unicode properties using the utf8proc library;
|
|
|
|
|
(only used if compute or gandiva is enabled)''',
|
|
|
|
|
value: 'enabled',
|
|
|
|
|
)
|
2025-09-08 09:35:16 -04:00
|
|
|
option(
|
|
|
|
|
'utilities',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
description: 'Build Arrow commandline utilities',
|
|
|
|
|
)
|
2025-05-08 17:49:14 -04:00
|
|
|
option('zlib', type: 'feature', description: 'Build with zlib compression')
|
2025-05-07 02:21:49 -04:00
|
|
|
option('zstd', type: 'feature', description: 'Build with zstd compression')
|