Re: [dpdk-dev] [PATCH] Don't combine '-r' and '--export-dynamic' linker options

2019-12-13 Thread Rafael Avila de Espindola
Thomas Monjalon writes: > 25/10/2019 03:20, Rafael Ávila de Espíndola: >> Running ld with '-r' switches the linker to a very special mode where >> some other linker options don't make sense. >> >> In particular, '--export-dynamic' normally requires that all global >> symbols be included in the d

Re: [dpdk-dev] [PATCH] Don't combine '-r' and '--export-dynamic' linker options

2019-12-13 Thread Ray Kinsella
On 12/12/2019 16:05, Thomas Monjalon wrote: > 25/10/2019 03:20, Rafael Ávila de Espíndola: >> Running ld with '-r' switches the linker to a very special mode where >> some other linker options don't make sense. >> >> In particular, '--export-dynamic' normally requires that all global >> symbols

Re: [dpdk-dev] [PATCH] Don't combine '-r' and '--export-dynamic' linker options

2019-12-12 Thread Thomas Monjalon
25/10/2019 03:20, Rafael Ávila de Espíndola: > Running ld with '-r' switches the linker to a very special mode where > some other linker options don't make sense. > > In particular, '--export-dynamic' normally requires that all global > symbols be included in the dynamic symbol table, but a .o fil

Re: [dpdk-dev] [PATCH] Don't combine '-r' and '--export-dynamic' linker options

2019-12-09 Thread Rafael Avila de Espindola
Hi Thomas, Are you the right maintainer fer reviewing this patch? Thanks, Rafael Rafael Ávila de Espíndola writes: > Running ld with '-r' switches the linker to a very special mode where > some other linker options don't make sense. > > In particular, '--export-dynamic' normally requires that

[dpdk-dev] [PATCH] Don't combine '-r' and '--export-dynamic' linker options

2019-10-27 Thread Rafael Ávila de Espíndola
Running ld with '-r' switches the linker to a very special mode where some other linker options don't make sense. In particular, '--export-dynamic' normally requires that all global symbols be included in the dynamic symbol table, but a .o file doesn't even have a dynamic symbol table. When given