759a5fb18e
For each library where we optionally disable it, add in the reason why it's being disabled, so the user knows how to fix it. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org>
12 lines
291 B
Meson
12 lines
291 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
|
|
build = false
|
|
reason = 'only supported on 64-bit linux'
|
|
endif
|
|
version = 2
|
|
sources = files('rte_kni.c')
|
|
headers = files('rte_kni.h')
|
|
deps += ['ethdev', 'pci']
|