15/10/2020 17:05, Bruce Richardson: > Rather than specifying specific drivers in the driver directory to load, we > can just pass in the whole driver directory to the "-d" EAL flag, causing > all drivers to load. This makes the load of driver independent of any > specific driver names. > > Signed-off-by: Bruce Richardson <bruce.richard...@intel.com> > --- > --- a/devtools/test-null.sh > +++ b/devtools/test-null.sh > if ldd $testpmd | grep -q librte_ ; then > export LD_LIBRARY_PATH=$build/drivers:$build/lib:$LD_LIBRARY_PATH > - libs='-d librte_mempool_ring.so -d librte_pmd_null.so' > + libs="-d $build/drivers"
In this case, can we remove $build/drivers from LD_LIBRARY_PATH?