eal: fix automatic loading of drivers as shared libs
authorBruce Richardson <bruce.richardson@intel.com>
Mon, 8 Feb 2021 16:33:19 +0000 (16:33 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 10 Feb 2021 09:01:48 +0000 (10:01 +0100)
commit9ff791eff609138a69edd89bf4abde71511eef6d
treeb51e67f6917f4a1d28fa18932dafc8c6dddbb9fa
parent0d32fd0945d8bd235ca57b8c15463fd72ba5b8c4
eal: fix automatic loading of drivers as shared libs

When checking the loading of EAL shared lib to see if we have a shared
DPDK build, we only want to include part of the ABI version in the check
rather than the whole thing. For example, with ABI version 21.1 for DPDK
release 21.02, the linker links the binary against librte_eal.so.21,
without the ".1".

To avoid any further brittleness in this area, we can check for multiple
versions when doing the check, since just about any version of EAL implies
a shared build. Therefore we check for presence of librte_eal.so with full
ABI_VERSION extension, and then repeatedly remove the end part of the
filename after the last dot, checking each time. For example (debug log
output for static build):

  EAL: Checking presence of .so 'librte_eal.so.21.1'
  EAL: Checking presence of .so 'librte_eal.so.21'
  EAL: Checking presence of .so 'librte_eal.so'
  EAL: Detected static linkage of DPDK

Fixes: 7781950f4d38 ("eal: fix shared lib mode detection")
Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Tested-by: Sunil Pai G <sunil.pai.g@intel.com>
lib/librte_eal/common/eal_common_options.c