Re: [PATCH v2] buildtools: fix invalid symbols

2024-07-03 Thread David Marchand
Adding Ali in the loop, as he was working on a similar patch. On Mon, Jul 1, 2024 at 12:56 PM Mingjin Ye wrote: > > Elf files generated by higher version compilers wrap multiple > symbols prefixed with "this_pmd_name". > > The patch uses the regex "^this_pmd_name[0-9]+$" to match the > symbol nam

RE: [PATCH v2] buildtools: fix invalid symbols

2024-07-02 Thread Jiale, SongX
> -Original Message- > From: Mingjin Ye > Sent: Monday, July 1, 2024 6:33 PM > To: dev@dpdk.org > Cc: Ye, MingjinX ; sta...@dpdk.org; Dmitry Kozlyuk > > Subject: [PATCH v2] buildtools: fix invalid symbols > > Elf files generated by higher version compilers wra

[PATCH v2] buildtools: fix invalid symbols

2024-07-01 Thread Mingjin Ye
Elf files generated by higher version compilers wrap multiple symbols prefixed with "this_pmd_name". The patch uses the regex "^this_pmd_name[0-9]+$" to match the symbol name. Bugzilla ID: 1466 Fixes: 6c4bf8f42432 ("buildtools: add Python pmdinfogen") Cc: sta...@dpdk.org Signed-off-by: Mingjin Y