Re: [vpp-dev] Linking external libraries to VPP executable

2020-01-03 Thread Burt Silverman
jan Marion > *Cc:* vpp-dev > *Subject:* Re: [vpp-dev] Linking external libraries to VPP executable > > > > Hi, > > > > My plugin is linked to an external lib. > > When my plugin calls the init function of that external lib, it runs into > some problems with symbols

Re: [vpp-dev] Linking external libraries to VPP executable

2020-01-03 Thread Dave Barach via Lists.Fd.Io
2:14 AM To: Damjan Marion Cc: vpp-dev Subject: Re: [vpp-dev] Linking external libraries to VPP executable Hi, My plugin is linked to an external lib. When my plugin calls the init function of that external lib, it runs into some problems with symbols (presumably the external lib init function

Re: [vpp-dev] Linking external libraries to VPP executable

2020-01-03 Thread Damjan Marion via Lists.Fd.Io
> On 3 Jan 2020, at 08:13, siddarth rai wrote: > > Hi, > > My plugin is linked to an external lib. > When my plugin calls the init function of that external lib, it runs into > some problems with symbols (presumably the external lib init function calls a > dlopen to load some other files) >

Re: [vpp-dev] Linking external libraries to VPP executable

2020-01-02 Thread siddarth rai
Hi, My plugin is linked to an external lib. When my plugin calls the init function of that external lib, it runs into some problems with symbols (presumably the external lib init function calls a dlopen to load some other files) It seems the problem comes from the fact that VPP calls a dlopen

Re: [vpp-dev] Linking external libraries to VPP executable

2020-01-02 Thread Damjan Marion via Lists.Fd.Io
99% of vpp code is not in vpp executable so i wander why do you want to do that? both some of vpp standard libraries (vnet, vlib, ..) and some of vpp plugins are linked against libs, so to be able to help you i need more details... -- Damjan > On 2 Jan 2020, at 14:20, siddarth rai wrote: >

Re: [vpp-dev] Linking external libraries to VPP executable

2020-01-02 Thread siddarth rai
Hi, I mean only 'vpp executable' Regards, Siddarth On Thu, Jan 2, 2020 at 5:10 PM Damjan Marion wrote: > > what do you mean by “vpp executable lib”? can you provide more details > what exactly do you want to do? > > -- > Damjan > > > On 2 Jan 2020, at 12:27, siddarth rai wrote: > > > >  > >

Re: [vpp-dev] Linking external libraries to VPP executable

2020-01-02 Thread Damjan Marion via Lists.Fd.Io
what do you mean by “vpp executable lib”? can you provide more details what exactly do you want to do? -- Damjan > On 2 Jan 2020, at 12:27, siddarth rai wrote: > >  > Hello, > > I am working on VPP 1908. > I want to link some external non-vpp libraries to my vpp executable lib. > > Would