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
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
> 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)
>
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
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:
>
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:
> >
> >
> >
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