eal: include missing hypervisor files in meson
authorLuca Boccassi <bluca@debian.org>
Mon, 17 Sep 2018 09:01:24 +0000 (10:01 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 17 Sep 2018 10:17:02 +0000 (12:17 +0200)
They are built by the legacy makefiles but not by Meson.

Fixes: 8f40ee0734c8 ("eal/x86: get hypervisor name")
Cc: stable@dpdk.org
Signed-off-by: Luca Boccassi <bluca@debian.org>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
lib/librte_eal/common/arch/arm/meson.build
lib/librte_eal/common/arch/x86/meson.build
lib/librte_eal/common/meson.build

index c6bd922..79731e1 100644 (file)
@@ -2,4 +2,4 @@
 # Copyright(c) 2017 Intel Corporation.
 
 eal_common_arch_sources = files('rte_cpuflags.c',
-       'rte_cycles.c')
+       'rte_cycles.c', 'rte_hypervisor.c')
index 4e0f779..14bf204 100644 (file)
@@ -2,4 +2,4 @@
 # Copyright(c) 2017 Intel Corporation
 
 eal_common_arch_sources = files('rte_spinlock.c', 'rte_cpuflags.c',
-       'rte_cycles.c')
+       'rte_cycles.c', 'rte_hypervisor.c')
index 56005be..b7fc984 100644 (file)
@@ -14,6 +14,7 @@ common_sources = files(
        'eal_common_errno.c',
        'eal_common_fbarray.c',
        'eal_common_hexdump.c',
+       'eal_common_hypervisor.c',
        'eal_common_launch.c',
        'eal_common_lcore.c',
        'eal_common_log.c',
@@ -59,6 +60,7 @@ common_headers = files(
        'include/rte_errno.h',
        'include/rte_fbarray.h',
        'include/rte_hexdump.h',
+       'include/rte_hypervisor.h',
        'include/rte_interrupts.h',
        'include/rte_keepalive.h',
        'include/rte_launch.h',