build: reorder cmdline library after EAL
authorLuca Boccassi <bluca@debian.org>
Tue, 26 Feb 2019 17:46:34 +0000 (17:46 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 27 Feb 2019 11:27:58 +0000 (12:27 +0100)
Most libraries and PMDs depend on eal, and eal depends only on kvargs,
so reorder the list in Meson to reflect this and take advantage of this
dependency chain.

Signed-off-by: Luca Boccassi <bluca@debian.org>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
lib/meson.build

index edcccdc..99957ba 100644 (file)
@@ -9,9 +9,10 @@
 # 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 = [
-       'cmdline', # ethdev depends on cmdline for parsing functions
        '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