2015-09-21 08:52:41 -07:00
|
|
|
#
|
|
|
|
# BSD LICENSE
|
|
|
|
#
|
2016-01-26 10:47:22 -07:00
|
|
|
# Copyright (c) Intel Corporation.
|
2015-09-21 08:52:41 -07:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# * Neither the name of Intel Corporation nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
|
2017-11-15 10:36:36 -07:00
|
|
|
# Installation prefix
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_PREFIX="/usr/local"
|
2017-11-15 10:36:36 -07:00
|
|
|
|
2015-09-21 08:52:41 -07:00
|
|
|
# Build with debug logging. Turn off for performance testing and normal usage
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_DEBUG=n
|
2015-09-21 08:52:41 -07:00
|
|
|
|
2018-09-10 16:08:25 +02:00
|
|
|
# Build with support of backtrace printing in log messages. Requires libunwind.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_LOG_BACKTRACE=n
|
2018-07-18 21:08:17 +02:00
|
|
|
|
2016-03-18 10:40:34 -07:00
|
|
|
# Treat warnings as errors (fail the build on any warning).
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_WERROR=n
|
2016-03-18 10:40:34 -07:00
|
|
|
|
2016-03-24 13:27:53 -07:00
|
|
|
# Build with link-time optimization.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_LTO=n
|
2016-03-24 13:27:53 -07:00
|
|
|
|
2019-02-11 11:19:32 -07:00
|
|
|
# Generate profile guided optimization data.
|
|
|
|
CONFIG_PGO_CAPTURE=n
|
|
|
|
|
|
|
|
# Use profile guided optimization data.
|
|
|
|
CONFIG_PGO_USE=n
|
|
|
|
|
2015-10-22 11:26:21 -07:00
|
|
|
# Build with code coverage instrumentation.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_COVERAGE=n
|
2015-10-22 11:26:21 -07:00
|
|
|
|
2015-11-04 12:46:09 -07:00
|
|
|
# Build with Address Sanitizer enabled
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_ASAN=n
|
2015-11-04 12:46:09 -07:00
|
|
|
|
2016-11-30 11:16:25 -07:00
|
|
|
# Build with Undefined Behavior Sanitizer enabled
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_UBSAN=n
|
2016-11-30 11:16:25 -07:00
|
|
|
|
2017-05-24 15:00:54 -07:00
|
|
|
# Build with Thread Sanitizer enabled
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_TSAN=n
|
2017-05-24 15:00:54 -07:00
|
|
|
|
2018-03-06 15:39:04 -07:00
|
|
|
# Build tests
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_TESTS=y
|
2018-03-06 15:39:04 -07:00
|
|
|
|
2016-08-10 10:28:20 -07:00
|
|
|
# Directory that contains the desired SPDK environment library.
|
|
|
|
# By default, this is implemented using DPDK.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_ENV=
|
2016-08-10 10:28:20 -07:00
|
|
|
|
2015-09-21 08:52:41 -07:00
|
|
|
# This directory should contain 'include' and 'lib' directories for your DPDK
|
2018-09-06 14:09:14 -07:00
|
|
|
# installation.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_DPDK_DIR=
|
2015-09-21 08:52:41 -07:00
|
|
|
|
2018-09-26 13:19:28 +02:00
|
|
|
# Build SPDK FIO plugin. Requires CONFIG_FIO_SOURCE_DIR set to a valid
|
2016-04-12 20:58:29 -04:00
|
|
|
# fio source code directory.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_FIO_PLUGIN=n
|
2016-04-12 20:58:29 -04:00
|
|
|
|
|
|
|
# This directory should contain the source code directory for fio
|
|
|
|
# which is required for building the SPDK FIO plugin.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_FIO_SOURCE_DIR=/usr/src/fio
|
2016-06-06 14:44:30 -07:00
|
|
|
|
2016-07-13 15:34:28 -07:00
|
|
|
# Enable RDMA support for the NVMf target.
|
2016-06-06 14:44:30 -07:00
|
|
|
# Requires ibverbs development libraries.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_RDMA=n
|
|
|
|
CONFIG_RDMA_SEND_WITH_INVAL=n
|
2016-09-20 12:12:45 +08:00
|
|
|
|
|
|
|
# Build Ceph RBD support in bdev modules
|
|
|
|
# Requires librbd development libraries
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_RBD=n
|
2017-03-06 13:34:45 -07:00
|
|
|
|
|
|
|
# Build vhost library.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_VHOST=y
|
2017-09-29 10:49:51 +02:00
|
|
|
|
2017-10-17 19:04:28 +02:00
|
|
|
# Build vhost initiator (Virtio) driver.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_VIRTIO=y
|
2017-10-17 19:04:28 +02:00
|
|
|
|
2018-04-03 16:07:39 -07:00
|
|
|
# Build with PMDK backends
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_PMDK=n
|
|
|
|
CONFIG_PMDK_DIR=
|
2018-03-13 10:42:45 -04:00
|
|
|
|
2018-10-15 16:46:41 -04:00
|
|
|
# Enable the dependencies for building the compress vbdev
|
2018-09-21 07:37:54 -07:00
|
|
|
CONFIG_REDUCE=n
|
|
|
|
|
2018-03-13 10:42:45 -04:00
|
|
|
# Build with VPP
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_VPP=n
|
|
|
|
CONFIG_VPP_DIR=
|
2017-12-04 10:07:04 -07:00
|
|
|
|
|
|
|
# Requires libiscsi development libraries.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_ISCSI_INITIATOR=n
|
2018-05-08 07:30:29 -04:00
|
|
|
|
2018-03-22 16:24:14 -07:00
|
|
|
# Enable the dependencies for building the crypto vbdev
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_CRYPTO=n
|
2018-08-14 13:56:26 -04:00
|
|
|
|
|
|
|
# Build spdk shared libraries in addition to the static ones.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_SHARED=n
|
2018-09-26 13:19:28 +02:00
|
|
|
|
|
|
|
# Build with VTune suport.
|
2018-09-21 16:32:36 +02:00
|
|
|
CONFIG_VTUNE=n
|
|
|
|
CONFIG_VTUNE_DIR=
|
2018-10-10 10:09:07 -07:00
|
|
|
|
|
|
|
# Build the dpdk igb_uio driver
|
|
|
|
CONFIG_IGB_UIO_DRIVER=n
|
2018-10-29 08:17:34 -04:00
|
|
|
|
|
|
|
# Build FTL library
|
|
|
|
CONFIG_FTL=n
|
2019-01-13 13:28:21 -07:00
|
|
|
|
|
|
|
# Build Intel IPSEC_MB library
|
|
|
|
CONFIG_IPSEC_MB=n
|
2018-09-20 16:54:49 +00:00
|
|
|
|
|
|
|
# Enable OCF module
|
|
|
|
CONFIG_OCF=n
|
|
|
|
CONFIG_OCF_PATH=
|
|
|
|
CONFIG_CUSTOMOCF=n
|
2019-01-21 17:05:59 +08:00
|
|
|
|
|
|
|
# Build ISA-L library
|
|
|
|
CONFIG_ISAL=y
|