8adf5f528b
The stubs header is included as part of rte_stack.h for architectures
other than x86_64 and aarch64 (i.e. x86 32 bits and ppc).
Note: chkincs won't catch this issue since it checks headers from within
the source directory.
Fixes: 7911ba0473
("stack: enable lock-free implementation for aarch64")
Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
14 lines
403 B
Meson
14 lines
403 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2019 Intel Corporation
|
|
|
|
sources = files('rte_stack.c', 'rte_stack_std.c', 'rte_stack_lf.c')
|
|
headers = files('rte_stack.h')
|
|
# subheaders, not for direct inclusion by apps
|
|
indirect_headers += files(
|
|
'rte_stack_std.h',
|
|
'rte_stack_lf.h',
|
|
'rte_stack_lf_generic.h',
|
|
'rte_stack_lf_c11.h',
|
|
'rte_stack_lf_stubs.h',
|
|
)
|