Re: [vpp-dev] #vpp How does VPP link DPDK lib?

2019-11-29 Thread Damjan Marion via Lists.Fd.Io
DPDK is statically linked into dpdk plugin (dpdk_plugin.so). -- Damjan > On 29 Nov 2019, at 06:50, wei_sky2...@163.com wrote: > >  > We think VPP uses DPDK for data receive from nic, but it seems no dpdk lib > exist in vpp project. > we also try to use readelf to check the libs used by vpp,

Re: [vpp-dev] #vpp How does VPP link DPDK lib?

2019-11-28 Thread Shiva Shankar
Hi Wei, DPDK links(static) as part of the dpdk plugin in VPP. You can do readelf on dpdk_plugin.so Thanks Shiva On Fri, Nov 29, 2019 at 11:20 AM wrote: > We think VPP uses DPDK for data receive from nic, but it seems no dpdk lib > exist in vpp project. > we also try to use readelf to check

[vpp-dev] #vpp How does VPP link DPDK lib?

2019-11-28 Thread wei_sky2008
We think VPP uses DPDK for data receive from nic, but it seems no dpdk lib exist in vpp project. we also try to use readelf to check the libs used by vpp, or use strings check the functions in each lib. We did not find how dpdk is used. So can you please give some guide, how does vpp link dpdk