[dpdk-dev] [PATCH] mk: fix underlinking issues of most librte libraries

2016-06-07 Thread Panu Matilainen
On 06/07/2016 11:23 AM, Thomas Monjalon wrote: > 2016-05-24 12:56, Panu Matilainen: >> On 05/20/2016 08:08 PM, Thomas Monjalon wrote: >>> 2016-05-20 18:50, Christian Ehrhardt: The individual libraries have various cross dependencies. This is already refelcted in the DEPDIR dependency,

[dpdk-dev] [PATCH] mk: fix underlinking issues of most librte libraries

2016-06-07 Thread Thomas Monjalon
2016-05-24 12:56, Panu Matilainen: > On 05/20/2016 08:08 PM, Thomas Monjalon wrote: > > 2016-05-20 18:50, Christian Ehrhardt: > >> The individual libraries have various cross dependencies. > >> This is already refelcted in the DEPDIR dependency, but not yet in > >> proper DT_NEEDED flags in the

[dpdk-dev] [PATCH] mk: fix underlinking issues of most librte libraries

2016-05-27 Thread Ferruh Yigit
On 5/27/2016 6:59 AM, Panu Matilainen wrote: > On 05/26/2016 04:13 PM, Ferruh Yigit wrote: >> On 5/24/2016 11:11 AM, Christian Ehrhardt wrote: >>> Hi Panu, >>> I already agreed to Thomas on IRC but won't have time until next week. >>> Thanks for making a patch that does that already - I'll give it

[dpdk-dev] [PATCH] mk: fix underlinking issues of most librte libraries

2016-05-27 Thread Panu Matilainen
On 05/26/2016 04:13 PM, Ferruh Yigit wrote: > On 5/24/2016 11:11 AM, Christian Ehrhardt wrote: >> Hi Panu, >> I already agreed to Thomas on IRC but won't have time until next week. >> Thanks for making a patch that does that already - I'll give it a look and >> some test on my end next week then.

[dpdk-dev] [PATCH] mk: fix underlinking issues of most librte libraries

2016-05-26 Thread Ferruh Yigit
On 5/24/2016 11:11 AM, Christian Ehrhardt wrote: > Hi Panu, > I already agreed to Thomas on IRC but won't have time until next week. > Thanks for making a patch that does that already - I'll give it a look and > some test on my end next week then. > > > > Christian Ehrhardt > Software Engineer,

[dpdk-dev] [PATCH] mk: fix underlinking issues of most librte libraries

2016-05-24 Thread Panu Matilainen
On 05/20/2016 08:08 PM, Thomas Monjalon wrote: > 2016-05-20 18:50, Christian Ehrhardt: >> The individual libraries have various cross dependencies. >> This is already refelcted in the DEPDIR dependency, but not yet in >> proper DT_NEEDED flags in the .so's. >> This adds the -l flags so that is

[dpdk-dev] [PATCH] mk: fix underlinking issues of most librte libraries

2016-05-24 Thread Christian Ehrhardt
Hi Panu, I already agreed to Thomas on IRC but won't have time until next week. Thanks for making a patch that does that already - I'll give it a look and some test on my end next week then. Christian Ehrhardt Software Engineer, Ubuntu Server Canonical Ltd On Tue, May 24, 2016 at 11:56 AM,

[dpdk-dev] [PATCH] mk: fix underlinking issues of most librte libraries

2016-05-20 Thread Thomas Monjalon
2016-05-20 18:50, Christian Ehrhardt: > The individual libraries have various cross dependencies. > This is already refelcted in the DEPDIR dependency, but not yet in > proper DT_NEEDED flags in the .so's. > This adds the -l flags so that is properly stored in the .so's ELF > headers. Why not

[dpdk-dev] [PATCH] mk: fix underlinking issues of most librte libraries

2016-05-20 Thread Christian Ehrhardt
The individual libraries have various cross dependencies. This is already refelcted in the DEPDIR dependency, but not yet in proper DT_NEEDED flags in the .so's. This adds the -l flags so that is properly stored in the .so's ELF headers. Signed-off-by: Christian Ehrhardt ---