Hi, I want to build one .so file with my app (it contains API that I want to call through JNI) and all DPDK libs that I use in my app.
As I've already mentioned, when I build and start my dpdk app as a standalone application, I can see that before main() is called, there is a call to 'rte_eal_driver_register()' function for every driver. When I build .so file, this does not happen and no driver is registered so everyting after rte_eal_init() fails. BR, Newman On Tue, Nov 11, 2014 at 11:37 AM, Gonzalez Monroy, Sergio < sergio.gonzalez.monroy at intel.com> wrote: > Hi Newman, > > > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Newman Poborsky > > Sent: Monday, November 10, 2014 2:23 PM > > > > Hi, > > > > is it possible to build a dpdk app as a shared library? > > > > I tried to put 'include $(RTE_SDK)/mk/rte.extshared.mk' in my Makefile > (and > > define SHARED) and it builds .so lib, but all rte_* symbols are > undefined. > > > Can you elaborate a bit on how you are building DPDK and your app? > Is your objective to build a single .so containing your app and all DPDK > libs? > Or do you want your app to have a link dependency on DPDK shared libs? > >