2015-09-21 15:52:41 +00:00
|
|
|
#
|
|
|
|
# BSD LICENSE
|
|
|
|
#
|
2016-01-26 17:47:22 +00:00
|
|
|
# Copyright (c) Intel Corporation.
|
2015-09-21 15:52:41 +00: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 17:36:36 +00:00
|
|
|
# Installation prefix
|
|
|
|
CONFIG_PREFIX?=/usr/local
|
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
# Build with debug logging. Turn off for performance testing and normal usage
|
2015-12-08 22:52:54 +00:00
|
|
|
CONFIG_DEBUG?=n
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-07-18 19:08:17 +00:00
|
|
|
# Show backtrace when logging message at level <= lvl (ERROR, WARN, NOTICE, DEBUG)
|
|
|
|
#CONFIG_LOG_BACKTRACE?=lvl
|
|
|
|
|
2016-03-18 17:40:34 +00:00
|
|
|
# Treat warnings as errors (fail the build on any warning).
|
|
|
|
CONFIG_WERROR?=n
|
|
|
|
|
2016-03-24 20:27:53 +00:00
|
|
|
# Build with link-time optimization.
|
|
|
|
CONFIG_LTO?=n
|
|
|
|
|
2015-10-22 18:26:21 +00:00
|
|
|
# Build with code coverage instrumentation.
|
2015-12-08 23:25:08 +00:00
|
|
|
CONFIG_COVERAGE?=n
|
2015-10-22 18:26:21 +00:00
|
|
|
|
2015-11-04 19:46:09 +00:00
|
|
|
# Build with Address Sanitizer enabled
|
2016-11-30 18:17:15 +00:00
|
|
|
CONFIG_ASAN?=n
|
2015-11-04 19:46:09 +00:00
|
|
|
|
2016-11-30 18:16:25 +00:00
|
|
|
# Build with Undefined Behavior Sanitizer enabled
|
|
|
|
CONFIG_UBSAN?=n
|
|
|
|
|
2017-05-24 22:00:54 +00:00
|
|
|
# Build with Thread Sanitizer enabled
|
|
|
|
CONFIG_TSAN?=n
|
|
|
|
|
2018-03-06 22:39:04 +00:00
|
|
|
# Build tests
|
|
|
|
CONFIG_TESTS?=y
|
|
|
|
|
2016-08-10 17:28:20 +00:00
|
|
|
# Directory that contains the desired SPDK environment library.
|
|
|
|
# By default, this is implemented using DPDK.
|
2016-11-09 23:12:00 +00:00
|
|
|
CONFIG_ENV?=$(SPDK_ROOT_DIR)/lib/env_dpdk
|
2016-08-10 17:28:20 +00:00
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
# This directory should contain 'include' and 'lib' directories for your DPDK
|
|
|
|
# installation. Alternatively you can specify this on the command line
|
2016-08-10 17:28:20 +00:00
|
|
|
# with 'make DPDK_DIR=/path/to/dpdk'. This is only a valid entry
|
|
|
|
# when using the default SPDK environment library.
|
2017-11-17 21:28:44 +00:00
|
|
|
CONFIG_DPDK_DIR?=$(SPDK_ROOT_DIR)/dpdk/build
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2016-04-13 00:58:29 +00:00
|
|
|
# Build SPDK FIO plugin. Requires FIO_SOURCE_DIR set to a valid
|
|
|
|
# fio source code directory.
|
|
|
|
CONFIG_FIO_PLUGIN?=n
|
|
|
|
|
|
|
|
# This directory should contain the source code directory for fio
|
|
|
|
# which is required for building the SPDK FIO plugin.
|
|
|
|
FIO_SOURCE_DIR?=/usr/src/fio
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2016-07-13 22:34:28 +00:00
|
|
|
# Enable RDMA support for the NVMf target.
|
2016-06-06 21:44:30 +00:00
|
|
|
# Requires ibverbs development libraries.
|
2016-07-13 22:34:28 +00:00
|
|
|
CONFIG_RDMA?=n
|
2016-09-20 04:12:45 +00:00
|
|
|
|
|
|
|
# Build Ceph RBD support in bdev modules
|
|
|
|
# Requires librbd development libraries
|
|
|
|
CONFIG_RBD?=n
|
2017-03-06 20:34:45 +00:00
|
|
|
|
|
|
|
# Build vhost library.
|
|
|
|
CONFIG_VHOST?=y
|
2017-09-29 08:49:51 +00:00
|
|
|
|
2017-10-17 17:04:28 +00:00
|
|
|
# Build vhost initiator (Virtio) driver.
|
|
|
|
CONFIG_VIRTIO?=y
|
|
|
|
|
2018-04-03 23:07:39 +00:00
|
|
|
# Build with PMDK backends
|
|
|
|
CONFIG_PMDK?=n
|
2018-03-13 14:42:45 +00:00
|
|
|
|
|
|
|
# Build with VPP
|
|
|
|
CONFIG_VPP?=n
|
2017-12-04 17:07:04 +00:00
|
|
|
|
|
|
|
# Requires libiscsi development libraries.
|
|
|
|
CONFIG_ISCSI_INITIATOR?=n
|
2018-05-08 11:30:29 +00:00
|
|
|
|
2018-03-22 23:24:14 +00:00
|
|
|
# Build with raid
|
2018-05-08 11:30:29 +00:00
|
|
|
CONFIG_RAID?=n
|
2018-03-22 23:24:14 +00:00
|
|
|
|
|
|
|
# Enable the dependencies for building the crypto vbdev
|
|
|
|
CONFIG_CRYPTO?=n
|