X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Fmeson.build;h=99957ba7d7997613ea4a89a9643cb4934c283b02;hb=8dc049bae678df8abf070fefdce6b307a83f86c5;hp=179c2ef378d8a6dd46b8c653ba4083e5f8c16366;hpb=9f7b43141caadb55832c2107d1bf6479ff12b1a5;p=dpdk.git diff --git a/lib/meson.build b/lib/meson.build index 179c2ef378..99957ba7d7 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -8,10 +8,11 @@ # 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 # core libs which are widely reused, so their deps are kept to a minimum. -libraries = [ 'compat', # just a header, used for versioning - 'cmdline', # ethdev depends on cmdline for parsing functions +libraries = [ 'kvargs', # eal depends on kvargs - 'eal', 'ring', 'mempool', 'mbuf', 'net', 'meter', 'ethdev', 'pci', # core + 'eal', # everything depends on eal + 'cmdline', # ethdev depends on cmdline for parsing functions + 'ring', 'mempool', 'mbuf', 'net', 'meter', 'ethdev', 'pci', # core 'metrics', # bitrate/latency stats depends on this 'hash', # efd depends on this 'timer', # eventdev depends on this @@ -81,7 +82,7 @@ foreach l:libraries foreach d:deps if not is_variable('shared_rte_' + d) error('Missing dependency ' + d + - ' for library ' + lib_name) + ' for library ' + libname) endif shared_deps += [get_variable('shared_rte_' + d)] static_deps += [get_variable('static_rte_' + d)]