]> git.droids-corp.org - dpdk.git/commitdiff
build: print out dependency names for clarity
authorBruce Richardson <bruce.richardson@intel.com>
Thu, 19 Sep 2019 15:07:55 +0000 (16:07 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 23 Oct 2019 14:41:06 +0000 (16:41 +0200)
To help developers to get the correct dependency name e.g. when creating a
new example that depends on a specific component, print out the dependency
name for each lib/driver as it is processed.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
drivers/meson.build
lib/meson.build

index 2ed2e954110ca9a6c80e14e0adc7c8b8158e46d2..c3f52d785089e5e461b1ee46f8c8761bcd07f12e 100644 (file)
@@ -157,6 +157,9 @@ foreach class:dpdk_driver_classes
 
                        set_variable('shared_@0@'.format(lib_name), shared_dep)
                        set_variable('static_@0@'.format(lib_name), static_dep)
+                       dependency_name = ''.join(lib_name.split('rte_'))
+                       message('drivers/@0@: Defining dependency "@1@"'.format(
+                                       drv_path, dependency_name))
                endif # build
        endforeach
 
index e5ff838934895249cdce5d638a8c32f28acc83b7..766d3b08ec1831d2bb1be2a958d44dced63077f1 100644 (file)
@@ -154,7 +154,9 @@ foreach l:libraries
                        dpdk_static_libraries = [static_lib] + dpdk_static_libraries
                endif # sources.length() > 0
 
-               set_variable('shared_' + libname, shared_dep)
-               set_variable('static_' + libname, static_dep)
+               set_variable('shared_rte_' + name, shared_dep)
+               set_variable('static_rte_' + name, static_dep)
+               message('lib/@0@: Defining dependency "@1@"'.format(
+                               dir_name, name))
        endif # if build
 endforeach