X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=903117b8669c9c0e720c26cfcfc35508251b8be4;hb=2d30d42c0fd1eade46055ff7aca1cdf04ae3daf8;hp=75aa16114894ebca035b00e0882a99161db4336d;hpb=dc38ae8d08269f1a7023f9f26045408f3d0e0e25;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 75aa161148..903117b866 100644 --- a/app/meson.build +++ b/app/meson.build @@ -15,29 +15,35 @@ apps = [ 'test-crypto-perf', 'test-eventdev', 'test-fib', + 'test-flow-perf', 'test-pipeline', 'test-pmd', + 'test-regex', 'test-sad'] # for BSD only lib_execinfo = cc.find_library('execinfo', required: false) -default_cflags = machine_args +default_cflags = machine_args + ['-DALLOW_EXPERIMENTAL_API'] +default_ldflags = [] +if get_option('default_library') == 'static' and not is_windows + default_ldflags += ['-Wl,--export-dynamic'] +endif foreach app:apps build = true name = app - allow_experimental_apis = false sources = [] includes = [] cflags = default_cflags + ldflags = default_ldflags 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 = [] - deps = dpdk_app_link_libraries + deps = [] subdir(name) @@ -54,13 +60,10 @@ foreach app:apps link_libs = dpdk_static_libraries + dpdk_drivers endif - if allow_experimental_apis - cflags += '-DALLOW_EXPERIMENTAL_API' - endif - executable('dpdk-' + name, sources, c_args: cflags, + link_args: ldflags, link_whole: link_libs, dependencies: dep_objs, install_rpath: join_paths(get_option('prefix'),