da4eae278b
Add libatomic as a global dependency when compiling for 32-bit using clang. As we need libatomic for 64-bit atomic ops. Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
12 lines
335 B
Meson
12 lines
335 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
sources = files('rte_distributor.c', 'rte_distributor_single.c')
|
|
if arch_subdir == 'x86'
|
|
sources += files('rte_distributor_match_sse.c')
|
|
else
|
|
sources += files('rte_distributor_match_generic.c')
|
|
endif
|
|
headers = files('rte_distributor.h')
|
|
deps += ['mbuf']
|