X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Fmeson.build;h=8e5acd7819acc3cdaabd7b78903e00a43af0e51b;hb=a0cc7be20dd13e118387786c3a86aab56325ed63;hp=b2ba7258d8ba87e623020bb309bfe3cd92dca451;hpb=56d2c1aa0b30ffe2c68be1b2c60dc10dcac797cf;p=dpdk.git diff --git a/lib/meson.build b/lib/meson.build index b2ba7258d8..8e5acd7819 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -3,7 +3,7 @@ # process all libraries equally, as far as possible -# "core" libs first, then others alphebetically as far as possible +# "core" libs first, then others alphabetically as far as possible # NOTE: for speed of meson runs, the dependencies in the subdirectories # sometimes skip deps that would be implied by others, e.g. if mempool is # given as a dep, no need to mention ring. This is especially true for the @@ -27,12 +27,14 @@ libraries = [ 'acl', 'bbdev', 'bitratestats', + 'bpf', 'cfgfile', 'compressdev', 'cryptodev', 'distributor', 'efd', 'eventdev', + 'gpudev', 'gro', 'gso', 'ip_frag', @@ -41,10 +43,11 @@ libraries = [ 'latencystats', 'lpm', 'member', + 'pcapng', 'power', - 'pdump', 'rawdev', 'regexdev', + 'dmadev', 'rib', 'reorder', 'sched', @@ -54,46 +57,31 @@ libraries = [ 'ipsec', # ipsec lib depends on net, crypto and security 'fib', #fib lib depends on rib 'port', # pkt framework libs which use other libs from above + 'pdump', # pdump lib depends on bpf 'table', 'pipeline', 'flow_classify', # flow_classify lib depends on pkt framework table lib - 'bpf', 'graph', 'node', ] -if is_windows - libraries = [ - 'kvargs', - 'telemetry', - 'eal', - 'ring', - 'rcu', - 'mempool', - 'mbuf', - 'net', - 'meter', - 'ethdev', - 'pci', - 'cmdline', - 'metrics', - 'hash', - 'timer', - 'bitratestats', - 'cryptodev', - 'cfgfile', - 'gro', - 'gso', - 'latencystats', - 'pdump', - 'stack', - 'security', - ] # only supported libraries for windows -endif - optional_libs = [ + 'bitratestats', + 'cfgfile', + 'flow_classify', + 'gpudev', + 'gro', + 'gso', 'kni', + 'jobstats', + 'latencystats', + 'metrics', + 'node', + 'pdump', + 'pipeline', + 'port', 'power', + 'table', 'vhost', ] @@ -152,23 +140,29 @@ foreach l:libraries warning('Library name, "@0@", and directory name, "@1@", do not match'.format(name, l)) endif - if not build - dpdk_libs_disabled += name - set_variable(name.underscorify() + '_disable_reason', reason) - continue - endif - shared_deps = ext_deps static_deps = ext_deps foreach d:deps + if not build + break + endif if not is_variable('shared_rte_' + d) - error('Missing internal dependency "@0@" for @1@ [@2@]' + build = false + reason = 'missing internal dependency, "@0@"'.format(d) + message('Disabling @1@ [@2@]: missing internal dependency "@0@"' .format(d, name, 'lib/' + l)) + else + shared_deps += [get_variable('shared_rte_' + d)] + static_deps += [get_variable('static_rte_' + d)] endif - shared_deps += [get_variable('shared_rte_' + d)] - static_deps += [get_variable('static_rte_' + d)] endforeach + if not build + dpdk_libs_disabled += name + set_variable(name.underscorify() + '_disable_reason', reason) + continue + endif + enabled_libs += name dpdk_conf.set('RTE_LIB_' + name.to_upper(), 1) install_headers(headers)