build: change ABI versioning to global
[dpdk.git] / buildtools / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017-2019 Intel Corporation
3
4 subdir('pmdinfogen')
5
6 pmdinfo = find_program('gen-pmdinfo-cfile.sh')
7
8 check_experimental_syms = find_program('check-experimental-syms.sh')
9
10 # set up map-to-def script using python, either built-in or external
11 python3 = import('python').find_installation(required: false)
12 if python3.found()
13         map_to_def_cmd = [python3, files('map_to_def.py')]
14 else
15         map_to_def_cmd = ['meson', 'runpython', files('map_to_def.py')]
16 endif
17
18 # stable ABI always starts with "DPDK_"
19 is_experimental_cmd = [find_program('grep', 'findstr'), '^DPDK_']