2017-12-18 15:56:25 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-08-30 13:38:34 +00:00
|
|
|
|
2018-02-16 16:53:36 +00:00
|
|
|
apps = ['pdump',
|
|
|
|
'proc-info',
|
|
|
|
'test-bbdev',
|
2018-12-12 12:08:01 +00:00
|
|
|
'test-compress-perf',
|
2018-02-16 16:53:36 +00:00
|
|
|
'test-crypto-perf',
|
|
|
|
'test-eventdev',
|
2018-02-16 16:53:34 +00:00
|
|
|
'test-pmd']
|
|
|
|
|
|
|
|
# for BSD only
|
|
|
|
lib_execinfo = cc.find_library('execinfo', required: false)
|
|
|
|
|
2018-10-04 10:20:33 +00:00
|
|
|
default_cflags = machine_args
|
|
|
|
|
|
|
|
# specify -D_GNU_SOURCE unconditionally
|
|
|
|
default_cflags += '-D_GNU_SOURCE'
|
|
|
|
|
2018-02-16 16:53:34 +00:00
|
|
|
foreach app:apps
|
|
|
|
build = true
|
|
|
|
name = app
|
|
|
|
allow_experimental_apis = false
|
|
|
|
sources = []
|
|
|
|
includes = []
|
2018-10-04 10:20:33 +00:00
|
|
|
cflags = default_cflags
|
2018-02-16 16:53:34 +00:00
|
|
|
objs = [] # other object files to link against, used e.g. for
|
|
|
|
# instruction-set optimized versions of code
|
|
|
|
|
|
|
|
# use "deps" for internal DPDK dependencies, and "ext_deps" for
|
|
|
|
# external package/library requirements
|
|
|
|
ext_deps = []
|
2018-10-27 09:17:50 +00:00
|
|
|
deps = dpdk_app_link_libraries
|
2018-02-16 16:53:34 +00:00
|
|
|
|
|
|
|
subdir(name)
|
|
|
|
|
|
|
|
if build
|
|
|
|
dep_objs = []
|
|
|
|
foreach d:deps
|
|
|
|
dep_objs += get_variable(get_option('default_library')
|
|
|
|
+ '_rte_' + d)
|
|
|
|
endforeach
|
|
|
|
dep_objs += lib_execinfo
|
|
|
|
|
|
|
|
link_libs = []
|
|
|
|
if get_option('default_library') == 'static'
|
2018-10-27 09:17:50 +00:00
|
|
|
link_libs = dpdk_static_libraries + dpdk_drivers
|
2018-02-16 16:53:34 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if allow_experimental_apis
|
|
|
|
cflags += '-DALLOW_EXPERIMENTAL_API'
|
|
|
|
endif
|
|
|
|
|
|
|
|
executable('dpdk-' + name,
|
|
|
|
sources,
|
|
|
|
c_args: cflags,
|
|
|
|
link_whole: link_libs,
|
|
|
|
dependencies: dep_objs,
|
|
|
|
install_rpath: join_paths(get_option('prefix'),
|
|
|
|
driver_install_path),
|
|
|
|
install: true)
|
|
|
|
endif
|
|
|
|
endforeach
|